Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 7.9k
Add "Languages" page#1691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Add "Languages" page #1691
Changes from all commits
c737cd4d2d54b643a447788ea9c8cba589414381e3287521cdfa0fc57c80589File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,133 @@ | ||
| # Status enums indicate what percentage of "core" content has been translated: | ||
| # 0: Incomplete (0–49%) | ||
| # 1: Partially complete (50–94%) | ||
| # 2: Complete (95–100%) | ||
| - name: English | ||
| translated_name: English | ||
| code: en | ||
| status: 2 | ||
| - name: Arabic | ||
| translated_name: العربية | ||
| code: ar | ||
| status: 0 | ||
| - name: Azerbaijani | ||
| translated_name: Azərbaycanca | ||
| code: az | ||
| status: 0 | ||
| - name: Bulgarian | ||
| translated_name: Български | ||
| code: bg | ||
| status: 0 | ||
| - name: Bengali | ||
| translated_name: বাংলা | ||
| code: bn | ||
| status: 0 | ||
| - name: German | ||
| translated_name: Deutsch | ||
| code: de | ||
| status: 0 | ||
| - name: Spanish | ||
| translated_name: Español | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. English goes here!
| ||
| code: es | ||
| status: 2 | ||
| - name: Persian | ||
| translated_name: فارسی | ||
| code: fa | ||
| status: 0 | ||
| - name: French | ||
| translated_name: Français | ||
| code: fr | ||
| status: 0 | ||
| - name: Hebrew | ||
| translated_name: עברית | ||
| code: he | ||
| status: 0 | ||
| - name: Hindi | ||
| translated_name: हिन्दी | ||
| code: hi | ||
| status: 0 | ||
| - name: Armenian | ||
| translated_name: Հայերեն | ||
| code: hy | ||
| status: 0 | ||
| - name: Indonesian | ||
| translated_name: Bahasa Indonesia | ||
| code: id | ||
| status: 0 | ||
| - name: Italian | ||
| translated_name: Italiano | ||
| code: it | ||
| status: 0 | ||
| - name: Japanese | ||
| translated_name: 日本語 | ||
| code: ja | ||
| ||
| status: 1 | ||
| - name: Korean | ||
| translated_name: 한국어 | ||
| code: ko | ||
| status: 0 | ||
| - name: Malayalam | ||
| translated_name: മലയാളം | ||
| code: ml | ||
| status: 0 | ||
| - name: Nepali | ||
| translated_name: नेपाली | ||
| code: ne | ||
| status: 0 | ||
| - name: Dutch | ||
| translated_name: Nederlands | ||
| code: nl | ||
| status: 0 | ||
| - name: Polish | ||
| translated_name: Polski | ||
| code: pl | ||
| status: 0 | ||
| - name: Portuguese (Brazil) | ||
| translated_name: Português do Brasil | ||
| code: pt-br | ||
| status: 1 | ||
| - name: Portuguese (Portugal) | ||
| translated_name: Português europeu | ||
| code: pt-pt | ||
| status: 0 | ||
| - name: Romanian | ||
| translated_name: Română | ||
| code: ro | ||
| status: 0 | ||
| - name: Russian | ||
| translated_name: Русский | ||
| code: ru | ||
| status: 0 | ||
| - name: Sinhala | ||
| translated_name: සිංහල | ||
| code: si | ||
| status: 0 | ||
| - name: Tamil | ||
| translated_name: தமிழ் | ||
| code: ta | ||
| status: 0 | ||
| - name: Turkish | ||
| translated_name: Türkçe | ||
| code: tr | ||
| status: 0 | ||
| - name: Ukrainian | ||
| translated_name: Українська | ||
| code: uk | ||
| status: 0 | ||
| - name: Uzbek | ||
| translated_name: Oʻzbekcha | ||
| code: uz | ||
| status: 0 | ||
| - name: Vietnamese | ||
| translated_name: Tiếng Việt | ||
| code: vi | ||
| status: 0 | ||
| - name: Simplified Chinese | ||
| translated_name: 简体中文 | ||
| code: zh-hans | ||
| status: 0 | ||
| - name: Traditional Chinese | ||
| translated_name: 繁體中文 | ||
| code: zh-hant | ||
| status: 0 | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason we're using enums instead of strings (
incompletepartialcomplete, etc.)?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because I think the meaning of string labels is ambiguous ("incomplete" and "partial" are synonymous). So I choose a numeric value that at least indicates progression (1 is more complete than 0, 2 is more complete than 1).