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

46 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-05-13 18:09:12 +02:00
(function () {
'use strict';
angular.module('ariaNg').config(['$translateProvider', function ($translateProvider) {
$translateProvider.translations('en-US', {
'English': 'English',
2016-05-13 18:09:12 +02:00
'New': 'New',
'Start': 'Start',
'Pause': 'Pause',
'Delete': 'Delete',
'Display Order': 'Display Order',
'Default': 'Default',
2016-05-16 15:53:45 +02:00
'By File Name': 'By File Name',
'By File Size': 'By File Size',
'By Completed Percent': 'By Completed Percent',
'By Remain Time': 'By Remain Time',
2016-05-13 18:09:12 +02:00
'Download': 'Download',
'Downloading': 'Downloading',
2016-05-16 15:20:52 +02:00
'Waiting': 'Waiting',
2016-05-13 18:09:12 +02:00
'Stopped': 'Stopped',
'Settings': 'Settings',
'AriaNg Settings': 'AriaNg Settings',
2016-05-17 17:00:07 +02:00
'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',
2016-05-16 18:59:27 +02:00
'Aria2 RPC Port': 'Aria2 RPC Port',
'Aria2 RPC Protocol': 'Aria2 RPC Protocol',
2016-05-17 16:15:28 +02:00
'Global Stat Refresh Interval': 'Global Stat Refresh Interval',
'Download Task Refresh Interval': 'Download Task Refresh Interval',
2016-05-13 18:09:12 +02:00
'Toggle Navigation': 'Toggle Navigation',
'Loading': 'Loading...',
'More Than One Day': 'More than 1 day',
'Unknown': 'Unknown',
2016-05-17 16:15:28 +02:00
'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.'
2016-05-13 18:09:12 +02:00
});
}])
})();