mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
//#region src/core/i18n/text/common.ts
|
|
const prefix = "common.";
|
|
const emptyText = {
|
|
key: `${prefix}empty`,
|
|
text: ""
|
|
};
|
|
const okText = {
|
|
key: `${prefix}ok`,
|
|
text: "OK"
|
|
};
|
|
//#endregion
|
|
export { emptyText, okText };
|
|
|
|
//# sourceMappingURL=common.js.map
|