Using stringdicts for pluralization on duplicate entry action

This commit is contained in:
michael starke
2017-11-16 11:19:51 +01:00
parent e1feefd041
commit 97b3f3809b
7 changed files with 82 additions and 47 deletions

View File

@@ -360,7 +360,7 @@
"RECOMMEND_PASSWORD_CHANGE_ALERT_TITLE" = "Proszę zmienić hasło bazy danych!";
/* Action to restore and Entry to a previous state of it's history */
"RESTORE_HISTORY_ENTRY" = "";
"RESTORE_HISTORY_ENTRY" = "RESTORE_HISTORY_ENTRY";
/* No comment provided by engineer. */
"SAVE" = "Zapisz";

View File

@@ -1,14 +1,14 @@
{
"EVERY_%ld_DAYS" = {
NSStringLocalizedFormatKey = "%#@variable@";
variable = {
NSStringFormatSpecTypeKey = NSStringPluralRuleType;
NSStringFormatValueTypeKey = ld;
few = "co %ld dni";
many = "co %ld dni";
one = "co dzie\U0144";
other = "co %ld dni";
zero = "po ka\U017cdym odblokowaniu";
};
};
"EVERY_%ld_DAYS" = {
"NSStringLocalizedFormatKey" = "%#@days@";
days = {
"NSStringFormatSpecTypeKey" = "NSStringPluralRuleType";
"NSStringFormatValueTypeKey" = ld;
few = "co %ld dni";
many = "co %ld dni";
one = "co dzie\U0144";
other = "co %ld dni";
zero = "po ka\U017cdym odblokowaniu";
};
};
}