mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-28 06:46:13 +03:00
chore(localization): Update tolgee info
This commit is contained in:
parent
20dc6843aa
commit
6132bb3fec
8 changed files with 20 additions and 4355 deletions
|
@ -103,7 +103,7 @@ I'll gladly accept help/pull requests & advice!
|
|||
|
||||
### Localize the app
|
||||
|
||||
We use [Tolgee](https://tolgee.io/) to manage translations. You can help translate the app by visiting [this link](https://app.tolgee.io/accept_invitation/sqSGXMwEkKapcAbNotICHxkxhIoPTuQKsrqpXHLxeXDxpTSBSo).
|
||||
We use [Tolgee](https://tolgee.io/) to manage translations. If you want to help, let us know which locale do you want to work on in the discord server to be added to the project.
|
||||
|
||||
## Support
|
||||
|
||||
|
|
1091
src/locales/en.json
1091
src/locales/en.json
File diff suppressed because it is too large
Load diff
|
@ -1,26 +1,2 @@
|
|||
{
|
||||
"common": {
|
||||
"cancel": "cancelar",
|
||||
"save": "guardar",
|
||||
"delete": "borrar"
|
||||
},
|
||||
"torrent": {
|
||||
"properties": {
|
||||
"added_on": "agregado el",
|
||||
"availability": "disponibilidad",
|
||||
"name": "título",
|
||||
"directory": "directorio",
|
||||
"downloaded": "descargado",
|
||||
"progress": "progreso",
|
||||
"size": "tamaño",
|
||||
"uploaded": "subido"
|
||||
}
|
||||
},
|
||||
"navbar": {
|
||||
"side": {
|
||||
"current_speed": {
|
||||
"title": "velocidad actual"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Generated by Tolgee app
|
||||
{}
|
|
@ -1,13 +1,2 @@
|
|||
{
|
||||
"dashboard": {
|
||||
"title": "Tableau de Bord",
|
||||
"goToSettings": "Aller aux paramètres"
|
||||
},
|
||||
"settings": {
|
||||
"title": "Paramètres",
|
||||
"language": "Langue",
|
||||
"save": "Sauvegarder",
|
||||
"saveSuccess": "Paramètres sauvegardés avec succès!",
|
||||
"goBack": "Page précédente"
|
||||
}
|
||||
}
|
||||
// Generated by Tolgee app
|
||||
{}
|
|
@ -1,9 +1,9 @@
|
|||
import en from './en.json'
|
||||
import es from './es.json'
|
||||
import fr from './fr.json'
|
||||
import ru from './ru.json'
|
||||
import zh_hans from './zh-Hans.json'
|
||||
import zh_hant from './zh-Hant.json'
|
||||
import ru from './ru.json'
|
||||
|
||||
type LocaleDef = {
|
||||
title: string
|
||||
|
@ -14,27 +14,27 @@ export enum Locales {
|
|||
EN = 'en',
|
||||
ES = 'es',
|
||||
FR = 'fr',
|
||||
RU = 'ru',
|
||||
ZH_HANS = 'zh-Hans',
|
||||
ZH_HANT = 'zh-Hant',
|
||||
RU = 'ru'
|
||||
ZH_HANT = 'zh-Hant'
|
||||
}
|
||||
|
||||
export const LOCALES: LocaleDef[] = [
|
||||
{ title: 'English', value: Locales.EN },
|
||||
{ title: 'Español', value: Locales.ES },
|
||||
{ title: 'Français', value: Locales.FR },
|
||||
{ title: 'Русский', value: Locales.RU },
|
||||
{ title: '简体中文', value: Locales.ZH_HANS },
|
||||
{ title: '繁體中文', value: Locales.ZH_HANT },
|
||||
{ title: 'Русский', value: Locales.RU }
|
||||
{ title: '繁體中文', value: Locales.ZH_HANT }
|
||||
]
|
||||
|
||||
export const messages: Record<Locales, any> = {
|
||||
[Locales.EN]: en,
|
||||
[Locales.ES]: es,
|
||||
[Locales.FR]: fr,
|
||||
[Locales.RU]: ru,
|
||||
[Locales.ZH_HANS]: zh_hans,
|
||||
[Locales.ZH_HANT]: zh_hant,
|
||||
[Locales.RU]: ru
|
||||
[Locales.ZH_HANT]: zh_hant
|
||||
}
|
||||
|
||||
export const defaultLocale = Locales.EN
|
||||
|
|
1075
src/locales/ru.json
1075
src/locales/ru.json
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue