🌐 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 {
language: "English (United States)",
cancel: "Cancel",
accept: "Ok",
bar: {
apps: {
tooltip: "Applications"
@@ -37,10 +41,6 @@ export default {
}
},
ask_popup: {
title: "Question",
options: {
cancel: "Cancel",
accept: "Ok"
}
title: "Question"
}
} as i18nStruct;
+5 -5
View File
@@ -2,6 +2,10 @@ import { i18nStruct } from "../struct";
export default {
language: "Português (Brasil)",
cancel: "Cancelar",
accept: "Ok",
bar: {
apps: {
tooltip: "Aplicativos"
@@ -37,10 +41,6 @@ export default {
}
},
ask_popup: {
title: "Pergunta",
options: {
cancel: "Cancelar",
accept: "Ok"
}
title: "Pergunta"
}
} as i18nStruct;
+5 -5
View File
@@ -1,5 +1,9 @@
export type i18nStruct = {
language: string,
cancel: string,
accept: string
bar: {
apps: {
tooltip: string
@@ -35,10 +39,6 @@ export type i18nStruct = {
}
},
ask_popup: {
title: string,
options: {
cancel: string,
accept: string
}
title: string
}
};