This repository has been archived on 2022-01-02. You can view files and clone it, but cannot push or open issues/pull-requests.
AriaNg/src/scripts/config/languages.js

13 lines
230 B
JavaScript
Raw Normal View History

2016-05-23 16:56:39 +02:00
(function () {
'use strict';
angular.module('ariaNg').constant('ariaNgLanguages', {
2016-06-05 18:49:48 +02:00
'en': {
2016-05-23 16:56:39 +02:00
name: 'English'
},
2016-06-05 18:49:48 +02:00
'zh_CN': {
2016-05-23 16:56:39 +02:00
name: 'Simplified Chinese'
}
});
})();