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/langs/zh-CN.js
2016-05-16 21:53:45 +08:00

28 lines
993 B
JavaScript

(function () {
'use strict';
angular.module('ariaNg').config(['$translateProvider', function ($translateProvider) {
$translateProvider.translations('zh-CN', {
'New': '新建',
'Start': '开始下载任务',
'Pause': '暂停下载任务',
'Delete': '删除下载任务',
'Display Order': '显示顺序',
'Default': '默认',
'By File Name': '按文件名',
'By File Size': '按文件大小',
'By Completed Percent': '按完成度',
'By Remain Time': '按剩余时间',
'Settings': '系统设置',
'Download': '下载',
'Downloading': '正在下载',
'Waiting': '正在等待',
'Stopped': '已停止',
'Toggle Navigation': '切换导航',
'Loading': '正在加载...',
'More Than One Day': '超过1天',
'Unknown': '未知'
});
}])
})();