Moved to source folder
This commit is contained in:
53
source/language/language_names.json
Normal file
53
source/language/language_names.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.language_names",
|
||||
"examples": [
|
||||
[
|
||||
["en_US", "English (US)"],
|
||||
["en_GB", "English (UK)"],
|
||||
["de_DE", "Deutsch (Deutschland)"],
|
||||
["es_ES", "Español (España)"],
|
||||
["es_MX", "Español (México)"],
|
||||
["fr_FR", "Français (France)"],
|
||||
["fr_CA", "Français (Canada)"],
|
||||
["it_IT", "Italiano (Italia)"],
|
||||
["ja_JP", "日本語 (日本)"],
|
||||
["ko_KR", "한국어 (대한민국)"],
|
||||
["pt_BR", "Português (Brasil)"],
|
||||
["pt_PT", "Português (Portugal)"],
|
||||
["ru_RU", "Русский (Россия)"],
|
||||
["zh_CN", "简体中文"],
|
||||
["zh_TW", "繁體中文"],
|
||||
["nl_NL", "Nederlands (Nederland)"],
|
||||
["bg_BG", "Български (BG)"],
|
||||
["cs_CZ", "Čeština (Česká republika)"],
|
||||
["da_DK", "Dansk (DA)"],
|
||||
["el_GR", "Ελληνικά (Ελλάδα)"],
|
||||
["fi_FI", "Suomi (Suomi)"],
|
||||
["hu_HU", "Magyar (HU)"],
|
||||
["id_ID", "Bahasa Indonesia (Indonesia)"],
|
||||
["nb_NO", "Norsk bokmål (Norge)"],
|
||||
["pl_PL", "Polski (PL)"],
|
||||
["sk_SK", "Slovensky (SK)"],
|
||||
["sv_SE", "Svenska (Sverige)"],
|
||||
["tr_TR", "Türkçe (Türkiye)"],
|
||||
["uk_UA", "Українська (Україна)"]
|
||||
]
|
||||
],
|
||||
"additionalProperties": false,
|
||||
"type": "array",
|
||||
"title": "Language Names",
|
||||
"description": "A language names definitions file",
|
||||
"items": {
|
||||
"type": "array",
|
||||
"description": "A language name identifier",
|
||||
"items": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "A language identifier",
|
||||
"pattern": "^[a-z]{2}_[A-Z]{2}$"
|
||||
},
|
||||
{ "type": "string", "description": "The name of the language" }
|
||||
]
|
||||
}
|
||||
}
|
||||
46
source/language/languages.json
Normal file
46
source/language/languages.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.languages",
|
||||
"additionalProperties": false,
|
||||
"examples": [
|
||||
[
|
||||
"en_US",
|
||||
"en_GB",
|
||||
"de_DE",
|
||||
"es_ES",
|
||||
"es_MX",
|
||||
"fr_FR",
|
||||
"fr_CA",
|
||||
"it_IT",
|
||||
"ja_JP",
|
||||
"ko_KR",
|
||||
"pt_BR",
|
||||
"pt_PT",
|
||||
"ru_RU",
|
||||
"zh_CN",
|
||||
"zh_TW",
|
||||
"nl_NL",
|
||||
"bg_BG",
|
||||
"cs_CZ",
|
||||
"da_DK",
|
||||
"el_GR",
|
||||
"fi_FI",
|
||||
"hu_HU",
|
||||
"id_ID",
|
||||
"nb_NO",
|
||||
"pl_PL",
|
||||
"sk_SK",
|
||||
"sv_SE",
|
||||
"tr_TR",
|
||||
"uk_UA"
|
||||
]
|
||||
],
|
||||
"type": "array",
|
||||
"title": "Languages",
|
||||
"description": "A language definitions file",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"description": "A language identifier",
|
||||
"pattern": "^[a-z]{2}_[A-Z]{2}$"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user