Commit 8faa35cf authored by Vladislav's avatar Vladislav

Update locales

parent 3f253184
......@@ -251,16 +251,16 @@ msgstr ""
msgid "Time spent"
msgstr ""
msgid "disabled"
msgid "Disabled"
msgstr ""
msgid "enable"
msgid "Enable"
msgstr ""
msgid "disable"
msgid "Disable"
msgstr ""
msgid "enabled"
msgid "Enabled"
msgstr ""
msgid "Do you really want to reinstall PortProton?\\nFor this, an internet "
......
......@@ -275,20 +275,20 @@ msgid "Time spent"
msgstr ""
#, fuzzy
msgid "disabled"
msgstr "Desactivar"
msgid "Disabled"
msgstr "Desactivada"
#, fuzzy
msgid "enable"
msgid "Enable"
msgstr "Permitir"
#, fuzzy
msgid "disable"
msgid "Disable"
msgstr "Desactivar"
#, fuzzy
msgid "enabled"
msgstr "Permitir"
msgid "Enabled"
msgstr "Activada"
msgid ""
"Do you really want to reinstall PortProton?\\nFor this, an internet "
......@@ -1765,12 +1765,6 @@ msgstr ""
msgid "Disable GameScope and go to the previous menu"
msgstr "Desactivar GameScope e ir al menú anterior"
msgid "Disable"
msgstr "Desactivar"
msgid "Enable"
msgstr "Permitir"
#, fuzzy
msgid "Change global settings"
msgstr "Cambiar la configuración de"
......
......@@ -273,17 +273,16 @@ msgstr "минут"
msgid "Time spent"
msgstr "Проведено времени"
msgid "disabled"
msgid "Disabled"
msgstr "Отключено"
#, fuzzy
msgid "enable"
msgid "Enable"
msgstr "Включить"
msgid "disable"
msgid "Disable"
msgstr "Отключить"
msgid "enabled"
msgid "Enabled"
msgstr "Включено"
msgid ""
......@@ -1735,12 +1734,6 @@ msgstr ""
msgid "Disable GameScope and go to the previous menu"
msgstr "Отключить Gamescope и перейти в предыдущее меню"
msgid "Disable"
msgstr "Выключить"
msgid "Enable"
msgstr "Включить"
msgid "Change global settings"
msgstr "Изменить глобальные настройки"
......
......@@ -918,7 +918,7 @@ combobox_fix () {
local name1 name2
if [[ "$1" == "--disabled" ]] ; then
if [[ -z "$3" ]] ; then
echo "${translations[disabled]}"
echo "${translations[Disabled]}"
return 0
fi
name1="$2"
......@@ -948,14 +948,14 @@ combobox_fix () {
fi
if [[ "$1" == "--disabled" ]] ; then
if [[ ${name1} == "disabled" ]] ; then
name1="${translations[disabled]}"
name1="${translations[Disabled]}"
if [[ ${name3} =~ enabled ]] ; then
name3="${name3//enabled/${translations[enable]}}"
name3="${name3//enabled/${translations[Enable]}}"
fi
elif [[ ${name1} != "disabled" ]] ; then
fix_disabled="!${translations[disable]}"
fix_disabled="!${translations[Disable]}"
if [[ ${name1} == "enabled" ]] ; then
name1="${translations[enabled]}"
name1="${translations[Enabled]}"
fi
fi
echo "${name1}${name3}${fix_disabled}"
......@@ -2239,9 +2239,9 @@ edit_db_from_gui () {
then
for mod_db in $@ ; do
proxy_mod_db="${!mod_db}"
if [[ $proxy_mod_db =~ (${translations[disabled]}|${translations[disable]}) ]] ; then
if [[ $proxy_mod_db =~ (${translations[Disabled]}|${translations[Disable]}) ]] ; then
proxy_mod_db=disabled
elif [[ $proxy_mod_db =~ (${translations[enabled]}|${translations[enable]}) ]] ; then
elif [[ $proxy_mod_db =~ (${translations[Enabled]}|${translations[Enable]}) ]] ; then
proxy_mod_db=enabled
fi
if [[ $(<"${PORTWINE_DB_FILE}") =~ export\ ${mod_db}= ]]
......@@ -2256,9 +2256,9 @@ edit_db_from_gui () {
edit_user_conf_from_gui () {
for mod_db in $@ ; do
proxy_mod_db="${!mod_db}"
if [[ $proxy_mod_db =~ (${translations[disabled]}|${translations[disable]}) ]] ; then
if [[ $proxy_mod_db =~ (${translations[Disabled]}|${translations[Disable]}) ]] ; then
proxy_mod_db=disabled
elif [[ $proxy_mod_db =~ (${translations[enabled]}|${translations[enable]}) ]] ; then
elif [[ $proxy_mod_db =~ (${translations[Enabled]}|${translations[Enable]}) ]] ; then
proxy_mod_db=enabled
fi
if ! grep "export ${mod_db}=" "${USER_CONF}" &>/dev/null
......
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