Skip to content

Commit bd3ab61

Browse files
committedMay 2, 2016
Retored locale
1 parent 84bae70 commit bd3ab61

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# app pecific
22
app/**/*.js
33
app/**/*.js.map
4+
!app/assets/locale/*.js
45
app/assets/css/**/*
56
app/assets/bower_components/**/*
67
node_modules/**/*

‎app/assets/locale/en-us.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
(function () {
2+
'use strict';
3+
4+
angular
5+
.module('xom-webclient')
6+
.config(translate_);
7+
8+
translate_.$inject = ['$translateProvider'];
9+
function translate_($translateProvider) {
10+
$translateProvider.translations('en-us', {
11+
12+
// General
13+
GENERAL_COMPANY_NAME: 'Template Company Name',
14+
GENERAL_APPLICATION_NAME: 'Template Application Name',
15+
16+
// Actions
17+
ACTION_OK: 'Ok',
18+
ACTION_SUBMIT: 'Submit',
19+
ACTION_CANCEL: 'Cancel',
20+
ACTION_SAVE: 'Save',
21+
ACTION_DELETE: 'Delete',
22+
ACTION_DISMISS: 'Dismiss',
23+
ACTION_DETAILS: 'Details',
24+
ACTION_CLOSE: 'Close',
25+
ACTION_BACK: 'Back',
26+
ACTION_SETTINGS: 'Settings',
27+
28+
});
29+
}
30+
})();

0 commit comments

Comments
 (0)
Please sign in to comment.