Commit fee49584 authored by Michal Čihař's avatar Michal Čihař

Document variables

parent de6728cb
...@@ -140,6 +140,7 @@ DEFAULT_LANGS = ( ...@@ -140,6 +140,7 @@ DEFAULT_LANGS = (
'zu_ZA', 'zu_ZA',
) )
# List of RTL languages
RTL_LANGS = set(( RTL_LANGS = set((
'ar', 'ar',
'arc', 'arc',
...@@ -155,6 +156,10 @@ RTL_LANGS = set(( ...@@ -155,6 +156,10 @@ RTL_LANGS = set((
'yi', 'yi',
)) ))
# Following variables are used to map Gettext plural equations
# to one/few/may/other like rules
ONE_OTHER_PLURALS = ( ONE_OTHER_PLURALS = (
'n==1 || n%10==1 ? 0 : 1', 'n==1 || n%10==1 ? 0 : 1',
'n != 1', 'n != 1',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment