mirror of
https://github.com/Sheldan/abstracto-templates.git
synced 2026-01-28 19:35:18 +00:00
[AB-197] moving templates from utility to their respective maven modules
This commit is contained in:
15
translations/remind/src/main/assembly/assembly.xml
Normal file
15
translations/remind/src/main/assembly/assembly.xml
Normal 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>
|
||||
@@ -0,0 +1 @@
|
||||
Reminds you in the given period of the given text.
|
||||
@@ -0,0 +1 @@
|
||||
`remind 1h2m3s text` in order to be reminded in 1 hour 2 minutes and 3 seconds with the reason `text`
|
||||
@@ -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.
|
||||
@@ -0,0 +1 @@
|
||||
The duration in which you want to be reminded in. Uses the duration parsing.
|
||||
@@ -0,0 +1 @@
|
||||
The text you wanted to be reminded with.
|
||||
@@ -0,0 +1 @@
|
||||
You wanted to be reminded.
|
||||
@@ -0,0 +1 @@
|
||||
Duration
|
||||
@@ -0,0 +1 @@
|
||||
Jump!
|
||||
@@ -0,0 +1 @@
|
||||
Link
|
||||
@@ -0,0 +1 @@
|
||||
Note
|
||||
@@ -0,0 +1 @@
|
||||
Scheduled reminder ${id} to remind you of [this](${messageUrl})
|
||||
@@ -0,0 +1 @@
|
||||
Shows your reminders
|
||||
@@ -0,0 +1 @@
|
||||
Displays all the currently active reminders with their due date and reminder note.
|
||||
@@ -0,0 +1 @@
|
||||
Due on ${reminderTargetDate} with text ${reminderText}
|
||||
@@ -0,0 +1 @@
|
||||
Reminder ${id}
|
||||
@@ -0,0 +1 @@
|
||||
Currently active reminders
|
||||
@@ -0,0 +1 @@
|
||||
Cancels the given reminder.
|
||||
@@ -0,0 +1 @@
|
||||
Cancels the given reminder to not be executed anymore.
|
||||
@@ -0,0 +1 @@
|
||||
The ID of the reminder you want to cancel.
|
||||
@@ -0,0 +1 @@
|
||||
Reminders
|
||||
@@ -0,0 +1 @@
|
||||
Reminder ${reminderId} does not exist, was already reminded or does not belong to you.
|
||||
Reference in New Issue
Block a user