it's all about you and your native language!

- finally cleaned up localisation (now i18n)
- made localisation strings easier to read and understand
- removed static selected language in service modules
- added support for russian language (привет-привет)
- it's now extremely easy to add support for more languages. just copy en folder in i18n and start translating strings. pull requests for adding languages are more than welcome.
This commit is contained in:
wukko
2022-07-17 18:58:51 +06:00
parent 299fe6336b
commit d08af58b11
20 changed files with 139 additions and 62 deletions

View File

@@ -52,6 +52,6 @@ export default async function (obj) {
}
} else return parsbod;
} catch (err) {
return { error: loc("en", "apiError", "youtubeBroke") };
return { error: loc("en", "apiError", "errorFetch") };
}
}