13 lines
233 B
JavaScript
13 lines
233 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular.module('ariaNg').constant('ariaNgLanguages', {
|
|
'en-US': {
|
|
name: 'English'
|
|
},
|
|
'zh-CN': {
|
|
name: 'Simplified Chinese'
|
|
}
|
|
});
|
|
})();
|