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/src/scripts/config/languages.js

21 lines
533 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-07-16 19:16:17 +02:00
name: 'English',
displayName: 'English'
2016-05-23 16:56:39 +02:00
},
2017-06-18 09:04:13 +02:00
'zh_Hans': {
2016-07-16 19:16:17 +02:00
name: 'Simplified Chinese',
2017-06-18 09:04:13 +02:00
displayName: '简体中文',
aliases: ['zh_CHS', 'zh_CN', 'zh_SG']
},
'zh_Hant': {
name: 'Traditional Chinese',
displayName: '繁體中文',
aliases: ['zh_CHT', 'zh_TW', 'zh_HK', 'zh_MO']
2016-05-23 16:56:39 +02:00
}
});
2016-08-01 16:49:16 +02:00
}());