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/en-US.js
2016-05-17 23:13:47 +08:00

51 lines
2.1 KiB
JavaScript

(function () {
'use strict';
angular.module('ariaNg').config(['$translateProvider', function ($translateProvider) {
$translateProvider.translations('en-US', {
'English': 'English',
'New': 'New',
'Start': 'Start',
'Pause': 'Pause',
'Delete': 'Delete',
'Display Order': 'Display Order',
'Default': 'Default',
'By File Name': 'By File Name',
'By File Size': 'By File Size',
'By Completed Percent': 'By Completed Percent',
'By Remain Time': 'By Remain Time',
'Download': 'Download',
'Downloading': 'Downloading',
'Waiting': 'Waiting',
'Downloaded / Stopped': 'Downloaded / Stopped',
'Settings': 'Settings',
'AriaNg Settings': 'AriaNg Settings',
'Aria2 Settings': 'Aria2 Settings',
'Basic Settings': 'Basic Settings',
'BitTorrent Settings': 'BitTorrent Settings',
'RPC Settings': 'RPC Settings',
'Advanced Settings': 'Advanced Settings',
'File Name': 'File Name',
'File Size': 'File Size',
'Completed Percent': 'Percent',
'Remain Time': 'Remain',
'Download Speed': 'Download Speed',
'Files': 'Files',
'Language': 'Language',
'Aria2 RPC Host': 'Aria2 RPC Host',
'Aria2 RPC Port': 'Aria2 RPC Port',
'Aria2 RPC Protocol': 'Aria2 RPC Protocol',
'Global Stat Refresh Interval': 'Global Stat Refresh Interval',
'Download Task Refresh Interval': 'Download Task Refresh Interval',
'Toggle Navigation': 'Toggle Navigation',
'Loading': 'Loading...',
'More Than One Day': 'More than 1 day',
'Unknown': 'Unknown',
'Seconds': 'Seconds',
'Milliseconds': 'Milliseconds',
'(0 is disabled)': '(0 is disabled)',
'Changes to the settings take effect after refreshing page.': 'Changes to the settings take effect after refreshing page.'
});
}])
})();