modify text
This commit is contained in:
parent
fe67ed98f4
commit
881b14b742
|
@ -238,6 +238,7 @@ time.minute={{value}} 分钟
|
||||||
time.minutes={{value}} 分钟
|
time.minutes={{value}} 分钟
|
||||||
time.hour={{value}} 小时
|
time.hour={{value}} 小时
|
||||||
time.hours={{value}} 小时
|
time.hours={{value}} 小时
|
||||||
|
requires.aria2-version=需要 aria2 v{{version}} 或更高版本
|
||||||
task.pieceinfo=已完成: {{completed}}, 共计: {{total}} 块
|
task.pieceinfo=已完成: {{completed}}, 共计: {{total}} 块
|
||||||
task.error-occurred=发生错误 ({{errorcode}})
|
task.error-occurred=发生错误 ({{errorcode}})
|
||||||
settings.file-count=({{count}} 个文件)
|
settings.file-count=({{count}} 个文件)
|
||||||
|
|
|
@ -241,6 +241,7 @@
|
||||||
'time.minutes': '{{value}} Minutes',
|
'time.minutes': '{{value}} Minutes',
|
||||||
'time.hour': '{{value}} Hour',
|
'time.hour': '{{value}} Hour',
|
||||||
'time.hours': '{{value}} Hours',
|
'time.hours': '{{value}} Hours',
|
||||||
|
'requires.aria2-version': 'Requires aria2 v{{version}} or higher',
|
||||||
'task.pieceinfo': 'Completed: {{completed}}, Total: {{total}}',
|
'task.pieceinfo': 'Completed: {{completed}}, Total: {{total}}',
|
||||||
'task.error-occurred': 'Error Occurred ({{errorcode}})',
|
'task.error-occurred': 'Error Occurred ({{errorcode}})',
|
||||||
'settings.file-count': '({{count}} Files)',
|
'settings.file-count': '({{count}} Files)',
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
data-toggle="popover" data-trigger="hover" data-placement="auto top" data-container="body" data-content="{{option.descriptionKey | translate}}"></i>
|
data-toggle="popover" data-trigger="hover" data-placement="auto top" data-container="body" data-content="{{option.descriptionKey | translate}}"></i>
|
||||||
<span class="description" ng-if="option.showCount && option.split && optionValue"
|
<span class="description" ng-if="option.showCount && option.split && optionValue"
|
||||||
ng-bind="'format.settings.total-count' | translate: {count: getTotalCount()}"></span>
|
ng-bind="'format.settings.total-count' | translate: {count: getTotalCount()}"></span>
|
||||||
<i class="icon-primary fa fa-info-circle" ng-if="(option.since && option.since !== '')" ng-tooltip="{{'>= ' + option.since}}" ng-tooltip-container="body" ng-tooltip-placement="right"></i>
|
<i class="icon-primary fa fa-info-circle" ng-if="(option.since && option.since !== '')" ng-tooltip="{{('format.requires.aria2-version' | translate: {version: option.since})}}" ng-tooltip-container="body" ng-tooltip-placement="right"></i>
|
||||||
</div>
|
</div>
|
||||||
<div class="setting-value col-sm-8">
|
<div class="setting-value col-sm-8">
|
||||||
<div ng-class="{'input-group': !!option.suffix}">
|
<div ng-class="{'input-group': !!option.suffix}">
|
||||||
|
|
Reference in a new issue