From d4d2c9d6639bb6324edc7f0a5925754546d8b245 Mon Sep 17 00:00:00 2001 From: ExtremeXT <75576145+ExtremeXT@users.noreply.github.com> Date: Sun, 30 Jun 2024 18:35:48 +0300 Subject: [PATCH] add: `ro_RO` language to web UI (#17) This commit adds Romanian to the web UI language list. --- webroot/js/lang/index.js | 6 ++++-- webroot/js/lang/ro_RO.js | 42 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 webroot/js/lang/ro_RO.js diff --git a/webroot/js/lang/index.js b/webroot/js/lang/index.js index 537f343..b1e97c1 100644 --- a/webroot/js/lang/index.js +++ b/webroot/js/lang/index.js @@ -1,9 +1,11 @@ import { en_US } from './en_US.js' -import { vi_VN } from './vi_VN.js' import { pt_BR } from './pt_BR.js' +import { ro_RO } from './ro_RO.js' +import { vi_VN } from './vi_VN.js' export const lang = { en_US, pt_BR, + ro_RO, vi_VN, -} \ No newline at end of file +} diff --git a/webroot/js/lang/ro_RO.js b/webroot/js/lang/ro_RO.js new file mode 100644 index 0000000..cffceee --- /dev/null +++ b/webroot/js/lang/ro_RO.js @@ -0,0 +1,42 @@ +/* INFO: Translated by @ExtremeXT */ + +export const ro_RO = { + langName: 'Română (România)', + langModal: { + header: "Alegeți limba prestabilită" + }, + infoCard: { + status: { + unknown: 'ReZygisk este într-o stare necunoscută!', + notWorking: 'ReZygisk nu este în funcțiune!', + ok: 'ReZygisk funcționează în totalitate!', + partially: 'ReZygisk funcționează parțial!' + }, + version: 'Versiune', + root: 'Implementare Root', + zygote: { + injected: 'Injectat', + notInjected: 'Neinjectat', + unknown: 'Necunoscut' + } + }, + moduleCard: { + header: 'Module', + arch: 'Arhitectură: ' + }, + settings: { + header: "Setări", + daemonButton: { + start: 'Start', + stop: 'Stop', + exit: 'Ieșire' + } + }, + cmdErrors: { + ptrace64: 'Eroare în timpul executării zygisk-ptrace64', + ptrace32: 'Eroare în timpul executării zygisk-ptrace32', + ls: 'Eroare în timpul listării fișierelor din folderul Zygisk al modulului', + cat: 'Eroare în timpul citirii fișierului module.prop din modul', + find: 'Eroare la găsirea modulelor Zygisk' + }, +}