🌐 ags(i18n): move 'ask_popup.accept' and 'ask_popup.cancel' keys to root structure

This commit is contained in:
retrozinndev
2025-04-18 21:39:43 -03:00
parent 20f990488c
commit d66d2f1d5a
3 changed files with 15 additions and 15 deletions
+5 -5
View File
@@ -2,6 +2,10 @@ import { i18nStruct } from "../struct";
export default { export default {
language: "English (United States)", language: "English (United States)",
cancel: "Cancel",
accept: "Ok",
bar: { bar: {
apps: { apps: {
tooltip: "Applications" tooltip: "Applications"
@@ -37,10 +41,6 @@ export default {
} }
}, },
ask_popup: { ask_popup: {
title: "Question", title: "Question"
options: {
cancel: "Cancel",
accept: "Ok"
}
} }
} as i18nStruct; } as i18nStruct;
+5 -5
View File
@@ -2,6 +2,10 @@ import { i18nStruct } from "../struct";
export default { export default {
language: "Português (Brasil)", language: "Português (Brasil)",
cancel: "Cancelar",
accept: "Ok",
bar: { bar: {
apps: { apps: {
tooltip: "Aplicativos" tooltip: "Aplicativos"
@@ -37,10 +41,6 @@ export default {
} }
}, },
ask_popup: { ask_popup: {
title: "Pergunta", title: "Pergunta"
options: {
cancel: "Cancelar",
accept: "Ok"
}
} }
} as i18nStruct; } as i18nStruct;
+5 -5
View File
@@ -1,5 +1,9 @@
export type i18nStruct = { export type i18nStruct = {
language: string, language: string,
cancel: string,
accept: string
bar: { bar: {
apps: { apps: {
tooltip: string tooltip: string
@@ -35,10 +39,6 @@ export type i18nStruct = {
} }
}, },
ask_popup: { ask_popup: {
title: string, title: string
options: {
cancel: string,
accept: string
}
} }
}; };