mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-15 15:37:36 +00:00
Merge pull request #2033 from overleaf/ns-em-add-english-dialects
add languages config to default settings GitOrigin-RevId: 12f89c21e3bcca3e2fb72f032b1264060531950b
This commit is contained in:
parent
358cd22f54
commit
95f9a08768
1 changed files with 50 additions and 4 deletions
|
@ -257,11 +257,57 @@ module.exports = settings =
|
|||
# You must have the corresponding aspell package installed to
|
||||
# be able to use a language.
|
||||
languages: [
|
||||
{name: "English", code: "en"},
|
||||
{name: "French", code: "fr"}
|
||||
{code: "en", name: "English"},
|
||||
{code: "en_US", name: "English (American)"},
|
||||
{code: "en_GB", name: "English (British)"},
|
||||
{code: "en_CA", name: "English (Canadian)"},
|
||||
{code: "af", name: "Afrikaans"},
|
||||
{code: "ar", name: "Arabic"},
|
||||
{code: "gl", name: "Galician"},
|
||||
{code: "eu", name: "Basque"},
|
||||
{code: "br", name: "Breton"},
|
||||
{code: "bg", name: "Bulgarian"},
|
||||
{code: "ca", name: "Catalan"},
|
||||
{code: "hr", name: "Croatian"},
|
||||
{code: "cs", name: "Czech"},
|
||||
{code: "da", name: "Danish"},
|
||||
{code: "nl", name: "Dutch"},
|
||||
{code: "eo", name: "Esperanto"},
|
||||
{code: "et", name: "Estonian"},
|
||||
{code: "fo", name: "Faroese"},
|
||||
{code: "fr", name: "French"},
|
||||
{code: "de", name: "German"},
|
||||
{code: "el", name: "Greek"},
|
||||
{code: "id", name: "Indonesian"},
|
||||
{code: "ga", name: "Irish"},
|
||||
{code: "it", name: "Italian"},
|
||||
{code: "kk", name: "Kazakh"},
|
||||
{code: "ku", name: "Kurdish"},
|
||||
{code: "lv", name: "Latvian"},
|
||||
{code: "lt", name: "Lithuanian"},
|
||||
{code: "nr", name: "Ndebele"},
|
||||
{code: "ns", name: "Northern Sotho"},
|
||||
{code: "no", name: "Norwegian"},
|
||||
{code: "fa", name: "Persian"},
|
||||
{code: "pl", name: "Polish"},
|
||||
{code: "pt_BR", name: "Portuguese (Brazilian)"},
|
||||
{code: "pt_PT", name: "Portuguese (European)"},
|
||||
{code: "pa", name: "Punjabi"},
|
||||
{code: "ro", name: "Romanian"},
|
||||
{code: "ru", name: "Russian"},
|
||||
{code: "sk", name: "Slovak"},
|
||||
{code: "sl", name: "Slovenian"},
|
||||
{code: "st", name: "Southern Sotho"},
|
||||
{code: "es", name: "Spanish"},
|
||||
{code: "sv", name: "Swedish"},
|
||||
{code: "tl", name: "Tagalog"},
|
||||
{code: "ts", name: "Tsonga"},
|
||||
{code: "tn", name: "Tswana"},
|
||||
{code: "hsb", name: "Upper Sorbian"},
|
||||
{code: "cy", name: "Welsh"},
|
||||
{code: "xh", name: "Xhosa"}
|
||||
]
|
||||
|
||||
|
||||
# Password Settings
|
||||
# -----------
|
||||
# These restrict the passwords users can use when registering
|
||||
|
@ -545,4 +591,4 @@ module.exports = settings =
|
|||
'td': [ 'colspan', 'rowspan', 'headers' ]
|
||||
'th': [ 'abbr', 'headers', 'colspan', 'rowspan', 'scope', 'sorted', 'style' ]
|
||||
'tr': [ 'class' ]
|
||||
'video': [ 'alt', 'class', 'controls', 'height', 'width' ]
|
||||
'video': [ 'alt', 'class', 'controls', 'height', 'width' ]
|
||||
|
|
Loading…
Add table
Reference in a new issue