Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes ziahamza/webui-aria2#483 #571

Merged
merged 1 commit into from
Sep 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions docs/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2258,7 +2258,7 @@
? (t.gid !== e.gid && (t.files = []),
(t.dir = e.dir),
(t.status = e.status),
e.verifiedLength && (t.status = "verifing"),
e.verifiedLength && (t.status = "verifying"),
e.verifyIntegrityPending && (t.status = "verifyPending"),
(t.errorCode = e.errorCode),
(t.gid = e.gid),
Expand Down Expand Up @@ -2326,7 +2326,7 @@
files: []
}),
e.verifiedLength &&
((t.verifiedLength = e.verifiedLength), (t.status = "verifing")),
((t.verifiedLength = e.verifiedLength), (t.status = "verifying")),
e.verifyIntegrityPending &&
((t.verifyIntegrityPending = e.verifyIntegrityPending),
(t.status = "verifyPending")));
Expand Down Expand Up @@ -2378,7 +2378,7 @@
return "progress-bar-warning";
case "active":
return "active";
case "verifing":
case "verifying":
return "progress-bar-warning";
case "complete":
return "progress-bar-success";
Expand Down Expand Up @@ -9797,7 +9797,7 @@
"Hide linked meta-data": "Hide linked meta-data",
Toggle: "Toggle",
"Reset filters": "Reset filters",
Verifing: "Verifing",
Verifying: "Verifying",
"Verify Pending": "Verify Pending",
"Quick Access Settings": "Quick Access Settings",
Save: "Save",
Expand Down Expand Up @@ -10048,7 +10048,7 @@
"Hide linked meta-data": "隐藏连接的元数据",
Toggle: "反向选择",
"Reset filters": "重置过滤器",
Verifing: "正在验证",
Verifying: "正在验证",
"Verify Pending": "等待验证",
"Quick Access Settings": "快速访问设置",
Save: "保存",
Expand Down Expand Up @@ -10190,7 +10190,7 @@
"Hide linked meta-data": "隱藏連線的元資料",
Toggle: "反向選擇",
"Reset filters": "重置過濾器",
Verifing: "正在驗證",
Verifying: "正在驗證",
"Verify Pending": "等待驗證",
"Quick Access Settings": "快速訪問設定",
Save: "儲存",
Expand Down Expand Up @@ -10471,7 +10471,7 @@
"Hide linked meta-data": "Cacher les métadonnées liées",
Toggle: "Basculer",
"Reset filters": "Réinitialiser les filtres",
Verifing: "Vérification",
Verifying: "Vérification",
"Verify Pending": "Vérification en attente",
"Quick Access Settings": "Paramètres d'accès rapide",
Save: "Sauvegarder",
Expand Down Expand Up @@ -10750,7 +10750,7 @@
"Hide linked meta-data": "Ocultar metadatos adjuntos",
Toggle: "Conmutar",
"Reset filters": "Restablecer Filtros",
Verifing: "Verificando",
Verifying: "Verificando",
"Verify Pending": "Pendiente de verificación",
"Quick Access Settings": "Ajustes Rápidos",
Save: "Guardar",
Expand Down Expand Up @@ -11317,7 +11317,7 @@
"Hide linked meta-data": "Skrýt připojená meta-data",
Toggle: "Prohodit",
"Reset filters": "Smazat filtry",
Verifing: "Ověřování",
Verifying: "Ověřování",
"Verify Pending": "Čekání na ověření",
"Quick Access Settings": "Rychlé nastavení",
Save: "Uložit",
Expand Down Expand Up @@ -11462,7 +11462,7 @@
"Hide linked meta-data": "مخفی کردن متا داده مرتبط",
Toggle: "تغییر وضعیت",
"Reset filters": "حذف فیلترها",
Verifing: "تأیید کردن",
Verifying: "تأیید کردن",
"Verify Pending": "تأیید کردن در انتظارها",
"Quick Access Settings": "تنظیمات دسترسی سریع",
Save: "ذخیره",
Expand Down Expand Up @@ -11608,7 +11608,7 @@
"Hide linked meta-data": "Sembunyikan tautan meta-data",
Toggle: "Tombol alihan",
"Reset filters": "Reset penyaring",
Verifing: "Memverifikasi",
Verifying: "Memverifikasi",
"Verify Pending": "Verifikasi Ditunda",
"Quick Access Settings": "Pengaturan Akses Cepat",
Save: "Simpan",
Expand Down Expand Up @@ -11755,7 +11755,7 @@
"Hide linked meta-data": "Esconder metadados ligados",
Toggle: "Alternar",
"Reset filters": "Limpar filtros",
Verifing: "Verificando",
Verifying: "Verificando",
"Verify Pending": "Verificação Pendente",
"Quick Access Settings": "Acesso Rápido às Configurações",
Save: "Salvar",
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -589,10 +589,10 @@
<!-- }}} -->
</ul>

<ul class="stats pull-left" ng-switch-when="verifing">
<ul class="stats pull-left" ng-switch-when="verifying">
<!-- {{{ active download statistics -->
<li class="label label-warning hidden-phone hidden-tablet">
<span title="{{ 'Download status' | translate }}"><svg class="icon icon-fw"><use xlink:href="#icon-play"></use></svg> {{ 'Verifing' | translate }}</span>
<span title="{{ 'Download status' | translate }}"><svg class="icon icon-fw"><use xlink:href="#icon-play"></use></svg> {{ 'Verifying' | translate }}</span>
</li>

<li class="label label-default" ng-class="{'label-active': download.downloadSpeed > 2048, 'label-warning': download.downloadSpeed <= 2048}">
Expand Down
4 changes: 2 additions & 2 deletions src/index-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -589,10 +589,10 @@
<!-- }}} -->
</ul>

<ul class="stats pull-left" ng-switch-when="verifing">
<ul class="stats pull-left" ng-switch-when="verifying">
<!-- {{{ active download statistics -->
<li class="label label-warning hidden-phone hidden-tablet">
<span title="{{ 'Download status' | translate }}"><svg class="icon icon-fw"><use xlink:href="#icon-play"></use></svg> {{ 'Verifing' | translate }}</span>
<span title="{{ 'Download status' | translate }}"><svg class="icon icon-fw"><use xlink:href="#icon-play"></use></svg> {{ 'Verifying' | translate }}</span>
</li>

<li class="label label-default" ng-class="{'label-active': download.downloadSpeed > 2048, 'label-warning': download.downloadSpeed <= 2048}">
Expand Down
6 changes: 3 additions & 3 deletions src/js/ctrls/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ export default angular
};
if (d.verifiedLength) {
ctx.verifiedLength = d.verifiedLength;
ctx.status = "verifing";
ctx.status = "verifying";
}
if (d.verifyIntegrityPending) {
ctx.verifyIntegrityPending = d.verifyIntegrityPending;
Expand All @@ -473,7 +473,7 @@ export default angular
if (ctx.gid !== d.gid) ctx.files = [];
ctx.dir = d.dir;
ctx.status = d.status;
if (d.verifiedLength) ctx.status = "verifing";
if (d.verifiedLength) ctx.status = "verifying";
if (d.verifyIntegrityPending) ctx.status = "verifyPending";
ctx.errorCode = d.errorCode;
ctx.gid = d.gid;
Expand Down Expand Up @@ -597,7 +597,7 @@ export default angular
return "progress-bar-warning";
case "active":
return "active";
case "verifing":
case "verifying":
return "progress-bar-warning";
case "complete":
return "progress-bar-success";
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/cs_CZ.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ translations.cs_CZ = {
Toggle: "Prohodit",
"Reset filters": "Smazat filtry",
// download status
Verifing: "Ověřování",
Verifying: "Ověřování",
"Verify Pending": "Čekání na ověření",
// starred properties
"Quick Access Settings": "Rychlé nastavení",
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/en_US.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ translations.en_US = {
Toggle: "Toggle",
"Reset filters": "Reset filters",
// download status
Verifing: "Verifing",
Verifying: "Verifying",
"Verify Pending": "Verify Pending",
// starred properties
"Quick Access Settings": "Quick Access Settings",
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/es_ES.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ translations.es_ES = {
Toggle: "Conmutar",
"Reset filters": "Restablecer Filtros",
// download status
Verifing: "Verificando",
Verifying: "Verificando",
"Verify Pending": "Pendiente de verificación",
// starred properties
"Quick Access Settings": "Ajustes Rápidos",
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/fa_IR.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ translations.fa_IR = {
Toggle: "تغییر وضعیت",
"Reset filters": "حذف فیلترها",
// download status
Verifing: "تأیید کردن",
Verifying: "تأیید کردن",
"Verify Pending": "تأیید کردن در انتظارها",
// starred properties
"Quick Access Settings": "تنظیمات دسترسی سریع",
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/fr_FR.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ translations.fr_FR = {
Toggle: "Basculer",
"Reset filters": "Réinitialiser les filtres",
// download status
Verifing: "Vérification",
Verifying: "Vérification",
"Verify Pending": "Vérification en attente",
// starred properties
"Quick Access Settings": "Paramètres d'accès rapide",
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/id_ID.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ translations.id_ID = {
Toggle: "Tombol alihan",
"Reset filters": "Reset penyaring",
// download status
Verifing: "Memverifikasi",
Verifying: "Memverifikasi",
"Verify Pending": "Verifikasi Ditunda",
// starred properties
"Quick Access Settings": "Pengaturan Akses Cepat",
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/pt_BR.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ translations.pt_BR = {
Toggle: "Alternar",
"Reset filters": "Limpar filtros",
// download status
Verifing: "Verificando",
Verifying: "Verificando",
"Verify Pending": "Verificação Pendente",
// starred properties
"Quick Access Settings": "Acesso Rápido às Configurações",
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ translations.en_US = {
Toggle: "",
"Reset filters": "",
// download status
Verifing: "",
Verifying: "",
"Verify Pending": "",
// starred properties
"Quick Access Settings": "",
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/zh_CN.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ translations.zh_CN = {
Toggle: "反向选择",
"Reset filters": "重置过滤器",
// download status
Verifing: "正在验证",
Verifying: "正在验证",
"Verify Pending": "等待验证",
// starred properties
"Quick Access Settings": "快速访问设置",
Expand Down
2 changes: 1 addition & 1 deletion src/js/translate/zh_TW.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ translations.zh_TW = {
Toggle: "反向選擇",
"Reset filters": "重置過濾器",
// download status
Verifing: "正在驗證",
Verifying: "正在驗證",
"Verify Pending": "等待驗證",
// starred properties
"Quick Access Settings": "快速訪問設定",
Expand Down