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

35 lines
1.3 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',
'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-13 18:09:12 +02:00
'Toggle Navigation': 'Toggle Navigation',
'Loading': 'Loading...',
'More Than One Day': 'More than 1 day',
'Unknown': 'Unknown',
'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
});
}])
})();