Changes between Version 10 and Version 11 of i18n/GUI-Localization


Ignore:
Timestamp:
Dec 31, 2024, 9:14:44 AM (3 weeks ago)
Author:
humdinger
Comment:

improved example

Legend:

Unmodified
Added
Removed
Modified
  • i18n/GUI-Localization

    v10 v11  
    3535If your target language has additional plural forms, you can add additional rules besides ''one'' and ''other'', see [http://cldr.unicode.org/index/cldr-spec/plural-rules the spec] and this [http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html language table]. For example:
    3636{{{
    37 {0, plural, zero{There are no new messages} one{There is # new message} few{There are # new messages} other{There are # new messages}}
     37{0, plural,
     38        zero{There are no new messages}
     39        one{There is a single new message}
     40        few{There are only # new messages}
     41        other{There are # new messages}
     42}
    3843}}}
     44
     45The '#' get replaced by the number of messages.
    3946
    4047== Ignore those 'critical errors' ==