jquery.timeago.locale.js 915 Bytes
Newer Older
1
jQuery.timeago.settings.strings = {
2
    // Translators: %s will be a time quantity, such as "4 minutes" or "1 day"
3
    formatAgo: gettext("%s ago"),
4
    // Translators: %s will be a time quantity, such as "4 minutes" or "1 day"
5
    formatFromNow: gettext("%s from now"),
6 7 8 9 10 11 12 13 14 15 16 17 18
    seconds: gettext("less than a minute"),
    minute: gettext("about a minute"),
    minutes: function(value) { return ngettext("%d minute", "%d minutes", value)},
    hour: gettext("about an hour"),
    hours: function(value) { return ngettext("about %d hour", "about %d hours", value) },
    day: gettext("a day"),
    days: function(value) { return ngettext("%d day", "%d days", value) },
    month: gettext("about a month"),
    months: function(value) { return ngettext("%d month", "%d months", value) },
    year: gettext("about a year"),
    years: function(value) { return ngettext("%d year", "%d years", value) },
    numbers: []
};