Polish translation added. (#226)

* Polish translation added.

* Update CHANGELOG.md

* Update CHANGELOG.md

---------

Co-authored-by: Pаramtamtām <7326800+tarampampam@users.noreply.github.com>
This commit is contained in:
wielorzeczownik 2023-09-28 08:51:55 +02:00 committed by GitHub
parent caf4e33193
commit 8006cce4b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 82 additions and 1 deletions

View File

@ -4,6 +4,14 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver].
## UNRELEASED
### Added
- Error pages now translated into 🇵🇱 [#226]
[#226]:https://github.com/tarampampam/error-pages/pull/226
## v2.25.0
### Added

View File

@ -37,7 +37,7 @@ One day you may want to replace the standard error pages of your HTTP server wit
- Error pages can be [embedded into your own `nginx`][wiki-usage-with-nginx] docker image
- Fully configurable (take a look at the [configuration file](https://github.com/tarampampam/error-pages/blob/master/error-pages.yml) and [project Wiki][wiki])
- Distributed using docker image and compiled binary files
- Localized (🇺🇸, 🇫🇷, 🇺🇦, 🇷🇺, 🇵🇹, 🇳🇱, 🇩🇪, 🇪🇸, 🇨🇳, 🇮🇩) HTML error pages (translation process [described here](https://github.com/tarampampam/error-pages/tree/master/l10n) - other translations are welcome!)
- Localized (🇺🇸, 🇫🇷, 🇺🇦, 🇷🇺, 🇵🇹, 🇳🇱, 🇩🇪, 🇪🇸, 🇨🇳, 🇮🇩, 🇵🇱) HTML error pages (translation process [described here](https://github.com/tarampampam/error-pages/tree/master/l10n) - other translations are welcome!)
## 🧩 Install

View File

@ -12,6 +12,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Error',
zh: '错误',
id: 'Kesalahan',
pl: 'Błąd',
},
'Good luck': {
fr: 'Bonne chance',
@ -23,6 +24,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Buena Suerte',
zh: '祝好运',
id: 'Semoga berhasil!',
pl: 'Powodzenia',
},
'UH OH': {
fr: 'Oups',
@ -34,6 +36,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Oups',
zh: '哎呀',
id: 'Ups',
pl: 'Ojej',
},
'Request details': {
fr: 'Détails de la requête',
@ -45,6 +48,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Detalles de la petición',
zh: '请求详情',
id: 'Rincian permintaan',
pl: 'Poproś o szczegóły',
},
'Double-check the URL': {
fr: 'Vérifiez lURL',
@ -56,6 +60,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Verifique la url',
zh: '请再次检查地址',
id: 'Periksa URL',
pl: 'Sprawdź adres URL',
},
'Alternatively, go back': {
fr: 'Essayer de revenir en arrière',
@ -67,6 +72,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Como alternativa, vuelva atrás',
zh: '或返回上一页',
id: 'Atau, kembali',
pl: 'Alternatywnie wróć',
},
'Here\'s what might have happened': {
fr: 'Voici ce qui aurait pu se passer',
@ -78,6 +84,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Esto es lo que ha podido pasar',
zh: '可能原因有',
id: 'Inilah yang bisa saja terjadi',
pl: 'Oto, co mogło się wydarzyć',
},
'You may have mistyped the URL': {
fr: 'Vous avez peut-être mal tapé lURL',
@ -89,6 +96,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Igual ha escrito mal la URL',
zh: '您可能输入了错误的地址',
id: 'Anda mungkin tersalah memasukkan URL',
pl: 'Być może błędnie wpisałeś adres URL',
},
'The site was moved': {
fr: 'Le site a été déplacé',
@ -100,6 +108,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El sitio se ha movido',
zh: '站点已被转移',
id: 'Halaman dipindahkan',
pl: 'Witryna została przeniesiona',
},
'It was never here': {
fr: 'Il na jamais été ici',
@ -111,6 +120,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Nunca ha estado aquí',
zh: '站点从未存在',
id: 'Itu Tidak pernah di sini',
pl: 'Nigdy jej nie było',
},
'Bad Request': {
fr: 'Mauvaise requête',
@ -122,6 +132,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Petición inválida',
zh: '错误请求',
id: 'Permintaan yang salah',
pl: 'Nieprawidłowe żądanie',
},
'The server did not understand the request': {
fr: 'Le serveur ne comprend pas la requête',
@ -133,6 +144,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El servidor no entendió la petición',
zh: '服务器不理解该请求',
id: 'Server tidak memahami permintaan',
pl: 'Serwer nie zrozumiał żądania',
},
'Unauthorized': {
fr: 'Non autorisé',
@ -144,6 +156,7 @@ Object.defineProperty(window, 'l10n', {
es: 'No autorizado',
zh: '未经授权',
id: 'Tidak diotorisasi',
pl: 'Nieautoryzowany',
},
'The requested page needs a username and a password': {
fr: 'La page demandée nécessite un nom dutilisateur et un mot de passe',
@ -155,6 +168,7 @@ Object.defineProperty(window, 'l10n', {
es: 'La página solicitada necesita un usuario y una contraseña',
zh: '请求的页面需要用户名和密码',
id: 'Halaman yang diminta membutuhkan nama pengguna dan kata sandi',
pl: 'Żądana strona wymaga podania nazwy użytkownika i hasła',
},
'Forbidden': {
fr: 'Interdit',
@ -166,6 +180,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Prohibido',
zh: '禁止访问',
id: 'Dilarang',
pl: 'Zabroniony',
},
'Access is forbidden to the requested page': {
fr: 'Accès interdit à la page demandée',
@ -177,6 +192,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El acceso está prohibido para la página solicitada',
zh: '禁止访问请求的页面',
id: 'Akses dilarang ke halaman yang diminta',
pl: 'Dostęp do żądanej strony jest zabroniony',
},
'Not Found': {
fr: 'Introuvable',
@ -188,6 +204,7 @@ Object.defineProperty(window, 'l10n', {
es: 'No encontrado',
zh: '未找到',
id: 'Tidak ditemukan',
pl: 'Nie znaleziono',
},
'The server can not find the requested page': {
fr: 'Le serveur ne peut trouver la page demandée',
@ -199,6 +216,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El servidor no puede encontrar la página solicitada',
zh: '服务器找不到请求的页面',
id: 'Server tidak dapat menemukan halaman yang diminta',
pl: 'Serwer nie może znaleźć żądanej strony',
},
'Method Not Allowed': {
fr: 'Méthode Non Autorisée',
@ -210,6 +228,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Método no permitido',
zh: '方法不被允许',
id: 'Metode tidak diizinkan',
pl: 'Niedozwolona metoda',
},
'The method specified in the request is not allowed': {
fr: 'La méthode spécifiée dans la requête nest pas autorisée',
@ -221,6 +240,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El método especificado en la petición no está permitido',
zh: '请求指定的方法不被允许',
id: 'Metode dalam permintaan tidak diizinkan',
pl: 'Metoda określona w żądaniu jest niedozwolona',
},
'Proxy Authentication Required': {
fr: 'Authentification proxy requise',
@ -232,6 +252,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Autenticación de proxy requerida',
zh: '需要代理服务器身份验证',
id: 'Diperlukan otentikasi proxy',
pl: 'Wymagane uwierzytelnianie proxy',
},
'You must authenticate with a proxy server before this request can be served': {
fr: 'Vous devez vous authentifier avec un serveur proxy avant que cette requête puisse être servie',
@ -243,6 +264,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Debes autentificarte con un servidor proxy antes de que esta petición pueda ser atendida',
zh: '您必须对代理服务器进行身份验证,然后才能让请求得到处理',
id: 'Anda harus mengautentikasi dengan server proxy sebelum permintaan ini dapat dilayani',
pl: 'Musisz uwierzytelnić się na serwerze proxy, zanim to żądanie będzie mogło zostać obsłużone',
},
'Request Timeout': {
fr: 'Requête expiré',
@ -254,6 +276,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Tiempo límite de la petición excedido',
zh: '请求超时',
id: 'Meminta batas waktu',
pl: 'Przekroczenie limitu czasu żądania',
},
'The request took longer than the server was prepared to wait': {
fr: 'La requête prend plus de temps que prévu',
@ -265,6 +288,7 @@ Object.defineProperty(window, 'l10n', {
es: 'La petición esta tardando más de lo que el servidor estaba preparado para esperar',
zh: '请求用时超过了服务器设置的最长等待时间',
id: 'Permintaan memakan waktu lebih lama dari yang bisa ditunggu oleh server',
pl: 'Żądanie trwało dłużej niż serwer był gotowy czekać',
},
'Conflict': {
fr: 'Conflit',
@ -276,6 +300,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Conflicto',
zh: '冲突',
id: 'Konflik',
pl: 'Konflikt',
},
'The request could not be completed because of a conflict': {
fr: 'La requête na pas pu être complétée à cause dun conflit',
@ -287,6 +312,7 @@ Object.defineProperty(window, 'l10n', {
es: 'La petición no ha podido ser completada por un conflicto',
zh: '由于冲突,请求无法完成',
id: 'Permintaan tidak dapat diselesaikan karena adanya konflik',
pl: 'Żądanie nie mogło zostać wykonane z powodu konfliktu',
},
'Gone': {
fr: 'Supprimé',
@ -298,6 +324,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Eliminado',
zh: '已移除',
id: 'Menghilang',
pl: 'Usunięto',
},
'The requested page is no longer available': {
fr: 'La page demandée nest plus disponible',
@ -309,6 +336,7 @@ Object.defineProperty(window, 'l10n', {
es: 'La página solicitada no está ya disponible',
zh: '请求的页面不再可用',
id: 'Halaman yang diminta tidak lagi tersedia',
pl: 'Żądana strona nie jest już dostępna',
},
'Length Required': {
fr: 'Longueur requise',
@ -320,6 +348,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Longitud requerida',
zh: '需要长度',
id: 'Panjang yang diperlukan',
pl: 'Wymagana długość',
},
'The "Content-Length" is not defined. The server will not accept the request without it': {
fr: 'Le "Content-Length" nest pas défini. Le serveur ne prendra pas en compte la requête',
@ -331,6 +360,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El "Content-Legth" no eta definido. Este servidor no aceptará la petición sin él',
zh: '未指定Content-Length(内容长度)。服务器将不接受不包含此头信息的请求',
id: '"Content-Length" tidak ditentukan. Server tidak akan menerima permintaan tanpa itu',
pl: 'Wartość "Content-Length" nie jest zdefiniowana. Serwer nie zaakceptuje żądania bez tego parametru',
},
'Precondition Failed': {
fr: 'Échec de la condition préalable',
@ -341,6 +371,7 @@ Object.defineProperty(window, 'l10n', {
de: 'Vorbedingung fehlgeschlagen',
es: 'Precondición fallida',
zh: '前置条件判定失败',
pl: 'Niespełnienie warunku wstępnego',
},
'The pre condition given in the request evaluated to false by the server': {
fr: 'La précondition donnée dans la requête a été évaluée comme étant fausse par le serveur',
@ -352,6 +383,7 @@ Object.defineProperty(window, 'l10n', {
es: 'La precondición ha sido evaluada como negativa para esta petición por el servidor',
zh: '服务器评估请求中给出的前置条件的结果为false(假)',
id: 'Prakondisi gagal',
pl: 'Warunek wstępny podany w żądaniu został oceniony przez serwer jako nieprawidłowy',
},
'Payload Too Large': {
fr: 'Charge trop volumineuse',
@ -363,6 +395,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Carga muy grande',
zh: '请求体过大',
id: 'Muatan terlalu besar',
pl: 'Żądanie jest zbyt duże',
},
'The server will not accept the request, because the request entity is too large': {
fr: 'Le serveur ne prendra pas en compte la requête, car lentité de la requête est trop volumineuse',
@ -374,6 +407,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El servidor no aceptará esta petición, porque la carga es demasiado grande',
zh: '请求体过大,服务器将不接受该请求',
id: 'Server tidak akan menerima permintaan, karena entitas permintaan terlalu besar',
pl: 'Serwer nie zaakceptuje żądania, ponieważ żądanie jest zbyt duże',
},
'Requested Range Not Satisfiable': {
fr: 'Requête non satisfaisante',
@ -385,6 +419,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Intervalo solicitado no satisfactorio',
zh: '不满足请求范围',
id: 'Rentang yang diminta tidak dapat dipenuhi',
pl: 'Żądany zakres nie jest satysfakcjonujący',
},
'The requested byte range is not available and is out of bounds': {
fr: 'Le byte range demandé nest pas disponible et est hors des limites',
@ -396,6 +431,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El intervalo de bytes requerido no está disponible o se encuentra fuera de los límites',
zh: '请求的字节范围不可用,超出边界',
id: 'Rentang byte yang diminta tidak tersedia dan di luar batas',
pl: 'Żądany zakres bajtów nie jest dostępny i znajduje się poza zakresem',
},
'I\'m a teapot': {
fr: 'Je suis une théière',
@ -407,6 +443,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Soy una tetera',
zh: '我是一只茶壶',
id: 'Saya adalah teko',
pl: 'Jestem czajniczkiem',
},
'Attempt to brew coffee with a teapot is not supported': {
fr: 'Tenter de préparer du café avec une théière nest pas pris en charge',
@ -418,6 +455,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Intentar hacer un café en una tetera no está soportado',
zh: '用茶壶泡咖啡不受支持',
id: 'Upaya menyeduh kopi dengan teko tidak didukung',
pl: 'Próba zaparzenia kawy za pomocą czajniczka nie jest obsługiwana',
},
'Too Many Requests': {
fr: 'Trop de requêtes',
@ -429,6 +467,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Demasiadas peticiones',
zh: '请求过多',
id: 'Terlalu banyak permintaan',
pl: 'Zbyt wiele żądań',
},
'Too many requests in a given amount of time': {
fr: 'Trop de requêtes dans un délai donné',
@ -440,6 +479,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Demasiadas peticiones en un determinado periodo de tiempo',
zh: '在给定的时间内发送了过多请求',
id: 'Terlalu banyak permintaan dalam waktu tertentu',
pl: 'Zbyt wiele żądań w określonym czasie',
},
'Internal Server Error': {
fr: 'Erreur interne du serveur',
@ -451,6 +491,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Error Interno',
zh: '内部服务器错误',
id: 'Kesalahan server internal',
pl: 'Wewnętrzny błąd serwera',
},
'The server met an unexpected condition': {
fr: 'Le serveur a rencontré une condition inattendue',
@ -462,6 +503,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El servidor ha encontrado una condición no esperada',
zh: '服务器遇到了意外情况',
id: 'Server mengalami kondisi yang tidak terduga',
pl: 'Serwer napotkał nieoczekiwany stan',
},
'Bad Gateway': {
fr: 'Mauvaise passerelle',
@ -473,6 +515,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Puerta de enlace no valida',
zh: '无效网关',
id: 'Gateway yang buruk',
pl: 'Błąd bramki',
},
'The server received an invalid response from the upstream server': {
fr: 'Le serveur a reçu une réponse invalide du serveur distant',
@ -484,6 +527,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El servidor ha recibido una respuesta no válida del servidor de origen',
zh: '服务器从上游服务器收到了无效的响应',
id: 'Server menerima respons yang tidak valid dari server induk',
pl: 'Serwer otrzymał nieprawidłową odpowiedź od serwera nadrzędnego',
},
'Service Unavailable': {
fr: 'Service indisponible',
@ -495,6 +539,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Servicio no disponible',
zh: '服务不可用',
id: 'Layanan tidak tersedia',
pl: 'Serwis niedostępny',
},
'The server is temporarily overloading or down': {
fr: 'Le serveur est temporairement en surcharge ou indisponible',
@ -506,6 +551,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El servidor está temporalmente sobrecargado o inactivo',
zh: '服务器暂时过载或不可用',
id: 'Server untuk sementara kelebihan beban atau tidak tersedia',
pl: 'Serwer jest tymczasowo przeciążony lub wyłączony',
},
'Gateway Timeout': {
fr: 'Expiration Passerelle',
@ -517,6 +563,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Tiempo límite de puerta de enlace excedido',
zh: '网关超时',
id: 'Batas waktu gateway',
pl: 'Przekroczenie limitu czasu bramki',
},
'The gateway has timed out': {
fr: 'Le temps dattente de la passerelle est dépassé',
@ -528,6 +575,7 @@ Object.defineProperty(window, 'l10n', {
es: 'La puerta de enlace ha sobrepasado el tiempo límite',
zh: '网关响应已经超时',
id: 'Sambungan ke server induk telah kedaluwarsa',
pl: 'Bramka przekroczyła limit czasu',
},
'HTTP Version Not Supported': {
fr: 'Version HTTP non prise en charge',
@ -539,6 +587,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Versión de HTTP no soportada',
zh: 'HTTP版本不受支持',
id: 'Versi HTTP tidak didukung',
pl: 'Wersja HTTP nie jest obsługiwana',
},
'The server does not support the "http protocol" version': {
fr: 'Le serveur ne supporte pas la version du protocole HTTP',
@ -550,6 +599,7 @@ Object.defineProperty(window, 'l10n', {
es: 'El servidor no soporta la versión del protocolo HTTP',
zh: '服务器不支持该HTTP协议版本',
id: 'Server tidak mendukung versi HTTP ini',
pl: 'Serwer nie obsługuje wersji "protokołu http"',
},
'Host': {
@ -562,6 +612,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Host',
zh: '主机',
id: 'Host',
pl: 'Host',
},
'Original URI': {
fr: 'URI dorigine',
@ -573,6 +624,7 @@ Object.defineProperty(window, 'l10n', {
es: 'URI original',
zh: '原始URI',
id: 'URL asli',
pl: 'Oryginalny URI',
},
'Forwarded for': {
fr: 'Transmis pour',
@ -584,6 +636,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Remitido por',
zh: '转发自',
id: 'Diteruskan untuk',
pl: 'Przekazane do',
},
'Namespace': {
fr: 'Espace de noms',
@ -595,6 +648,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Namespace',
zh: '命名空间',
id: 'Ruang nama',
pl: 'Przestrzeń nazw',
},
'Ingress name': {
fr: 'Nom ingress',
@ -606,6 +660,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Nombre Ingress',
zh: '入口名',
id: 'Nama ingress',
pl: 'Nazwa wejścia',
},
'Service name': {
fr: 'Nom du service',
@ -617,6 +672,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Nombre del servicio',
zh: '服务名',
id: 'Nama layanan',
pl: 'Nazwa usługi',
},
'Service port': {
fr: 'Port du service',
@ -628,6 +684,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Puerto del servicio',
zh: '服务端口',
id: 'Port layanan',
pl: 'Port usługi',
},
'Request ID': {
fr: 'Identifiant de la requête',
@ -639,6 +696,7 @@ Object.defineProperty(window, 'l10n', {
es: 'ID de la petición',
zh: '请求ID',
id: 'ID permintaan',
pl: 'Identyfikator żądania',
},
'Timestamp': {
fr: 'Horodatage',
@ -650,6 +708,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Timestamp',
zh: '时间戳',
id: 'Cap waktu',
pl: 'Sygnatura czasowa',
},
'client-side error': {
@ -662,6 +721,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Error del lado del cliente',
zh: '客户端错误',
id: 'Kesalahan sisi klien',
pl: 'błąd po stronie klienta',
},
'server-side error': {
fr: 'Erreur Serveur',
@ -673,6 +733,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Error del lado del servidor',
zh: '服务端错误',
id: 'Kesalahan sisi server',
pl: 'błąd po stronie serwera',
},
'Your Client': {
@ -685,6 +746,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Tu cliente',
zh: '您的客户端',
id: 'Klien Anda',
pl: 'Klient',
},
'Network': {
fr: 'Réseau',
@ -696,6 +758,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Red',
zh: '网络',
id: 'Jaringan',
pl: 'Sieć',
},
'Web Server': {
fr: 'Serveur Web',
@ -707,6 +770,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Servidor web',
zh: 'Web服务器',
id: 'Server web',
pl: 'Serwer WWW',
},
'What happened?': {
fr: 'Que sest-il passé ?',
@ -718,6 +782,7 @@ Object.defineProperty(window, 'l10n', {
es: '¿Que ha pasado?',
zh: '发生了什么?',
id: 'Apa yang terjadi?',
pl: 'Co się stało?',
},
'What can i do?': {
fr: 'Que puis-je faire ?',
@ -729,6 +794,7 @@ Object.defineProperty(window, 'l10n', {
es: '¿Que puedo hacer?',
zh: '我能做什么?',
id: 'Apa yang bisa saya lakukan?',
pl: 'Co mogę zrobić?',
},
'Please try again in a few minutes': {
fr: 'Veuillez réessayer dans quelques minutes',
@ -740,6 +806,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Por favor, intente nuevamente en unos minutos',
zh: '请在几分钟后重试',
id: 'Silakan coba lagi dalam beberapa menit',
pl: 'Spróbuj ponownie za kilka minut',
},
'Working': {
fr: 'Opérationnel',
@ -751,6 +818,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Trabajando',
zh: '正常运行',
id: 'Fungsi',
pl: 'Działa',
},
'Unknown': {
fr: 'Inconnu',
@ -762,6 +830,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Desconocido',
zh: '未知',
id: 'Tidak diketahui',
pl: 'Nieznany',
},
'Please try to change the request method, headers, payload, or URL': {
fr: 'Veuillez essayer de changer la méthode de requête, les en-têtes, le contenu ou lURL',
@ -773,6 +842,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Por favor intente cambiar el método de la petición, cabeceras, carga o URL',
zh: '请尝试更改请求方法、标头、有效负载或URL',
id: 'Coba lagi dengan metode, header, muatan, atau URL yang berbeda',
pl: 'Spróbuj zmienić metodę żądania, nagłówki, żądanie lub adres URL',
},
'Please check your authorization data': {
fr: 'Veuillez vérifier vos données dautorisation',
@ -784,6 +854,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Verifique sus datos de autorización',
zh: '请检查您的授权数据',
id: 'Memeriksa detail autentikasi',
pl: 'Sprawdź swoje dane autoryzacyjne',
},
'Please double-check the URL and try again': {
fr: 'Veuillez vérifier lURL et réessayer',
@ -795,6 +866,7 @@ Object.defineProperty(window, 'l10n', {
es: 'Verifique de nuevo la URL y vuelva a probar',
zh: '请再次检查URL并重试',
id: 'Periksa URL dan coba lagi',
pl: 'Sprawdź adres URL i spróbuj ponownie',
},
};

View File

@ -20,3 +20,4 @@ By default, pages markup contains strings in English (`en` locale). If you want
- 🇪🇸 Spanish by [@Runig006](https://github.com/Runig006)
- 🇨🇳 Chinese by [@CDN18](https://github.com/CDN18)
- 🇮🇩 Indonesian by [@getwisp](https://github.com/getwisp)
- 🇵🇱 Polish by [@wielorzeczownik](https://github.com/wielorzeczownik)