🌐 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 {
|
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;
|
||||||
|
|||||||
@@ -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
@@ -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
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user