1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-31 07:29:49 +00:00

Added Norwegian Bokmål

This commit is contained in:
Manolis Papadeas 2021-06-11 19:38:34 +03:00
parent fb892834b8
commit feece75935
4 changed files with 6 additions and 3 deletions

View file

@ -49,6 +49,9 @@ msgstr ""
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
msgid "Select"
msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""

View file

@ -604,7 +604,7 @@ new_brush={
[locale] [locale]
translations=PoolStringArray( "res://Translations/zh_TW.po", "res://Translations/pt_BR.po", "res://Translations/de_DE.po", "res://Translations/el_GR.po", "res://Translations/en_US.po", "res://Translations/fr_FR.po", "res://Translations/it_IT.po", "res://Translations/pl_PL.po", "res://Translations/ru_RU.po", "res://Translations/es_ES.po", "res://Translations/zh_CN.po", "res://Translations/lv_LV.po", "res://Translations/eo_UY.po", "res://Translations/cs_CZ.po", "res://Translations/id_ID.po", "res://Translations/hu_HU.po", "res://Translations/ro_RO.po", "res://Translations/ko_KR.po", "res://Translations/tr_TR.po", "res://Translations/ja_JP.po" ) translations=PoolStringArray( "res://Translations/zh_TW.po", "res://Translations/pt_BR.po", "res://Translations/de_DE.po", "res://Translations/el_GR.po", "res://Translations/en_US.po", "res://Translations/fr_FR.po", "res://Translations/it_IT.po", "res://Translations/pl_PL.po", "res://Translations/ru_RU.po", "res://Translations/es_ES.po", "res://Translations/zh_CN.po", "res://Translations/lv_LV.po", "res://Translations/eo_UY.po", "res://Translations/cs_CZ.po", "res://Translations/id_ID.po", "res://Translations/hu_HU.po", "res://Translations/ro_RO.po", "res://Translations/ko_KR.po", "res://Translations/tr_TR.po", "res://Translations/ja_JP.po", "res://Translations/nb_NO.po" )
locale_filter=[ 0, [ ] ] locale_filter=[ 0, [ ] ]
[logging] [logging]

View file

@ -17,7 +17,7 @@ const languages_dict := {
"ru_RU" : ["Русский", "Russian"], "ru_RU" : ["Русский", "Russian"],
"zh_CN" : ["简体中文", "Chinese Simplified"], "zh_CN" : ["简体中文", "Chinese Simplified"],
"zh_TW" : ["繁體中文", "Chinese Traditional"], "zh_TW" : ["繁體中文", "Chinese Traditional"],
"no_NO" : ["Norsk", "Norwegian"], "nb_NO" : ["Norsk Bokmål", "Norwegian Bokmål"],
"hu_HU" : ["Magyar", "Hungarian"], "hu_HU" : ["Magyar", "Hungarian"],
"ro_RO" : ["Română", "Romanian"], "ro_RO" : ["Română", "Romanian"],
"ko_KR" : ["한국어", "Korean"], "ko_KR" : ["한국어", "Korean"],

View file

@ -192,7 +192,7 @@ func create_translators() -> void:
translators.create_item(translators_root).set_text(0, " Teashrock - " + tr("Esperanto")) translators.create_item(translators_root).set_text(0, " Teashrock - " + tr("Esperanto"))
translators.create_item(translators_root).set_text(0, " Blend_Smile - " + tr("Indonesian")) translators.create_item(translators_root).set_text(0, " Blend_Smile - " + tr("Indonesian"))
translators.create_item(translators_root).set_text(0, " Martin Novák (novhack) - " + tr("Czech")) translators.create_item(translators_root).set_text(0, " Martin Novák (novhack) - " + tr("Czech"))
translators.create_item(translators_root).set_text(0, " Lullius - " + tr("Norwegian")) translators.create_item(translators_root).set_text(0, " Lullius - " + tr("Norwegian Bokmål"))
translators.create_item(translators_root).set_text(0, " Aninuscsalas - " + tr("Hungarian")) translators.create_item(translators_root).set_text(0, " Aninuscsalas - " + tr("Hungarian"))
translators.create_item(translators_root).set_text(0, " jaehyeon1090 - " + tr("Korean")) translators.create_item(translators_root).set_text(0, " jaehyeon1090 - " + tr("Korean"))
translators.create_item(translators_root).set_text(0, " sfun_G - " + tr("Korean")) translators.create_item(translators_root).set_text(0, " sfun_G - " + tr("Korean"))