mirror of https://github.com/embarklabs/embark.git
move i18n to core
This commit is contained in:
parent
e14c5b263e
commit
956f304f57
|
@ -1,6 +1,6 @@
|
|||
const program = require('commander');
|
||||
const Embark = require('../lib/index');
|
||||
const i18n = require('./i18n/i18n.js');
|
||||
const i18n = require('./core/i18n/i18n.js');
|
||||
let embark = new Embark;
|
||||
|
||||
class Cmd {
|
||||
|
|
|
@ -8,7 +8,7 @@ i18n.configure({
|
|||
locales: supported_languages,
|
||||
register: global,
|
||||
updateFiles: false,
|
||||
directory: path.join(__dirname, 'locales')
|
||||
directory: path.join(__dirname, '../../../', 'locales')
|
||||
});
|
||||
|
||||
function isSupported(locale) {
|
|
@ -1,7 +1,8 @@
|
|||
const {PerformanceObserver, performance} = require('perf_hooks');
|
||||
require('colors');
|
||||
const utils = require('../utils/utils.js');
|
||||
const i18n = require('../i18n/i18n.js');
|
||||
// TODO: remove this
|
||||
const i18n = require('../../core/i18n/i18n.js');
|
||||
i18n.setOrDetectLocale('en');
|
||||
|
||||
|
||||
|
@ -22,8 +23,6 @@ class NpmTimer{
|
|||
this._downloadComplete = 'downloadComplete' + this._packageName + this._version;
|
||||
|
||||
this.observer.observe({entryTypes: ['measure']});
|
||||
|
||||
|
||||
}
|
||||
|
||||
get observer(){
|
||||
|
@ -42,7 +41,6 @@ class NpmTimer{
|
|||
else{
|
||||
// otherwise, find our download complete measurement
|
||||
entry = utils.last(items.getEntries().filter(entry => entry.name === this._downloadComplete));
|
||||
|
||||
if(entry){
|
||||
strDuration = __('Finished downloading and installing {{packageName}} {{version}} in {{duration}}ms', {packageName: this._packageName, version: this._version, duration: entry.duration});
|
||||
performance.clearMarks();
|
||||
|
|
Loading…
Reference in New Issue