File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1
1
# app pecific
2
2
app /** /* .js
3
3
app /** /* .js.map
4
+ ! app /assets /locale /* .js
4
5
app /assets /css /** /*
5
6
app /assets /bower_components /** /*
6
7
node_modules /** /*
Original file line number Diff line number Diff line change
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
+ } ) ( ) ;
You can’t perform that action at this time.
0 commit comments