🌐 ags(i18n): move 'ask_popup.accept' and 'ask_popup.cancel' keys to root structure
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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
@@ -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
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user