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

13 lines
233 B
JavaScript
Raw Normal View History

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