Add Spanish localization (synchronized with crowdin) (#734)

* Add files via upload

* Update README.es_ES.md

* Create en.json

* Update README.es_ES.md

* Update README.es_ES.md

* Update en.json

* updated spanish json, added lang

* Rename README.es_ES.md to README.es.md

* Update README.md

Spanish has been added to the list of available languages.

* Update README.fr.md

Spanish has been added to the list of available languages.

* Update README.it.md

Spanish has been added to the list of available languages.

* Update README.jp.md

Spanish has been added to the list of available languages.

* Update README.ru_RU.md

Spanish has been added to the list of available languages.

* Update README.zh_CN.md

Spanish has been added to the list of available languages.

* Fixed translation tags on profile tab

* [Implem. Fix] Past names

* Updating strings

* Update localization strings in en.json

* Temporary fix to world clasification dropdown localization

* Updating spanish translations

* Update translations

* Removing things my vscode changed lol

* Updating spanish translations

---------

Co-authored-by: Miguel Campo (migue802) <contact@migue802.com>
Co-authored-by: migue802 <54627022+migue802@users.noreply.github.com>
This commit is contained in:
BlueOvi
2024-02-27 20:17:39 +01:00
committed by GitHub
parent 78e9503af0
commit 176b599cbd
11 changed files with 1855 additions and 55 deletions

View File

@@ -22,6 +22,9 @@ import elements_vi from 'element-ui/lib/locale/lang/vi';
import ru_RU from './ru/en.json' assert { type: 'JSON' };
import elements_ru from 'element-ui/lib/locale/lang/ru-RU';
import es from './es/en.json' assert { type: 'JSON' };
import elements_es from 'element-ui/lib/locale/lang/es';
const localized_en = { ...en, ...elements_en };
const localized_zh_TW = { ...zh_TW, ...elements_zh_TW };
const localized_zh_CN = { ...zh_CN, ...elements_zh_CN };
@@ -30,6 +33,7 @@ const localized_ja = { ...ja, ...elements_ja };
const localized_fr = { ...fr, ...elements_fr };
const localized_vi = { ...vi, ...elements_vi };
const localized_ru = { ...ru_RU, ...elements_ru };
const localized_es = { ...es, ...elements_es };
export {
localized_en as en,
@@ -39,5 +43,7 @@ export {
localized_ja as ja_JP,
localized_fr as fr,
localized_vi as vi,
localized_ru as ru_RU
localized_ru as ru_RU,
localized_es as es
};