✨ ags(i18n): finally use i18n system!
This commit is contained in:
+33
-5
@@ -1,8 +1,36 @@
|
||||
import { i18nStruct } from "../intl";
|
||||
|
||||
export default {
|
||||
"language": "English (United States)",
|
||||
"bar": {
|
||||
"logo": {
|
||||
"tooltip": "Applications"
|
||||
language: "English (United States)",
|
||||
bar: {
|
||||
apps: {
|
||||
tooltip: "Applications"
|
||||
}
|
||||
},
|
||||
control_center: {
|
||||
tiles: {
|
||||
more: "More",
|
||||
network: {
|
||||
network: "Network",
|
||||
connected: "Connected",
|
||||
disconnected: "Disconnected",
|
||||
unknown: "Unknown",
|
||||
connecting: "Connecting",
|
||||
wireless: "Wireless",
|
||||
wired: "Wired"
|
||||
},
|
||||
recording: {
|
||||
title: "Screen Recording",
|
||||
disabled_description: "Start recording",
|
||||
enabled_description: "Stop recording",
|
||||
}
|
||||
}
|
||||
},
|
||||
ask_popup: {
|
||||
title: "Question",
|
||||
options: {
|
||||
cancel: "Cancel",
|
||||
accept: "Ok"
|
||||
}
|
||||
}
|
||||
}
|
||||
} as i18nStruct;
|
||||
|
||||
+34
-5
@@ -1,8 +1,37 @@
|
||||
import { i18nStruct } from "../intl";
|
||||
|
||||
export default {
|
||||
"language": "Português (Brasil)",
|
||||
"bar": {
|
||||
"logo": {
|
||||
"tooltip": "Aplicativos"
|
||||
language: "Português (Brasil)",
|
||||
bar: {
|
||||
apps: {
|
||||
tooltip: "Aplicativos"
|
||||
}
|
||||
},
|
||||
control_center: {
|
||||
tiles: {
|
||||
more: "Mais",
|
||||
|
||||
network: {
|
||||
network: "Rede",
|
||||
connected: "Conectado",
|
||||
disconnected: "Desconectado",
|
||||
unknown: "Desconhecido",
|
||||
connecting: "Conectando",
|
||||
wireless: "Wireless",
|
||||
wired: "Cabeado"
|
||||
},
|
||||
recording: {
|
||||
title: "Gravação de Tela",
|
||||
disabled_description: "Iniciar gravação",
|
||||
enabled_description: "Parar gravação",
|
||||
}
|
||||
}
|
||||
},
|
||||
ask_popup: {
|
||||
title: "Pergunta",
|
||||
options: {
|
||||
cancel: "Cancelar",
|
||||
accept: "Ok"
|
||||
}
|
||||
}
|
||||
}
|
||||
} as i18nStruct;
|
||||
|
||||
Reference in New Issue
Block a user