modify text
This commit is contained in:
parent
ce48b87a0a
commit
250202811d
|
@ -173,7 +173,7 @@
|
||||||
<a href="#/waiting"><i class="fa fa-clock-o"></i> <span ng-bind="('Waiting' | translate) + (globalStat && globalStat.numWaiting > 0 ? ' (' + globalStat.numWaiting + ')' : '')">Waiting</span></a>
|
<a href="#/waiting"><i class="fa fa-clock-o"></i> <span ng-bind="('Waiting' | translate) + (globalStat && globalStat.numWaiting > 0 ? ' (' + globalStat.numWaiting + ')' : '')">Waiting</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li data-href-match="/stopped">
|
<li data-href-match="/stopped">
|
||||||
<a href="#/stopped"><i class="fa fa-check-circle-o"></i> <span ng-bind="('Downloaded / Stopped' | translate) + (globalStat && globalStat.numStopped > 0 ? ' (' + globalStat.numStopped + ')' : '')">Downloaded / Stopped</span></a>
|
<a href="#/stopped"><i class="fa fa-check-circle-o"></i> <span ng-bind="('Finished / Stopped' | translate) + (globalStat && globalStat.numStopped > 0 ? ' (' + globalStat.numStopped + ')' : '')">Finished / Stopped</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="header" translate>Settings</li>
|
<li class="header" translate>Settings</li>
|
||||||
<li data-href-match="/settings/ariang">
|
<li data-href-match="/settings/ariang">
|
||||||
|
|
|
@ -45,7 +45,7 @@ Paused=已暂停
|
||||||
Completed=已完成
|
Completed=已完成
|
||||||
Error Occurred=发生错误
|
Error Occurred=发生错误
|
||||||
Removed=已删除
|
Removed=已删除
|
||||||
Downloaded / Stopped=已完成 / 已停止
|
Finished / Stopped=已完成 / 已停止
|
||||||
Uncompleted=未完成
|
Uncompleted=未完成
|
||||||
Click to pin=点击固定
|
Click to pin=点击固定
|
||||||
Settings=系统设置
|
Settings=系统设置
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
'Completed': 'Completed',
|
'Completed': 'Completed',
|
||||||
'Error Occurred': 'Error Occurred',
|
'Error Occurred': 'Error Occurred',
|
||||||
'Removed': 'Removed',
|
'Removed': 'Removed',
|
||||||
'Downloaded / Stopped': 'Downloaded / Stopped',
|
'Finished / Stopped': 'Finished / Stopped',
|
||||||
'Uncompleted': 'Uncompleted',
|
'Uncompleted': 'Uncompleted',
|
||||||
'Click to pin': 'Click to pin',
|
'Click to pin': 'Click to pin',
|
||||||
'Settings': 'Settings',
|
'Settings': 'Settings',
|
||||||
|
|
|
@ -77,7 +77,7 @@
|
||||||
|
|
||||||
var replaceStoppedCount = function (title, value) {
|
var replaceStoppedCount = function (title, value) {
|
||||||
return replacePlaceholders(title, 'stopped', {
|
return replacePlaceholders(title, 'stopped', {
|
||||||
prefix: $translate.instant('Downloaded / Stopped'),
|
prefix: $translate.instant('Finished / Stopped'),
|
||||||
value: value
|
value: value
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Reference in a new issue