Skip to content
Extraits de code Groupes Projets
Non vérifiée Valider 5f3e4fc3 rédigé par Steffen van Bergerem's avatar Steffen van Bergerem
Parcourir les fichiers

Merge pull request #6926 from jhass/timeago_plurals

Properly support pluralization in timeago strings
parents c065e19d 734f3323
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -164,6 +164,7 @@ before.
* Do not include conversation subject in notification mail [#6910](https://github.com/diaspora/diaspora/pull/6910)
* Add 'Be excellent to each other!' to the sidebar [#6914](https://github.com/diaspora/diaspora/pull/6910)
* Expose Sidekiq dead queue configuration options
* Properly support pluralization in timeago strings [#6926](https://github.com/diaspora/diaspora/pull/6926)
# 0.5.11.0
......
......@@ -7,14 +7,21 @@
(function() {
Diaspora.Widgets.TimeAgo = function() {
this.subscribe("widget/ready", function() {
if(Diaspora.I18n.language !== "en") {
if (Diaspora.I18n.language !== "en") {
$.timeago.settings.lang = Diaspora.I18n.language;
$.timeago.settings.strings[Diaspora.I18n.language] = {};
$.each($.timeago.settings.strings["en"], function(index) {
if(index === "numbers") {
$.each($.timeago.settings.strings.en, function(index) {
if (index === "numbers") {
$.timeago.settings.strings[Diaspora.I18n.language][index] = [];
}
else {
} else if (index === "minutes" ||
index === "hours" ||
index === "days" ||
index === "months" ||
index === "years") {
$.timeago.settings.strings[Diaspora.I18n.language][index] = function(value) {
return Diaspora.I18n.t("timeago." + index, {count: value});
};
} else {
$.timeago.settings.strings[Diaspora.I18n.language][index] = Diaspora.I18n.t("timeago." + index);
}
});
......
......@@ -95,15 +95,25 @@ en:
inPast: "any moment now"
seconds: "less than a minute"
minute: "about a minute"
minutes: "%d minutes"
minutes:
one: "1 minute"
other: "%d minutes"
hour: "about an hour"
hours: "about %d hours"
hours:
one: "about 1 hour"
other: "about %d hours"
day: "a day"
days: "%d days"
days:
one: "1 day"
other: "%d days"
month: "about a month"
months: "%d months"
months:
one: "1 month"
other: "%d months"
year: "about a year"
years: "%d years"
years:
one: "1 year"
other: "%d years"
wordSeparator: " "
contacts:
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter