initial commit with the current state of the templates split into separate modules with assembly

This commit is contained in:
Sheldan
2020-07-01 21:59:05 +02:00
commit 71f08e243e
694 changed files with 1562 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>zip</id>
<includeBaseDirectory>false</includeBaseDirectory>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<outputDirectory>.</outputDirectory>
<directory>${project.basedir}/src/main/resources</directory>
</fileSet>
</fileSets>
</assembly>

View File

@@ -0,0 +1 @@
Accepts the given suggestion.

View File

@@ -0,0 +1 @@
`accept 1 okay` in order to accept the suggestion `1` with the reason `okay`

View File

@@ -0,0 +1 @@
Accepts the given suggestion. Will post the suggestion again, with the given reason for acceptance, with the old text strike through and 'Accepted by' as a notice.

View File

@@ -0,0 +1 @@
The ID of the suggestion you want to accept.

View File

@@ -0,0 +1 @@
The text you want to provide in the notification when accepting a suggestion.

View File

@@ -0,0 +1 @@
accept <suggestionId> [reason]

View File

@@ -0,0 +1 @@
Rejects the given suggestion.

View File

@@ -0,0 +1 @@
`deny 1 not okay` in order to reject the suggestion `1` with the reason `not okay`

View File

@@ -0,0 +1 @@
Rejects the given suggestion. Will post the suggestion again, with the given reason for rejection, with the old text strike through and 'Rejected by' as a notice.

View File

@@ -0,0 +1 @@
The ID of the suggestion you want to reject.

View File

@@ -0,0 +1 @@
The text you want to provide in the notification when rejecting a suggestion.

View File

@@ -0,0 +1 @@
reject <suggestionId> [reason]

View File

@@ -0,0 +1 @@
Reminds you in the given period of the given text.

View File

@@ -0,0 +1 @@
`remind 1h2m3s text` in order to be reminded in 1 hour 2 minutes and 3 seconds with the reason `text`

View File

@@ -0,0 +1,9 @@
Reminds you in the given duration of the given text.
The reminder will also include a link to the original message.
The syntax for duration is the following:
s - seconds
m - minutes
h - hours
d - days
They must be positive and do no spaces between for example `1h23m` is one hour and twenty three minutes.

View File

@@ -0,0 +1 @@
The duration in which you want to be reminded in. Uses the duration parsing.

View File

@@ -0,0 +1 @@
The text you wanted to be reminded with.

View File

@@ -0,0 +1 @@
remind <duration> <text>

View File

@@ -0,0 +1 @@
You wanted to be reminded.

View File

@@ -0,0 +1 @@
Scheduled reminder ${id} to remind you of [this](${messageUrl})

View File

@@ -0,0 +1 @@
Displays all the currently active reminders with their due date and reminder note.

View File

@@ -0,0 +1 @@
Due on ${reminder.targetDate} with text ${reminder.text}

View File

@@ -0,0 +1 @@
Shows information about the server

View File

@@ -0,0 +1 @@
Shows the ID, owner, member count, role count, features and emotes of the server.

View File

@@ -0,0 +1,2 @@
Shows the avatar of a member and provides a link to easier access it.
Takes a member as a parameter, if this parameter is not available, it uses the member executing the command.

View File

@@ -0,0 +1 @@
The member you want to see the avatar for. If not provided will use the member executing the command.

View File

@@ -0,0 +1 @@
Retrieves the URL to the given emote.

View File

@@ -0,0 +1 @@
Shows the URL and the name of the given emote.

View File

@@ -0,0 +1 @@
The emote you want to retrieve the name and URL for.

View File

@@ -0,0 +1 @@
Shows the current leader board of starboard posts.

View File

@@ -0,0 +1 @@
Shows the current leader board of starboard posts.

View File

@@ -0,0 +1 @@
${badge} - ${count} :star: ${user}

View File

@@ -0,0 +1 @@
${badge} - ${count} :star: [Jump!](${link}) <#include "user_left_server">

View File

@@ -0,0 +1 @@
${badge} - ${count} :star: [Jump!](${link})

View File

@@ -0,0 +1 @@
${badge} - ${count} :star: ${user}

View File

@@ -0,0 +1 @@
${badge} - ${count} :star: ${user} <#include "user_left_server">

View File

@@ -0,0 +1 @@
${starredMessages} starred messages with ${totalStars} stars in total

View File

@@ -0,0 +1 @@
Suggests the given text in the `suggestions` post target to be voted on.

View File

@@ -0,0 +1,2 @@
Suggests the given text in the `suggestions` post target to be voted on. Such a suggestion will have a globally unique id
and a suggestion can be accepted with `accept` or denied with `reject`.

View File

@@ -0,0 +1 @@
The text describing your suggestion.

View File

@@ -0,0 +1 @@
Cancels the given reminder.

View File

@@ -0,0 +1 @@
Cancels the given reminder to not be executed anymore.

View File

@@ -0,0 +1 @@
The ID of the reminder you want to cancel.

View File

@@ -0,0 +1 @@
unRemind <reminderId>

View File

@@ -0,0 +1 @@
Shows information about a user

View File

@@ -0,0 +1 @@
Cancels the given reminder to not be executed anymore.

View File

@@ -0,0 +1,3 @@
Shows the ID, nickname (if set), joined date, registration date, status and activities of a user.
Has an optional parameter to define for which user the information should be shown.
If no parameter is given, it shows this information for the user executing the command.

View File

@@ -0,0 +1 @@
The channel where starboard posts should be posted to. Currently: ${currentTarget}

View File

@@ -0,0 +1 @@
The channel where suggestions should be posted to. Currently: ${currentTarget}

Some files were not shown because too many files have changed in this diff Show More