From 21a478199cbb0229f7ab66f793e412f075705d2f Mon Sep 17 00:00:00 2001 From: Zentino Date: Sun, 25 May 2025 17:56:34 +0800 Subject: [PATCH] Fix access denial messages for remote content in multiple languages Updated error messages for access denial from (401) to (403) for remote content in various language files. Added (401) status code to authentication error messages across multiple translations. --- src/base/net/downloadhandlerimpl.cpp | 4 ++-- src/lang/qbittorrent_ar.ts | 8 ++++---- src/lang/qbittorrent_az@latin.ts | 8 ++++---- src/lang/qbittorrent_be.ts | 8 ++++---- src/lang/qbittorrent_bg.ts | 8 ++++---- src/lang/qbittorrent_ca.ts | 8 ++++---- src/lang/qbittorrent_cs.ts | 8 ++++---- src/lang/qbittorrent_da.ts | 8 ++++---- src/lang/qbittorrent_de.ts | 8 ++++---- src/lang/qbittorrent_el.ts | 8 ++++---- src/lang/qbittorrent_en.ts | 4 ++-- src/lang/qbittorrent_en_AU.ts | 8 ++++---- src/lang/qbittorrent_en_GB.ts | 8 ++++---- src/lang/qbittorrent_eo.ts | 4 ++-- src/lang/qbittorrent_es.ts | 8 ++++---- src/lang/qbittorrent_et.ts | 8 ++++---- src/lang/qbittorrent_eu.ts | 8 ++++---- src/lang/qbittorrent_fa.ts | 4 ++-- src/lang/qbittorrent_fi.ts | 8 ++++---- src/lang/qbittorrent_fr.ts | 8 ++++---- src/lang/qbittorrent_gl.ts | 8 ++++---- src/lang/qbittorrent_he.ts | 8 ++++---- src/lang/qbittorrent_hi_IN.ts | 8 ++++---- src/lang/qbittorrent_hr.ts | 8 ++++---- src/lang/qbittorrent_hu.ts | 8 ++++---- src/lang/qbittorrent_hy.ts | 8 ++++---- src/lang/qbittorrent_id.ts | 8 ++++---- src/lang/qbittorrent_is.ts | 4 ++-- src/lang/qbittorrent_it.ts | 8 ++++---- src/lang/qbittorrent_ja.ts | 8 ++++---- src/lang/qbittorrent_ka.ts | 8 ++++---- src/lang/qbittorrent_ko.ts | 8 ++++---- src/lang/qbittorrent_lt.ts | 8 ++++---- src/lang/qbittorrent_ltg.ts | 4 ++-- src/lang/qbittorrent_lv_LV.ts | 8 ++++---- src/lang/qbittorrent_mn_MN.ts | 8 ++++---- src/lang/qbittorrent_ms_MY.ts | 8 ++++---- src/lang/qbittorrent_nb.ts | 8 ++++---- src/lang/qbittorrent_nl.ts | 8 ++++---- src/lang/qbittorrent_oc.ts | 8 ++++---- src/lang/qbittorrent_pl.ts | 8 ++++---- src/lang/qbittorrent_pt_BR.ts | 8 ++++---- src/lang/qbittorrent_pt_PT.ts | 8 ++++---- src/lang/qbittorrent_ro.ts | 8 ++++---- src/lang/qbittorrent_ru.ts | 8 ++++---- src/lang/qbittorrent_sk.ts | 8 ++++---- src/lang/qbittorrent_sl.ts | 8 ++++---- src/lang/qbittorrent_sr.ts | 8 ++++---- src/lang/qbittorrent_sv.ts | 8 ++++---- src/lang/qbittorrent_th.ts | 8 ++++---- src/lang/qbittorrent_tr.ts | 8 ++++---- src/lang/qbittorrent_uk.ts | 8 ++++---- src/lang/qbittorrent_uz@Latn.ts | 4 ++-- src/lang/qbittorrent_vi.ts | 8 ++++---- src/lang/qbittorrent_zh_CN.ts | 8 ++++---- src/lang/qbittorrent_zh_HK.ts | 8 ++++---- src/lang/qbittorrent_zh_TW.ts | 8 ++++---- 57 files changed, 214 insertions(+), 214 deletions(-) diff --git a/src/base/net/downloadhandlerimpl.cpp b/src/base/net/downloadhandlerimpl.cpp index 370347946..abc796d37 100644 --- a/src/base/net/downloadhandlerimpl.cpp +++ b/src/base/net/downloadhandlerimpl.cpp @@ -279,13 +279,13 @@ QString Net::DownloadHandlerImpl::errorCodeToString(const QNetworkReply::Network case QNetworkReply::ProxyAuthenticationRequiredError: return tr("The proxy requires authentication in order to honor the request but did not accept any credentials offered"); case QNetworkReply::ContentAccessDenied: - return tr("The access to the remote content was denied (401)"); + return tr("The access to the remote content was denied (403)"); case QNetworkReply::ContentOperationNotPermittedError: return tr("The operation requested on the remote content is not permitted"); case QNetworkReply::ContentNotFoundError: return tr("The remote content was not found at the server (404)"); case QNetworkReply::AuthenticationRequiredError: - return tr("The remote server requires authentication to serve the content but the credentials provided were not accepted"); + return tr("The remote server requires authentication to serve the content but the credentials provided were not accepted (401)"); case QNetworkReply::ProtocolUnknownError: return tr("The Network Access API cannot honor the request because the protocol is not known"); case QNetworkReply::ProtocolInvalidOperationError: diff --git a/src/lang/qbittorrent_ar.ts b/src/lang/qbittorrent_ar.ts index 645213f8a..eed72a15e 100644 --- a/src/lang/qbittorrent_ar.ts +++ b/src/lang/qbittorrent_ar.ts @@ -4494,8 +4494,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - تم رفض الوصول إلى المحتوى البعيد (401) + The access to the remote content was denied (403) + تم رفض الوصول إلى المحتوى البعيد (403) @@ -4509,8 +4509,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - يتطلب الخادم البعيد المصادقة لخدمة المحتوى ولكن لم يتم قبول بيانات الاعتماد المقدمة + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + يتطلب الخادم البعيد المصادقة لخدمة المحتوى ولكن لم يتم قبول بيانات الاعتماد المقدمة (401) diff --git a/src/lang/qbittorrent_az@latin.ts b/src/lang/qbittorrent_az@latin.ts index 18898bbfc..f1395d350 100644 --- a/src/lang/qbittorrent_az@latin.ts +++ b/src/lang/qbittorrent_az@latin.ts @@ -4492,8 +4492,8 @@ Minimum tələb olunan versiya: %2. - The access to the remote content was denied (401) - Uzaq serverdəki tərkiblərə giriş qadağan edildi (401) + The access to the remote content was denied (403) + Uzaq serverdəki tərkiblərə giriş qadağan edildi (403) @@ -4507,8 +4507,8 @@ Minimum tələb olunan versiya: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Uzaq server tərkiblər üzərində işləmək üçün kimlik doğrulaması tələb edir, lakin, verilən istifadəçi adı və şifrəni qəbul etmir. + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Uzaq server tərkiblər üzərində işləmək üçün kimlik doğrulaması tələb edir, lakin, verilən istifadəçi adı və şifrəni qəbul etmir (401). diff --git a/src/lang/qbittorrent_be.ts b/src/lang/qbittorrent_be.ts index fc2eb1404..edd95e01a 100644 --- a/src/lang/qbittorrent_be.ts +++ b/src/lang/qbittorrent_be.ts @@ -4493,8 +4493,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Доступ да адлеглага змесціва забаронены (401) + The access to the remote content was denied (403) + Доступ да адлеглага змесціва забаронены (403) @@ -4508,8 +4508,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Адлеглы сервер патрабуе аўтэнтыфікацыі для доступа да змесціва, але прадастаўленныя ўліковыя звесткі не прыняў + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Адлеглы сервер патрабуе аўтэнтыфікацыі для доступа да змесціва, але прадастаўленныя ўліковыя звесткі не прыняў (401) diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index 172edd98c..93de7ff35 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -4493,8 +4493,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Достъпът до отдалеченото съдържание бе отказан (401) + The access to the remote content was denied (403) + Достъпът до отдалеченото съдържание бе отказан (403) @@ -4508,8 +4508,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Отдалеченият сървър изисква удостоверяване, за да предостави съдържанието, но дадените акредитации не бяха приети + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Отдалеченият сървър изисква удостоверяване, за да предостави съдържанието, но дадените акредитации не бяха приети (401) diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index dddb742e0..0cbf80436 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -4494,8 +4494,8 @@ Requisit mínim: %2. - The access to the remote content was denied (401) - L'accés al contingut remot s'ha denegat (401). + The access to the remote content was denied (403) + L'accés al contingut remot s'ha denegat (403). @@ -4509,8 +4509,8 @@ Requisit mínim: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - El servidor remot requereix autenticació per servir el contingut, però les credencials proporcionades no s'han acceptat. + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + El servidor remot requereix autenticació per servir el contingut, però les credencials proporcionades no s'han acceptat (401). diff --git a/src/lang/qbittorrent_cs.ts b/src/lang/qbittorrent_cs.ts index 779e32bbe..9d5da9f97 100644 --- a/src/lang/qbittorrent_cs.ts +++ b/src/lang/qbittorrent_cs.ts @@ -4494,8 +4494,8 @@ Minimální požadavky: %2 - The access to the remote content was denied (401) - Přístup ke vzdálenému obsahu byl odepřen (401) + The access to the remote content was denied (403) + Přístup ke vzdálenému obsahu byl odepřen (403) @@ -4509,8 +4509,8 @@ Minimální požadavky: %2 - The remote server requires authentication to serve the content but the credentials provided were not accepted - Vzdálený server vyžaduje ověření aby mohl poskytnout obsah, zadané přihlašovací údaje ale nebyly akceptovány + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Vzdálený server vyžaduje ověření aby mohl poskytnout obsah, zadané přihlašovací údaje ale nebyly akceptovány (401) diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index d5947fe2a..95cd1723c 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -4490,8 +4490,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Adgangen til fjernindholdet blev nægtet (401) + The access to the remote content was denied (403) + Adgangen til fjernindholdet blev nægtet (403) @@ -4505,8 +4505,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Fjernserveren kræve godkendelse for at kunne vise indholdet, men loginoplysningerne blev ikke accepteret + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Fjernserveren kræve godkendelse for at kunne vise indholdet, men loginoplysningerne blev ikke accepteret (401) diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index 3f9d8d0c8..9dae31237 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -4494,8 +4494,8 @@ Mindestens erforderlich ist: %2. - The access to the remote content was denied (401) - Der Zugriff auf den Inhalt wurde verweigert (401) + The access to the remote content was denied (403) + Der Zugriff auf den Inhalt wurde verweigert (403) @@ -4509,8 +4509,8 @@ Mindestens erforderlich ist: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Der Remote-Server benötigt Authentifizierung hat jedoch keine der angebotenen Zugangsdaten akzeptiert + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Der Remote-Server benötigt Authentifizierung hat jedoch keine der angebotenen Zugangsdaten akzeptiert (401) diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index 6837132e0..b9c41c9a8 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -4493,8 +4493,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Η πρόσβαση στο απομακρυσμένο περιεχόμενο δεν έγινε δεκτή (401) + The access to the remote content was denied (403) + Η πρόσβαση στο απομακρυσμένο περιεχόμενο δεν έγινε δεκτή (403) @@ -4508,8 +4508,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Ο απομακρυσμένος διακομιστής απαιτεί έλεγχο ταυτότητας για να προσφέρει το περιεχόμενο αλλά τα διαπιστευτήρια που του προσφέρθηκαν δεν έγιναν δεκτά + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Ο απομακρυσμένος διακομιστής απαιτεί έλεγχο ταυτότητας για να προσφέρει το περιεχόμενο αλλά τα διαπιστευτήρια που του προσφέρθηκαν δεν έγιναν δεκτά (401) diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index ffee3b25d..427ddf558 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -4487,7 +4487,7 @@ Minimum requirement: %2. - The access to the remote content was denied (401) + The access to the remote content was denied (403) @@ -4502,7 +4502,7 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) diff --git a/src/lang/qbittorrent_en_AU.ts b/src/lang/qbittorrent_en_AU.ts index a4f8e49d1..ccd8e063b 100644 --- a/src/lang/qbittorrent_en_AU.ts +++ b/src/lang/qbittorrent_en_AU.ts @@ -4493,8 +4493,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - The access to the remote content was denied (401) + The access to the remote content was denied (403) + The access to the remote content was denied (403) @@ -4508,8 +4508,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - The remote server requires authentication to serve the content but the credentials provided were not accepted + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) diff --git a/src/lang/qbittorrent_en_GB.ts b/src/lang/qbittorrent_en_GB.ts index eb34cec27..17888c32b 100644 --- a/src/lang/qbittorrent_en_GB.ts +++ b/src/lang/qbittorrent_en_GB.ts @@ -4494,8 +4494,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - The access to the remote content was denied (401) + The access to the remote content was denied (403) + The access to the remote content was denied (403) @@ -4509,8 +4509,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - The remote server requires authentication to serve the content but the credentials provided were not accepted + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) diff --git a/src/lang/qbittorrent_eo.ts b/src/lang/qbittorrent_eo.ts index 8c2993353..4ea9c4b41 100644 --- a/src/lang/qbittorrent_eo.ts +++ b/src/lang/qbittorrent_eo.ts @@ -4490,7 +4490,7 @@ Minimum requirement: %2. - The access to the remote content was denied (401) + The access to the remote content was denied (403) @@ -4505,7 +4505,7 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index f972a67e2..6913fb739 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -4495,8 +4495,8 @@ Requisito mínimo: %2. - The access to the remote content was denied (401) - El acceso al contenido remoto ha sido rechazado (401) + The access to the remote content was denied (403) + El acceso al contenido remoto ha sido rechazado (403) @@ -4510,8 +4510,8 @@ Requisito mínimo: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - El servidor remoto requiere autenticación para servir el contenido, pero las credenciales introducidas no fueron aceptadas + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + El servidor remoto requiere autenticación para servir el contenido, pero las credenciales introducidas no fueron aceptadas (401) diff --git a/src/lang/qbittorrent_et.ts b/src/lang/qbittorrent_et.ts index cb42d9a1d..0eb73673f 100644 --- a/src/lang/qbittorrent_et.ts +++ b/src/lang/qbittorrent_et.ts @@ -4493,8 +4493,8 @@ Vajalik on vähemalt: %2. - The access to the remote content was denied (401) - Juurdepääs kaugsisule on keelatud (401) + The access to the remote content was denied (403) + Juurdepääs kaugsisule on keelatud (403) @@ -4508,8 +4508,8 @@ Vajalik on vähemalt: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Kaugserver nõuab sisu edastamiseks autentimist, kuid esitatud volitusi ei aktsepteeritud + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Kaugserver nõuab sisu edastamiseks autentimist, kuid esitatud volitusi ei aktsepteeritud (401) diff --git a/src/lang/qbittorrent_eu.ts b/src/lang/qbittorrent_eu.ts index d57bfcc7c..e0796aa11 100644 --- a/src/lang/qbittorrent_eu.ts +++ b/src/lang/qbittorrent_eu.ts @@ -4493,8 +4493,8 @@ Beharrezko gutxiena: %2. - The access to the remote content was denied (401) - Hurruneko edukirako sarbidea ukatua izan da (401) + The access to the remote content was denied (403) + Hurruneko edukirako sarbidea ukatua izan da (403) @@ -4508,8 +4508,8 @@ Beharrezko gutxiena: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Hurruneko zerbitzariak egiaztapena behar du edukia zerbitzatzeko baina ez du onartu emandako nortasunik + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Hurruneko zerbitzariak egiaztapena behar du edukia zerbitzatzeko baina ez du onartu emandako nortasunik (401) diff --git a/src/lang/qbittorrent_fa.ts b/src/lang/qbittorrent_fa.ts index 1bf14beeb..566395587 100644 --- a/src/lang/qbittorrent_fa.ts +++ b/src/lang/qbittorrent_fa.ts @@ -4488,7 +4488,7 @@ Minimum requirement: %2. - The access to the remote content was denied (401) + The access to the remote content was denied (403) @@ -4503,7 +4503,7 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index c7923a044..bd9508220 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -4491,8 +4491,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Pääsy etäsisältöön estettiin (401) + The access to the remote content was denied (403) + Pääsy etäsisältöön estettiin (403) @@ -4506,8 +4506,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Etäpalvelin vaatii tunnistautumisen sisällön jakamista varten, mutta annettua käyttäjätunnusta ja salanaa ei hyväksytty + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Etäpalvelin vaatii tunnistautumisen sisällön jakamista varten, mutta annettua käyttäjätunnusta ja salanaa ei hyväksytty (401) diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index 1ae949511..a0d0bddb6 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -4495,8 +4495,8 @@ Configuration minimale requise : %2. - The access to the remote content was denied (401) - L'accès au contenu distant a été refusé (401) + The access to the remote content was denied (403) + L'accès au contenu distant a été refusé (403) @@ -4510,8 +4510,8 @@ Configuration minimale requise : %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Le serveur distant exige une authentification afin de distribuer le contenu, mais les identifiants fournis n'ont pas été acceptés + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Le serveur distant exige une authentification afin de distribuer le contenu, mais les identifiants fournis n'ont pas été acceptés (401) diff --git a/src/lang/qbittorrent_gl.ts b/src/lang/qbittorrent_gl.ts index 5588765b6..5151f99cd 100644 --- a/src/lang/qbittorrent_gl.ts +++ b/src/lang/qbittorrent_gl.ts @@ -4493,8 +4493,8 @@ Requirimento mínimo: %2. - The access to the remote content was denied (401) - Denegouse o acceso ao contido remoto (401) + The access to the remote content was denied (403) + Denegouse o acceso ao contido remoto (403) @@ -4508,8 +4508,8 @@ Requirimento mínimo: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - O servidor remoto require autenticacion para servir o contido pero non aceptou as credenciais enviadas + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + O servidor remoto require autenticacion para servir o contido pero non aceptou as credenciais enviadas (401) diff --git a/src/lang/qbittorrent_he.ts b/src/lang/qbittorrent_he.ts index a195c1105..1da3b4eb0 100644 --- a/src/lang/qbittorrent_he.ts +++ b/src/lang/qbittorrent_he.ts @@ -4493,8 +4493,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - הגישה אל התוכן המרוחק נדחתה (401) + The access to the remote content was denied (403) + הגישה אל התוכן המרוחק נדחתה (403) @@ -4508,8 +4508,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - השרת המרוחק דורש אימות כדי להגיש את התוכן אבל האישורים שסופקו לא התקבלו + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + השרת המרוחק דורש אימות כדי להגיש את התוכן אבל האישורים שסופקו לא התקבלו (401) diff --git a/src/lang/qbittorrent_hi_IN.ts b/src/lang/qbittorrent_hi_IN.ts index 648967847..838dfec76 100644 --- a/src/lang/qbittorrent_hi_IN.ts +++ b/src/lang/qbittorrent_hi_IN.ts @@ -4491,8 +4491,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - दूरस्थ सामग्री के लिए प्रवेश निषेध किया गया था (401) + The access to the remote content was denied (403) + दूरस्थ सामग्री के लिए प्रवेश निषेध किया गया था (403) @@ -4506,8 +4506,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - दूरस्थ सर्वर को सामग्री की सेवा के लिए प्रमाणीकरण की आवश्यकता है, लेकिन प्रदान की गई साख को स्वीकार नहीं किया गया + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + दूरस्थ सर्वर को सामग्री की सेवा के लिए प्रमाणीकरण की आवश्यकता है, लेकिन प्रदान की गई साख को स्वीकार नहीं किया गया (401) diff --git a/src/lang/qbittorrent_hr.ts b/src/lang/qbittorrent_hr.ts index e708485c3..30f1f2248 100644 --- a/src/lang/qbittorrent_hr.ts +++ b/src/lang/qbittorrent_hr.ts @@ -4490,8 +4490,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Pristup udaljenom sadržaju je odbijen (401) + The access to the remote content was denied (403) + Pristup udaljenom sadržaju je odbijen (403) @@ -4505,8 +4505,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Udaljeni poslužitelj zahtijeva provjeru autentičnosti za posluživanje sadržaja, ali navedene vjerodajnice nisu prihvaćene + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Udaljeni poslužitelj zahtijeva provjeru autentičnosti za posluživanje sadržaja, ali navedene vjerodajnice nisu prihvaćene (401) diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts index a52f2879b..ddcb04cdb 100644 --- a/src/lang/qbittorrent_hu.ts +++ b/src/lang/qbittorrent_hu.ts @@ -4493,8 +4493,8 @@ Minimális követelmény: %2. - The access to the remote content was denied (401) - A távoli tartalomhoz való hozzáférés megtagadva (401) + The access to the remote content was denied (403) + A távoli tartalomhoz való hozzáférés megtagadva (403) @@ -4508,8 +4508,8 @@ Minimális követelmény: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - A távoli szerver hitelesítést igényel a tartalom kiszolgálásához, de nem fogadja el az általunk küldött hitelesítő adatokat + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + A távoli szerver hitelesítést igényel a tartalom kiszolgálásához, de nem fogadja el az általunk küldött hitelesítő adatokat (401) diff --git a/src/lang/qbittorrent_hy.ts b/src/lang/qbittorrent_hy.ts index 37ccce578..bc6f43deb 100644 --- a/src/lang/qbittorrent_hy.ts +++ b/src/lang/qbittorrent_hy.ts @@ -4488,9 +4488,9 @@ Minimum requirement: %2. - The access to the remote content was denied (401) + The access to the remote content was denied (403) -Մուտքը հեռադիր կառավարմանը փակ է (401) +Մուտքը հեռադիր կառավարմանը փակ է (403) @@ -4504,8 +4504,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Հեռադիր սպասարկիչը պահանջում է ներկայացում + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Հեռադիր սպասարկիչը պահանջում է ներկայացում (401) diff --git a/src/lang/qbittorrent_id.ts b/src/lang/qbittorrent_id.ts index c5227dd2e..691abc632 100644 --- a/src/lang/qbittorrent_id.ts +++ b/src/lang/qbittorrent_id.ts @@ -4490,8 +4490,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Akses ke konten jarak jauh ditolak (401) + The access to the remote content was denied (403) + Akses ke konten jarak jauh ditolak (403) @@ -4505,8 +4505,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Server remote memerlukan otentifikasi untuk menyediakan konten tetapi kredensial yang ada tidak dapat diterima + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Server remote memerlukan otentifikasi untuk menyediakan konten tetapi kredensial yang ada tidak dapat diterima (401) diff --git a/src/lang/qbittorrent_is.ts b/src/lang/qbittorrent_is.ts index a9459be35..e01b78d5e 100644 --- a/src/lang/qbittorrent_is.ts +++ b/src/lang/qbittorrent_is.ts @@ -5012,7 +5012,7 @@ Minimum requirement: %2. - The access to the remote content was denied (401) + The access to the remote content was denied (403) @@ -5027,7 +5027,7 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index 0fc4858e9..03006dd53 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -4659,8 +4659,8 @@ Hash previsto: "%3". - The access to the remote content was denied (401) - L'accesso al contenuto remoto è stato negato (401) + The access to the remote content was denied (403) + L'accesso al contenuto remoto è stato negato (403) @@ -4674,8 +4674,8 @@ Hash previsto: "%3". - The remote server requires authentication to serve the content but the credentials provided were not accepted - Il server remoto richiede l'autenticazione per gestire il contenuto ma le credenziali fornite non sono state accettate + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Il server remoto richiede l'autenticazione per gestire il contenuto ma le credenziali fornite non sono state accettate (401) diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index eaa66fd1f..0276affc0 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -4494,8 +4494,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - リモートコンテンツへのアクセスが拒否されました(401) + The access to the remote content was denied (403) + リモートコンテンツへのアクセスが拒否されました(403) @@ -4509,8 +4509,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - リモートサーバーが認証を必要としますが、与えられたすべての資格情報が承認されませんでした + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + リモートサーバーが認証を必要としますが、与えられたすべての資格情報が承認されませんでした (401) diff --git a/src/lang/qbittorrent_ka.ts b/src/lang/qbittorrent_ka.ts index 8566bb3ef..40c0aefe4 100644 --- a/src/lang/qbittorrent_ka.ts +++ b/src/lang/qbittorrent_ka.ts @@ -4489,8 +4489,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - დისტანციურ შიგთავსზე წვდომა უარყოფილ იქნა (401) + The access to the remote content was denied (403) + დისტანციურ შიგთავსზე წვდომა უარყოფილ იქნა (403) @@ -4504,8 +4504,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - შიგთავსის მოსამსახურებლად დისტანციური სერვერი მოითხოვს ავთენტიფიკაციას მაგრამ შეტანილი მონაცემები არ იქნა მიღებული + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + შიგთავსის მოსამსახურებლად დისტანციური სერვერი მოითხოვს ავთენტიფიკაციას მაგრამ შეტანილი მონაცემები არ იქნა მიღებული (401) diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index 9ba51defa..1de1c66cb 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -4494,8 +4494,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - 원격 콘텐츠에 대한 액세스가 거부되었습니다 (401) + The access to the remote content was denied (403) + 원격 콘텐츠에 대한 액세스가 거부되었습니다 (403) @@ -4509,8 +4509,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - 원격 서버에서 콘텐츠를 제공하기 위해 인증이 필요하지만 제공된 자격 증명이 수락되지 않았습니다 + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + 원격 서버에서 콘텐츠를 제공하기 위해 인증이 필요하지만 제공된 자격 증명이 수락되지 않았습니다 (401) diff --git a/src/lang/qbittorrent_lt.ts b/src/lang/qbittorrent_lt.ts index 08659ec5e..6d5f47b4d 100644 --- a/src/lang/qbittorrent_lt.ts +++ b/src/lang/qbittorrent_lt.ts @@ -4493,8 +4493,8 @@ Minimali versija yra: %2. - The access to the remote content was denied (401) - Priėjimas prie nuotolinio turinio buvo uždraustas (401) + The access to the remote content was denied (403) + Priėjimas prie nuotolinio turinio buvo uždraustas (403) @@ -4508,8 +4508,8 @@ Minimali versija yra: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Serveris reikalauja atpažinimo norėdamas pateikti turinį, tačiau nepriėmė jokių siūlytų prisijungimo duomenų + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Serveris reikalauja atpažinimo norėdamas pateikti turinį, tačiau nepriėmė jokių siūlytų prisijungimo duomenų (401) diff --git a/src/lang/qbittorrent_ltg.ts b/src/lang/qbittorrent_ltg.ts index d8dbc1560..f9ad8c21b 100644 --- a/src/lang/qbittorrent_ltg.ts +++ b/src/lang/qbittorrent_ltg.ts @@ -4488,7 +4488,7 @@ Minimum requirement: %2. - The access to the remote content was denied (401) + The access to the remote content was denied (403) @@ -4503,7 +4503,7 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) diff --git a/src/lang/qbittorrent_lv_LV.ts b/src/lang/qbittorrent_lv_LV.ts index bc8dcaf57..bb089cbc0 100644 --- a/src/lang/qbittorrent_lv_LV.ts +++ b/src/lang/qbittorrent_lv_LV.ts @@ -4494,8 +4494,8 @@ Vecākā atļautā: %2. - The access to the remote content was denied (401) - Piekļuve saturam tika liegta (401) + The access to the remote content was denied (403) + Piekļuve saturam tika liegta (403) @@ -4509,8 +4509,8 @@ Vecākā atļautā: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Serveris pieprasa veikt autorizāciju priekš savienojuma noslēgšanas, bet piedāvātie autorizācijas dati netika pieņemti. + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Serveris pieprasa veikt autorizāciju priekš savienojuma noslēgšanas, bet piedāvātie autorizācijas dati netika pieņemti (401). diff --git a/src/lang/qbittorrent_mn_MN.ts b/src/lang/qbittorrent_mn_MN.ts index f1dedb7f2..437f5d4cb 100644 --- a/src/lang/qbittorrent_mn_MN.ts +++ b/src/lang/qbittorrent_mn_MN.ts @@ -4688,8 +4688,8 @@ Please install it manually. - The access to the remote content was denied (401) - Үгүйсгэсэн юм алсын гарчиг руу хандах (401) + The access to the remote content was denied (403) + Үгүйсгэсэн юм алсын гарчиг руу хандах (403) @@ -4704,8 +4704,8 @@ Please install it manually. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Алсын сервер агуулгыг үйлчлэх танилтыг шаарддаг боловч заасан итгэмжлэл хүлээн зөвшөөрдөггүй байсан + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Алсын сервер агуулгыг үйлчлэх танилтыг шаарддаг боловч заасан итгэмжлэл хүлээн зөвшөөрдөггүй байсан (401) diff --git a/src/lang/qbittorrent_ms_MY.ts b/src/lang/qbittorrent_ms_MY.ts index 95c7d88ed..d5a23196e 100644 --- a/src/lang/qbittorrent_ms_MY.ts +++ b/src/lang/qbittorrent_ms_MY.ts @@ -4490,8 +4490,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Capaian ke kandungan jauh telah dinafikan (401) + The access to the remote content was denied (403) + Capaian ke kandungan jauh telah dinafikan (403) @@ -4505,8 +4505,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Pelayan jauh memerlukan pengesahihan untuk menawarkan kandungan tetapi kelayakan yang diberi tidak dapat diterima + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Pelayan jauh memerlukan pengesahihan untuk menawarkan kandungan tetapi kelayakan yang diberi tidak dapat diterima (401) diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index 757423262..e36871410 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -4494,8 +4494,8 @@ Minimumskrav: %2. - The access to the remote content was denied (401) - Tilgangen til det eksterne innholdet ble avslått (401) + The access to the remote content was denied (403) + Tilgangen til det eksterne innholdet ble avslått (403) @@ -4509,8 +4509,8 @@ Minimumskrav: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Fjerntjeneren krever autentisering for å levere innholdet, men aksepterte ikke de oppgitte referansene + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Fjerntjeneren krever autentisering for å levere innholdet, men aksepterte ikke de oppgitte referansene (401) diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index 9f4d6a6d3..d7a177fda 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -4493,8 +4493,8 @@ Minimale vereiste: %2. - The access to the remote content was denied (401) - De toegang tot de externe inhoud werd geweigerd (401) + The access to the remote content was denied (403) + De toegang tot de externe inhoud werd geweigerd (403) @@ -4508,8 +4508,8 @@ Minimale vereiste: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - De externe server vereist authenticatie om de inhoud aan te bieden maar de gegeven aanmeldingsgegevens werden niet geaccepteerd + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + De externe server vereist authenticatie om de inhoud aan te bieden maar de gegeven aanmeldingsgegevens werden niet geaccepteerd (401) diff --git a/src/lang/qbittorrent_oc.ts b/src/lang/qbittorrent_oc.ts index a390349af..8e8378655 100644 --- a/src/lang/qbittorrent_oc.ts +++ b/src/lang/qbittorrent_oc.ts @@ -4490,8 +4490,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - L'accès al contengut distant es estat refusat (401) + The access to the remote content was denied (403) + L'accès al contengut distant es estat refusat (403) @@ -4505,8 +4505,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Lo servidor distant demanda una autentificacion abans de distribuir lo contengut, mas los identificants provesits son pas estats acceptats + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Lo servidor distant demanda una autentificacion abans de distribuir lo contengut, mas los identificants provesits son pas estats acceptats (401) diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index ae331d1c8..ffe087a3b 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -4494,8 +4494,8 @@ Minimalny wymóg: %2. - The access to the remote content was denied (401) - Odmówiono dostępu do zdalnego zasobu (401) + The access to the remote content was denied (403) + Odmówiono dostępu do zdalnego zasobu (403) @@ -4509,8 +4509,8 @@ Minimalny wymóg: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Zdalny serwer wymaga uwierzytelnienia w celu dostępu do zasobu, lecz dane uwierzytelniające nie zostały zaakceptowane + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Zdalny serwer wymaga uwierzytelnienia w celu dostępu do zasobu, lecz dane uwierzytelniające nie zostały zaakceptowane (401) diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts index e43804846..49081e1e8 100644 --- a/src/lang/qbittorrent_pt_BR.ts +++ b/src/lang/qbittorrent_pt_BR.ts @@ -4494,8 +4494,8 @@ Requerimento mínimo: %2. - The access to the remote content was denied (401) - O acesso ao conteúdo remoto foi negado (401) + The access to the remote content was denied (403) + O acesso ao conteúdo remoto foi negado (403) @@ -4509,8 +4509,8 @@ Requerimento mínimo: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - O servidor remoto requer autenticação para fornecer os dados, mas as credenciais oferecidas não foram aceitas + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + O servidor remoto requer autenticação para fornecer os dados, mas as credenciais oferecidas não foram aceitas (401) diff --git a/src/lang/qbittorrent_pt_PT.ts b/src/lang/qbittorrent_pt_PT.ts index c4cce2fc1..2870207bb 100644 --- a/src/lang/qbittorrent_pt_PT.ts +++ b/src/lang/qbittorrent_pt_PT.ts @@ -4493,8 +4493,8 @@ Requerimento mínimo: %2. - The access to the remote content was denied (401) - O acesso ao conteúdo remoto foi recusado (401) + The access to the remote content was denied (403) + O acesso ao conteúdo remoto foi recusado (403) @@ -4508,8 +4508,8 @@ Requerimento mínimo: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - O servidor remoto requer autenticação para mostrar o conteúdo, mas as credenciais indicadas não foram aceites + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + O servidor remoto requer autenticação para mostrar o conteúdo, mas as credenciais indicadas não foram aceitesThe remote server requires authentication to serve the content but the credentials provided were not accepted (401) diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index dd368b889..facb0180f 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -4493,8 +4493,8 @@ Cerința minimă: %2. - The access to the remote content was denied (401) - Accesul la conținutul la distanță a fost refuzat (401) + The access to the remote content was denied (403) + Accesul la conținutul la distanță a fost refuzat (403) @@ -4508,8 +4508,8 @@ Cerința minimă: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Servitorul la distanță cere autentificare pentru a furniza conținutul dar credențialele oferite nu au fost acceptate + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Servitorul la distanță cere autentificare pentru a furniza conținutul dar credențialele oferite nu au fost acceptate (401) diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index 9ad0e0d43..f985c185f 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -4494,8 +4494,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - В доступе к внешним данным было отказано (401) + The access to the remote content was denied (403) + В доступе к внешним данным было отказано (403) @@ -4509,8 +4509,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Удалённый сервер требует аутентификации для передачи данных, но указанные учётные данные не были приняты + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Удалённый сервер требует аутентификации для передачи данных, но указанные учётные данные не были приняты (401) diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index bf8746386..c8f43b7d4 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -4494,8 +4494,8 @@ Minimálna verzia: %2. - The access to the remote content was denied (401) - Prístup k vzdialenému obsahu bol odmietnutý (401) + The access to the remote content was denied (403) + Prístup k vzdialenému obsahu bol odmietnutý (403) @@ -4509,8 +4509,8 @@ Minimálna verzia: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Vzdialený server vyžaduje na poskytnutie obsahu autentifikáciu, neprijal ale poskytnuté prihlasovacie údaje. + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Vzdialený server vyžaduje na poskytnutie obsahu autentifikáciu, neprijal ale poskytnuté prihlasovacie údaje (401). diff --git a/src/lang/qbittorrent_sl.ts b/src/lang/qbittorrent_sl.ts index c72d74bf9..138c61869 100644 --- a/src/lang/qbittorrent_sl.ts +++ b/src/lang/qbittorrent_sl.ts @@ -4495,8 +4495,8 @@ Najnižja podprta različica: %2. - The access to the remote content was denied (401) - Dostop do oddaljene vsebine je bil zavrnjen (401) + The access to the remote content was denied (403) + Dostop do oddaljene vsebine je bil zavrnjen (403) @@ -4510,8 +4510,8 @@ Najnižja podprta različica: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Oddaljeni strežnik za serviranje vsebine zahteva overitev, a podanih poveril ni sprejel + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Oddaljeni strežnik za serviranje vsebine zahteva overitev, a podanih poveril ni sprejel (401) diff --git a/src/lang/qbittorrent_sr.ts b/src/lang/qbittorrent_sr.ts index e9ed8fc8b..ef893df85 100644 --- a/src/lang/qbittorrent_sr.ts +++ b/src/lang/qbittorrent_sr.ts @@ -4493,8 +4493,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Приступ удаљеном садржају је одбијен (401) + The access to the remote content was denied (403) + Приступ удаљеном садржају је одбијен (403) @@ -4508,8 +4508,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Удаљени сервер захтева ауторизацију за слање садржаја, али дати акредитиви нису прихваћени + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Удаљени сервер захтева ауторизацију за слање садржаја, али дати акредитиви нису прихваћени (401) diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index a86d2f3bb..7523549e9 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -4494,8 +4494,8 @@ Minimikrav: %2. - The access to the remote content was denied (401) - Åtkomsten till fjärrinnehållet nekades (401) + The access to the remote content was denied (403) + Åtkomsten till fjärrinnehållet nekades (403) @@ -4509,8 +4509,8 @@ Minimikrav: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Fjärrservern kräver autentisering för att servera innehållet men angivna inloggningsuppgifter accepterades inte + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Fjärrservern kräver autentisering för att servera innehållet men angivna inloggningsuppgifter accepterades inte (401) diff --git a/src/lang/qbittorrent_th.ts b/src/lang/qbittorrent_th.ts index c5bac7824..45baf6907 100644 --- a/src/lang/qbittorrent_th.ts +++ b/src/lang/qbittorrent_th.ts @@ -4491,8 +4491,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - การเข้าถึงเนื้อหาระยะไกลถูกปฏิเสธ (401) + The access to the remote content was denied (403) + การเข้าถึงเนื้อหาระยะไกลถูกปฏิเสธ (403) @@ -4506,8 +4506,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - เซิร์ฟเวอร์ระยะไกลต้องการการรับรองความถูกต้องเพื่อให้บริการเนื้อหา แต่ไม่ยอมรับข้อมูลรับรองที่ให้มา + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + เซิร์ฟเวอร์ระยะไกลต้องการการรับรองความถูกต้องเพื่อให้บริการเนื้อหา แต่ไม่ยอมรับข้อมูลรับรองที่ให้มา (401) diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index d6d774917..711d8a5dc 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -4494,8 +4494,8 @@ En düşük gereksinim: %2. - The access to the remote content was denied (401) - Uzak içeriğe erişim reddedildi (401) + The access to the remote content was denied (403) + Uzak içeriğe erişim reddedildi (403) @@ -4509,8 +4509,8 @@ En düşük gereksinim: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Uzak sunucu, içeriği sunmak için kimlik doğrulaması gerektirir ancak verilen kimlik bilgileri kabul edilmedi + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Uzak sunucu, içeriği sunmak için kimlik doğrulaması gerektirir ancak verilen kimlik bilgileri kabul edilmedi (401) diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index 465d3037b..fef5ea247 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -4494,8 +4494,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - Відмовлено у доступі до віддалених даних (401) + The access to the remote content was denied (403) + Відмовлено у доступі до віддалених даних (403) @@ -4509,8 +4509,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Віддалений сервер потребує автентифікації, щоб надати вміст, але не прийняв наданих автентифікаційних даних + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Віддалений сервер потребує автентифікації, щоб надати вміст, але не прийняв наданих автентифікаційних даних (401) diff --git a/src/lang/qbittorrent_uz@Latn.ts b/src/lang/qbittorrent_uz@Latn.ts index eebcefb08..5619845d2 100644 --- a/src/lang/qbittorrent_uz@Latn.ts +++ b/src/lang/qbittorrent_uz@Latn.ts @@ -4488,7 +4488,7 @@ Minimum requirement: %2. - The access to the remote content was denied (401) + The access to the remote content was denied (403) @@ -4503,7 +4503,7 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) diff --git a/src/lang/qbittorrent_vi.ts b/src/lang/qbittorrent_vi.ts index 51153d440..1f7f5b7c0 100644 --- a/src/lang/qbittorrent_vi.ts +++ b/src/lang/qbittorrent_vi.ts @@ -4494,8 +4494,8 @@ Yêu cầu tối thiểu: %2. - The access to the remote content was denied (401) - Quyền truy cập vào nội dung từ xa bị từ chối (401) + The access to the remote content was denied (403) + Quyền truy cập vào nội dung từ xa bị từ chối (403) @@ -4509,8 +4509,8 @@ Yêu cầu tối thiểu: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - Máy chủ từ xa yêu cầu xác thực để phục vụ nội dung nhưng thông tin đăng nhập đã cung cấp không được chấp nhận + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + Máy chủ từ xa yêu cầu xác thực để phục vụ nội dung nhưng thông tin đăng nhập đã cung cấp không được chấp nhận (401) diff --git a/src/lang/qbittorrent_zh_CN.ts b/src/lang/qbittorrent_zh_CN.ts index 33ac2337a..66f265320 100644 --- a/src/lang/qbittorrent_zh_CN.ts +++ b/src/lang/qbittorrent_zh_CN.ts @@ -4494,8 +4494,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - 远程内容访问被拒绝(401) + The access to the remote content was denied (403) + 远程内容访问被拒绝(403) @@ -4509,8 +4509,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - 远程服务器要求身份验证以提供资源,但提供的凭据不被接受 + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + 远程服务器要求身份验证以提供资源,但提供的凭据不被接受(401) diff --git a/src/lang/qbittorrent_zh_HK.ts b/src/lang/qbittorrent_zh_HK.ts index 007ab5fd8..62317a573 100644 --- a/src/lang/qbittorrent_zh_HK.ts +++ b/src/lang/qbittorrent_zh_HK.ts @@ -4493,8 +4493,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - 存取遠端內容被拒絕 (401) + The access to the remote content was denied (403) + 存取遠端內容被拒絕 (403) @@ -4508,8 +4508,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - 為了提供內容,遠端代理伺服器要求認證,但提供的憑證不被接受 + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + 為了提供內容,遠端代理伺服器要求認證,但提供的憑證不被接受 (401) diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts index 844628614..7233530e4 100644 --- a/src/lang/qbittorrent_zh_TW.ts +++ b/src/lang/qbittorrent_zh_TW.ts @@ -4494,8 +4494,8 @@ Minimum requirement: %2. - The access to the remote content was denied (401) - 存取遠端內容被拒絕 (401) + The access to the remote content was denied (403) + 存取遠端內容被拒絕 (403) @@ -4509,8 +4509,8 @@ Minimum requirement: %2. - The remote server requires authentication to serve the content but the credentials provided were not accepted - 為了提供內容,遠端代理伺服器要求認證,但提供的憑證不被接受 + The remote server requires authentication to serve the content but the credentials provided were not accepted (401) + 為了提供內容,遠端代理伺服器要求認證,但提供的憑證不被接受 (401)