mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-04-21 05:32:43 +00:00
added duration field to reminder and restructured remind text
added general duration formatting to freemarker (its a builtin method currently added source channel attribute to starboard post added exception logging to immediate reminders
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<#if amount gt 1>
|
||||
${amount} days
|
||||
<#else>
|
||||
1 day
|
||||
</#if>
|
||||
@@ -0,0 +1,5 @@
|
||||
<#if amount gt 1>
|
||||
${amount} hours
|
||||
<#else>
|
||||
1 hour
|
||||
</#if>
|
||||
@@ -0,0 +1,5 @@
|
||||
<#if amount gt 1>
|
||||
${amount} minutes
|
||||
<#else>
|
||||
1 minute
|
||||
</#if>
|
||||
@@ -0,0 +1,5 @@
|
||||
<#if amount gt 1>
|
||||
${amount} seconds
|
||||
<#else>
|
||||
1 second
|
||||
</#if>
|
||||
Reference in New Issue
Block a user