mirror of
https://github.com/grocy/grocy.git
synced 2025-04-30 01:55:47 +00:00
Fixed missing plural localization strings.pot
(Report from a translator on Transifex)
This commit is contained in:
parent
a56de30268
commit
2bce428339
@ -2387,8 +2387,10 @@ msgstr ""
|
|||||||
msgid "Yesterday"
|
msgid "Yesterday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Last %1$s days"
|
msgid "Last %1$s day"
|
||||||
msgstr ""
|
msgid_plural "Last %1$s days"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
msgid "This month"
|
msgid "This month"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -93,9 +93,9 @@ if (GetUriParam("end_date"))
|
|||||||
var ranges = {};
|
var ranges = {};
|
||||||
ranges[__t("Today")] = [moment(), moment()];
|
ranges[__t("Today")] = [moment(), moment()];
|
||||||
ranges[__t("Yesterday")] = [moment().subtract(1, "days"), moment().subtract(1, "days")];
|
ranges[__t("Yesterday")] = [moment().subtract(1, "days"), moment().subtract(1, "days")];
|
||||||
ranges[__t("Last %1$s days", "7")] = [moment().subtract(6, "days"), moment()];
|
ranges[__n(7, "Last %1$s day", "Last %1$s days")] = [moment().subtract(6, "days"), moment()];
|
||||||
ranges[__t("Last %1$s days", "14")] = [moment().subtract(13, "days"), moment()];
|
ranges[__n(14, "Last %1$s day", "Last %1$s days")] = [moment().subtract(13, "days"), moment()];
|
||||||
ranges[__t("Last %1$s days", "30")] = [moment().subtract(29, "days"), moment()];
|
ranges[__n(30, "Last %1$s day", "Last %1$s days")] = [moment().subtract(29, "days"), moment()];
|
||||||
ranges[__t("This month")] = [moment().startOf("month"), moment().endOf("month")];
|
ranges[__t("This month")] = [moment().startOf("month"), moment().endOf("month")];
|
||||||
ranges[__t("Last month")] = [moment().subtract(1, "month").startOf("month"), moment().subtract(1, "month").endOf("month")];
|
ranges[__t("Last month")] = [moment().subtract(1, "month").startOf("month"), moment().subtract(1, "month").endOf("month")];
|
||||||
ranges[__t("This year")] = [moment().startOf("year"), moment().endOf("year")];
|
ranges[__t("This year")] = [moment().startOf("year"), moment().endOf("year")];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user