mirror of
https://github.com/hackku21/loc-chain-backend.git
synced 2026-03-02 03:40:09 +00:00
Import Extollo framework
This commit is contained in:
4
lib/app/configs/lang/common.config.d.ts
vendored
Normal file
4
lib/app/configs/lang/common.config.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
declare const _default: {
|
||||
app_name: any;
|
||||
};
|
||||
export default _default;
|
||||
6
lib/app/configs/lang/common.config.js
Normal file
6
lib/app/configs/lang/common.config.js
Normal file
@@ -0,0 +1,6 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const lib_1 = require("@extollo/lib");
|
||||
exports.default = {
|
||||
app_name: lib_1.env('APP_NAME', 'Extollo'),
|
||||
};
|
||||
5
lib/app/configs/lang/en_US.config.d.ts
vendored
Normal file
5
lib/app/configs/lang/en_US.config.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
declare const _default: {
|
||||
welcome_to_extollo: string;
|
||||
viewed_page_num_times: string;
|
||||
};
|
||||
export default _default;
|
||||
6
lib/app/configs/lang/en_US.config.js
Normal file
6
lib/app/configs/lang/en_US.config.js
Normal file
@@ -0,0 +1,6 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
welcome_to_extollo: 'Welcome to Extollo!',
|
||||
viewed_page_num_times: 'You have viewed this page :num: times.',
|
||||
};
|
||||
Reference in New Issue
Block a user