This repository has been archived on 2022-01-02. You can view files and clone it, but cannot push or open issues/pull-requests.
AriaNg/app/scripts/langs/en-US.js

27 lines
898 B
JavaScript

(function () {
'use strict';
angular.module('ariaNg').config(['$translateProvider', function ($translateProvider) {
$translateProvider.translations('en-US', {
'New': 'New',
'Start': 'Start',
'Pause': 'Pause',
'Delete': 'Delete',
'Display Order': 'Display Order',
'Default': 'Default',
'File Name': 'File Name',
'Completed Percent': 'Completed Percent',
'Remain Time': 'Remain Time',
'Settings': 'Settings',
'Download': 'Download',
'Downloading': 'Downloading',
'Scheduling': 'Scheduling',
'Stopped': 'Stopped',
'Toggle Navigation': 'Toggle Navigation',
'Loading': 'Loading...',
'More Than One Day': 'More than 1 day',
'Unknown': 'Unknown'
});
}])
})();