diff --git a/src/index.html b/src/index.html index b74ebea..fd356ff 100644 --- a/src/index.html +++ b/src/index.html @@ -173,7 +173,7 @@ Waiting
  • - Downloaded / Stopped + Finished / Stopped
  • Settings
  • diff --git a/src/langs/zh_CN.txt b/src/langs/zh_CN.txt index bbf1c5b..d2ad968 100644 --- a/src/langs/zh_CN.txt +++ b/src/langs/zh_CN.txt @@ -45,7 +45,7 @@ Paused=已暂停 Completed=已完成 Error Occurred=发生错误 Removed=已删除 -Downloaded / Stopped=已完成 / 已停止 +Finished / Stopped=已完成 / 已停止 Uncompleted=未完成 Click to pin=点击固定 Settings=系统设置 diff --git a/src/scripts/config/defaultLanguage.js b/src/scripts/config/defaultLanguage.js index b64a6e4..3ecd737 100644 --- a/src/scripts/config/defaultLanguage.js +++ b/src/scripts/config/defaultLanguage.js @@ -49,7 +49,7 @@ 'Completed': 'Completed', 'Error Occurred': 'Error Occurred', 'Removed': 'Removed', - 'Downloaded / Stopped': 'Downloaded / Stopped', + 'Finished / Stopped': 'Finished / Stopped', 'Uncompleted': 'Uncompleted', 'Click to pin': 'Click to pin', 'Settings': 'Settings', diff --git a/src/scripts/services/ariaNgTitleService.js b/src/scripts/services/ariaNgTitleService.js index 0c0418e..8b1b71a 100644 --- a/src/scripts/services/ariaNgTitleService.js +++ b/src/scripts/services/ariaNgTitleService.js @@ -77,7 +77,7 @@ var replaceStoppedCount = function (title, value) { return replacePlaceholders(title, 'stopped', { - prefix: $translate.instant('Downloaded / Stopped'), + prefix: $translate.instant('Finished / Stopped'), value: value }); };