From d99608e3a8784767f546e8acb6af7f76b3dbfb40 Mon Sep 17 00:00:00 2001 From: Giovanni Pellerano Date: Sun, 14 Apr 2024 21:30:10 +0200 Subject: [PATCH 1/6] Set FD_CLOEXEC on sockets --- backend/globaleaks/utils/sock.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/backend/globaleaks/utils/sock.py b/backend/globaleaks/utils/sock.py index 80f32bffca..83df5adaba 100644 --- a/backend/globaleaks/utils/sock.py +++ b/backend/globaleaks/utils/sock.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- - +import fcntl import socket from twisted.internet import abstract @@ -29,6 +29,10 @@ def open_socket_listen(ip, port): s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) s.setblocking(False) + + flags = fcntl.fcntl(s, fcntl.F_GETFD) + fcntl.fcntl(s, fcntl.F_SETFD, flags | fcntl.FD_CLOEXEC) + s.bind((ip, port)) s.listen(1024) return s From 8ebb56ac6adb8afc1524337bc8e59e302f520a70 Mon Sep 17 00:00:00 2001 From: Giovanni Pellerano Date: Sun, 14 Apr 2024 21:37:44 +0200 Subject: [PATCH 2/6] Extend listening backlog to 4096 --- backend/globaleaks/utils/sock.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/globaleaks/utils/sock.py b/backend/globaleaks/utils/sock.py index 83df5adaba..fb65740e59 100644 --- a/backend/globaleaks/utils/sock.py +++ b/backend/globaleaks/utils/sock.py @@ -34,7 +34,8 @@ def open_socket_listen(ip, port): fcntl.fcntl(s, fcntl.F_SETFD, flags | fcntl.FD_CLOEXEC) s.bind((ip, port)) - s.listen(1024) + s.listen(4096) + return s From cd6e775b53d9582a4316c608cd13091fca181e0f Mon Sep 17 00:00:00 2001 From: Giovanni Pellerano Date: Sun, 14 Apr 2024 22:14:52 +0200 Subject: [PATCH 3/6] Update translations --- client/app/data/l10n/am.json | 2 +- client/app/data/l10n/ar.json | 4 ++-- client/app/data/l10n/az.json | 2 +- client/app/data/l10n/ba.json | 2 +- client/app/data/l10n/be.json | 2 +- client/app/data/l10n/bg.json | 2 +- client/app/data/l10n/bn.json | 2 +- client/app/data/l10n/bo.json | 2 +- client/app/data/l10n/bs.json | 2 +- client/app/data/l10n/ca.json | 2 +- client/app/data/l10n/ca@valencia.json | 2 +- client/app/data/l10n/ce.json | 2 +- client/app/data/l10n/crh.json | 2 +- client/app/data/l10n/cs.json | 2 +- client/app/data/l10n/da.json | 2 +- client/app/data/l10n/de.json | 4 ++-- client/app/data/l10n/dv.json | 2 +- client/app/data/l10n/el.json | 2 +- client/app/data/l10n/es.json | 2 +- client/app/data/l10n/et.json | 2 +- client/app/data/l10n/eu.json | 2 +- client/app/data/l10n/fa.json | 2 +- client/app/data/l10n/fa_AF.json | 2 +- client/app/data/l10n/fi.json | 2 +- client/app/data/l10n/fr.json | 6 +++--- client/app/data/l10n/gl.json | 2 +- client/app/data/l10n/he.json | 2 +- client/app/data/l10n/hr_HR.json | 2 +- client/app/data/l10n/hu_HU.json | 2 +- client/app/data/l10n/hy.json | 2 +- client/app/data/l10n/id.json | 2 +- client/app/data/l10n/it.json | 2 +- client/app/data/l10n/ja.json | 2 +- client/app/data/l10n/ka.json | 2 +- client/app/data/l10n/kk.json | 2 +- client/app/data/l10n/km.json | 2 +- client/app/data/l10n/ko.json | 2 +- client/app/data/l10n/ky.json | 2 +- client/app/data/l10n/lo.json | 2 +- client/app/data/l10n/lt.json | 2 +- client/app/data/l10n/lv.json | 2 +- client/app/data/l10n/mg.json | 2 +- client/app/data/l10n/mk.json | 2 +- client/app/data/l10n/ms.json | 2 +- client/app/data/l10n/my.json | 2 +- client/app/data/l10n/nb_NO.json | 2 +- client/app/data/l10n/nl.json | 2 +- client/app/data/l10n/pl.json | 2 +- client/app/data/l10n/ps.json | 2 +- client/app/data/l10n/pt_BR.json | 2 +- client/app/data/l10n/pt_PT.json | 2 +- client/app/data/l10n/ro.json | 2 +- client/app/data/l10n/ru.json | 2 +- client/app/data/l10n/sk.json | 2 +- client/app/data/l10n/sl_SI.json | 4 ++-- client/app/data/l10n/sq.json | 4 ++-- client/app/data/l10n/sr_ME.json | 2 +- client/app/data/l10n/sr_ME@latin.json | 2 +- client/app/data/l10n/sr_RS.json | 2 +- client/app/data/l10n/sr_RS@latin.json | 2 +- client/app/data/l10n/sv.json | 2 +- client/app/data/l10n/sw.json | 2 +- client/app/data/l10n/ta.json | 2 +- client/app/data/l10n/tg.json | 2 +- client/app/data/l10n/th.json | 2 +- client/app/data/l10n/tk.json | 2 +- client/app/data/l10n/tr.json | 6 +++--- client/app/data/l10n/tt.json | 2 +- client/app/data/l10n/ug.json | 2 +- client/app/data/l10n/ug@Cyrl.json | 2 +- client/app/data/l10n/ug@Latin.json | 2 +- client/app/data/l10n/uk.json | 2 +- client/app/data/l10n/ur.json | 2 +- client/app/data/l10n/uz.json | 2 +- client/app/data/l10n/vi.json | 2 +- client/app/data/l10n/zh_CN.json | 2 +- client/app/data/l10n/zh_HK.json | 2 +- client/app/data/l10n/zh_TW.json | 2 +- client/app/translations.html | 1 - client/pot/am.po | 10 +++++----- client/pot/ar.po | 12 ++++++------ client/pot/az.po | 10 +++++----- client/pot/ba.po | 10 +++++----- client/pot/be.po | 10 +++++----- client/pot/bg.po | 10 +++++----- client/pot/bn.po | 10 +++++----- client/pot/bo.po | 10 +++++----- client/pot/bs.po | 10 +++++----- client/pot/ca.po | 16 ++++++++-------- client/pot/ca@valencia.po | 16 ++++++++-------- client/pot/ce.po | 10 +++++----- client/pot/crh.po | 10 +++++----- client/pot/cs.po | 16 ++++++++-------- client/pot/da.po | 10 +++++----- client/pot/de.po | 14 +++++++------- client/pot/dv.po | 10 +++++----- client/pot/el.po | 10 +++++----- client/pot/en.po | 17 +++++++---------- client/pot/es.po | 16 ++++++++-------- client/pot/et.po | 10 +++++----- client/pot/eu.po | 10 +++++----- client/pot/fa.po | 10 +++++----- client/pot/fa_AF.po | 10 +++++----- client/pot/fi.po | 16 ++++++++-------- client/pot/fr.po | 16 ++++++++-------- client/pot/gl.po | 10 +++++----- client/pot/he.po | 10 +++++----- client/pot/hr_HR.po | 10 +++++----- client/pot/hu_HU.po | 10 +++++----- client/pot/hy.po | 10 +++++----- client/pot/id.po | 10 +++++----- client/pot/it.po | 12 ++++++------ client/pot/ja.po | 10 +++++----- client/pot/ka.po | 10 +++++----- client/pot/kk.po | 10 +++++----- client/pot/km.po | 10 +++++----- client/pot/ko.po | 10 +++++----- client/pot/ky.po | 10 +++++----- client/pot/lo.po | 10 +++++----- client/pot/lt.po | 10 +++++----- client/pot/lv.po | 10 +++++----- client/pot/mg.po | 10 +++++----- client/pot/mk.po | 10 +++++----- client/pot/ms.po | 10 +++++----- client/pot/my.po | 10 +++++----- client/pot/nb_NO.po | 10 +++++----- client/pot/nl.po | 10 +++++----- client/pot/pl.po | 10 +++++----- client/pot/ps.po | 10 +++++----- client/pot/pt_BR.po | 16 ++++++++-------- client/pot/pt_PT.po | 16 ++++++++-------- client/pot/ro.po | 10 +++++----- client/pot/ru.po | 10 +++++----- client/pot/sk.po | 10 +++++----- client/pot/sl_SI.po | 14 +++++++------- client/pot/sq.po | 14 +++++++------- client/pot/sr_ME.po | 10 +++++----- client/pot/sr_ME@latin.po | 10 +++++----- client/pot/sr_RS.po | 10 +++++----- client/pot/sr_RS@latin.po | 10 +++++----- client/pot/sv.po | 10 +++++----- client/pot/sw.po | 10 +++++----- client/pot/ta.po | 10 +++++----- client/pot/tg.po | 10 +++++----- client/pot/th.po | 10 +++++----- client/pot/tk.po | 10 +++++----- client/pot/tr.po | 16 ++++++++-------- client/pot/tt.po | 10 +++++----- client/pot/ug.po | 10 +++++----- client/pot/ug@Cyrl.po | 10 +++++----- client/pot/ug@Latin.po | 10 +++++----- client/pot/uk.po | 10 +++++----- client/pot/ur.po | 10 +++++----- client/pot/uz.po | 10 +++++----- client/pot/vi.po | 10 +++++----- client/pot/zh_CN.po | 12 ++++++------ client/pot/zh_HK.po | 10 +++++----- client/pot/zh_TW.po | 10 +++++----- 158 files changed, 519 insertions(+), 523 deletions(-) diff --git a/client/app/data/l10n/am.json b/client/app/data/l10n/am.json index 75402cf3cb..0209c8b103 100644 --- a/client/app/data/l10n/am.json +++ b/client/app/data/l10n/am.json @@ -23,7 +23,7 @@ "Details": "ዝርዝሮች", "Platform wizard": "የመሳርያ ስርዓት አዋቂ", "Label the report": "ሪፖርቱን ሰይሙ", - "Postpone the expiration date": "መቃጠያ ቀን አስተላልፍ", + "Edit the expiration date": "መቃጠያ ቀን አስተላልፍ", "Select all": "ሁሉን ምረጡ", "Deselect all": "ሁሉንም አትምረጡ", "Refresh": "አድሱ", diff --git a/client/app/data/l10n/ar.json b/client/app/data/l10n/ar.json index 5abbfcd307..14f9853bb9 100644 --- a/client/app/data/l10n/ar.json +++ b/client/app/data/l10n/ar.json @@ -23,7 +23,7 @@ "Details": "تفاصيل", "Platform wizard": "معالج المنصة", "Label the report": "صنّف البلاغ", - "Postpone the expiration date": "تأجيل تاريخ نهاية الصلوحية", + "Edit the expiration date": "تأجيل تاريخ نهاية الصلوحية", "Select all": "اختر الكل", "Deselect all": "الغاء كل الاختيارات", "Refresh": "تحديث", @@ -430,7 +430,7 @@ "The specified old password is not valid": "كلمة المرور القديمة المحددة غير صالحة", "Resource can only be accessed via the Tor network": "يمكن الوصول إلى المحتوى فقط ضمن شبكة Tor", "The upload request exceeds the size limit": "الملفات المراد رفعها تتخطى السعة المسموح بها.", - "A user with this username already exists": "A user with this username already exists", + "A user with this username already exists": "هناك شخص يستخدم اسم المستخدم هذا بالفعل", "You are operating on behalf of a whistleblower.": "أنت تعمل بالنيابة عن مخبر.", "Current password": "كلمة السر الحالية", "New password": "كلمة السر الجديدة", diff --git a/client/app/data/l10n/az.json b/client/app/data/l10n/az.json index e3bc0cc2be..f791b62616 100644 --- a/client/app/data/l10n/az.json +++ b/client/app/data/l10n/az.json @@ -23,7 +23,7 @@ "Details": "Detallar", "Platform wizard": "Proqram quraşdırması", "Label the report": "Hesabatı etiketlə", - "Postpone the expiration date": "Son istifadə tarixini dəyiş", + "Edit the expiration date": "Son istifadə tarixini dəyiş", "Select all": "Hamısını seç", "Deselect all": "Hamısını seçmə", "Refresh": "Yenilə", diff --git a/client/app/data/l10n/ba.json b/client/app/data/l10n/ba.json index c6f059fe8c..b1ded05998 100644 --- a/client/app/data/l10n/ba.json +++ b/client/app/data/l10n/ba.json @@ -23,7 +23,7 @@ "Details": "Аныҡлауҙар", "Platform wizard": "Платформа оҫтаһы", "Label the report": "Материалдар бирелешен билдәләү", - "Postpone the expiration date": "Мөҙҙәт тамамланышын кисектереү", + "Edit the expiration date": "Мөҙҙәт тамамланышын кисектереү", "Select all": "Тотошлай һайларға", "Deselect all": "Һайланғанды кире ҡағыу", "Refresh": "Яңыртыу", diff --git a/client/app/data/l10n/be.json b/client/app/data/l10n/be.json index 72448c47e6..c61fd9b405 100644 --- a/client/app/data/l10n/be.json +++ b/client/app/data/l10n/be.json @@ -23,7 +23,7 @@ "Details": "Падрабязнасці", "Platform wizard": "Майстар наладу платформы", "Label the report": "Тытул заявы", - "Postpone the expiration date": "Перанесці сканчэнне тэрміну дзеяння", + "Edit the expiration date": "Перанесці сканчэнне тэрміну дзеяння", "Select all": "Выбраць усё", "Deselect all": "Адмяніць выбар ўсяго", "Refresh": "Абнавіць", diff --git a/client/app/data/l10n/bg.json b/client/app/data/l10n/bg.json index de6b2d4e5b..81eb2ef6ec 100644 --- a/client/app/data/l10n/bg.json +++ b/client/app/data/l10n/bg.json @@ -23,7 +23,7 @@ "Details": "По-подробно", "Platform wizard": "Съветник за платформата", "Label the report": "Етикиране на доклада", - "Postpone the expiration date": "Отлагане на датата на изтичане", + "Edit the expiration date": "Отлагане на датата на изтичане", "Select all": "Избиране на всички", "Deselect all": "Отмяна на избора на всички", "Refresh": "Опресняване", diff --git a/client/app/data/l10n/bn.json b/client/app/data/l10n/bn.json index 6d7fa7bca6..2355698234 100644 --- a/client/app/data/l10n/bn.json +++ b/client/app/data/l10n/bn.json @@ -23,7 +23,7 @@ "Details": "বিস্তারিত", "Platform wizard": "প্লাটফর্ম উইজার্ড", "Label the report": "রিপোর্টটিকে চিহ্নিত করুন", - "Postpone the expiration date": "মেয়াদ উত্তীর্ণের তারিখ স্থগিত করুন", + "Edit the expiration date": "মেয়াদ উত্তীর্ণের তারিখ স্থগিত করুন", "Select all": "সবগুলো নির্বাচন করুন", "Deselect all": "সবগুলো অনির্বাচিত করুন", "Refresh": "রিফ্রেশ করুন", diff --git a/client/app/data/l10n/bo.json b/client/app/data/l10n/bo.json index 0cb8d4bce1..89b15be588 100644 --- a/client/app/data/l10n/bo.json +++ b/client/app/data/l10n/bo.json @@ -23,7 +23,7 @@ "Details": "ཞིབ་ཕྲ།", "Platform wizard": "གླེང་སྟེགས་ཝི་ཛཌ།", "Label the report": "སྙན་ཐོ་རྟགས་རྒྱག", - "Postpone the expiration date": "དུས་ཡོལ་ཚེས་གྲངས་ཕྱི་བཤོལ་བྱ།", + "Edit the expiration date": "དུས་ཡོལ་ཚེས་གྲངས་ཕྱི་བཤོལ་བྱ།", "Select all": "ཆ་ཚང་འདེམས།", "Deselect all": "ཆ་ཚང་མི་འདེམས།", "Refresh": "གསར་འདོན།", diff --git a/client/app/data/l10n/bs.json b/client/app/data/l10n/bs.json index e8025211ef..ee09f8fc78 100644 --- a/client/app/data/l10n/bs.json +++ b/client/app/data/l10n/bs.json @@ -23,7 +23,7 @@ "Details": "Detalji", "Platform wizard": "Asistent za platformu", "Label the report": "Označi izvještaj", - "Postpone the expiration date": "Odgodi rok isteka", + "Edit the expiration date": "Odgodi rok isteka", "Select all": "Označi sve", "Deselect all": "Deselektuj sve", "Refresh": "Osvježi", diff --git a/client/app/data/l10n/ca.json b/client/app/data/l10n/ca.json index 0d13ec581f..c0d41ddd03 100644 --- a/client/app/data/l10n/ca.json +++ b/client/app/data/l10n/ca.json @@ -23,7 +23,7 @@ "Details": "Detalls", "Platform wizard": "Persona assistent de la plataforma informàtica", "Label the report": "Etiqueta l’informe", - "Postpone the expiration date": "Editar la data de venciment", + "Edit the expiration date": "Editar la data de venciment", "Select all": "Selecciona-ho tot", "Deselect all": "Desselecciona-ho tot", "Refresh": "Actualitza", diff --git a/client/app/data/l10n/ca@valencia.json b/client/app/data/l10n/ca@valencia.json index 4c68488bfa..c1a0f6701d 100644 --- a/client/app/data/l10n/ca@valencia.json +++ b/client/app/data/l10n/ca@valencia.json @@ -23,7 +23,7 @@ "Details": "Detalls", "Platform wizard": "Assistent de la plataforma", "Label the report": "Etiqueta l’informe", - "Postpone the expiration date": "Editar la data de venciment", + "Edit the expiration date": "Editar la data de venciment", "Select all": "Selecciona-ho tot", "Deselect all": "Desselecciona-ho tot", "Refresh": "Actualització", diff --git a/client/app/data/l10n/ce.json b/client/app/data/l10n/ce.json index 0bf0f20a0a..1726d49566 100644 --- a/client/app/data/l10n/ce.json +++ b/client/app/data/l10n/ce.json @@ -23,7 +23,7 @@ "Details": "Деталш", "Platform wizard": "Платформин пхьар", "Label the report": "Орзана тIе билгало хIоттае", - "Postpone the expiration date": "Чекхдаларан хан дlататта", + "Edit the expiration date": "Чекхдаларан хан дlататта", "Select all": "Дерриг харжа", "Deselect all": "Дерриг харжар духаэца", "Refresh": "ЦӀинде", diff --git a/client/app/data/l10n/crh.json b/client/app/data/l10n/crh.json index 801863d282..cb7a98b2d3 100644 --- a/client/app/data/l10n/crh.json +++ b/client/app/data/l10n/crh.json @@ -23,7 +23,7 @@ "Details": "Айрынтылар", "Platform wizard": "Платформа устасы", "Label the report": "Малюматлар берильгенини къайд этмек ", - "Postpone the expiration date": "Сонъ къуллама тарихини кериге чекмек", + "Edit the expiration date": "Сонъ къуллама тарихини кериге чекмек", "Select all": "Эр шейни сайламакъ", "Deselect all": "Сайлавны лягъу этмек ", "Refresh": "Янъартмакъ", diff --git a/client/app/data/l10n/cs.json b/client/app/data/l10n/cs.json index ee15ccd7a5..78f2347460 100644 --- a/client/app/data/l10n/cs.json +++ b/client/app/data/l10n/cs.json @@ -23,7 +23,7 @@ "Details": "Detaily", "Platform wizard": "Průvodce platformou", "Label the report": "Označte oznámení štítkem", - "Postpone the expiration date": "Odložit datum vypršení", + "Edit the expiration date": " \nUpravte datum vypršení platnosti", "Select all": "Označit vše", "Deselect all": "Odznačit vše", "Refresh": "Obnovit", diff --git a/client/app/data/l10n/da.json b/client/app/data/l10n/da.json index f7fb67597b..1c8929079e 100644 --- a/client/app/data/l10n/da.json +++ b/client/app/data/l10n/da.json @@ -23,7 +23,7 @@ "Details": "Detaljer", "Platform wizard": "Platformsopsætning", "Label the report": "Navngiv denne indberetningen", - "Postpone the expiration date": "Udsæt udløbsdatoen", + "Edit the expiration date": "Udsæt udløbsdatoen", "Select all": "Vælg alle", "Deselect all": "Fravælg alle", "Refresh": "Opdater", diff --git a/client/app/data/l10n/de.json b/client/app/data/l10n/de.json index a967994368..fef7d9d4a6 100644 --- a/client/app/data/l10n/de.json +++ b/client/app/data/l10n/de.json @@ -23,7 +23,7 @@ "Details": "Details", "Platform wizard": "Plattformassistent", "Label the report": "Den Bericht bezeichnen", - "Postpone the expiration date": "Ablaufdatum bearbeiten", + "Edit the expiration date": "Ablaufdatum bearbeiten", "Select all": "Alle auswählen", "Deselect all": "Alles abwählen", "Refresh": "Aktualisieren", @@ -430,7 +430,7 @@ "The specified old password is not valid": "Das angegebene alte Passwort ist nicht gültig", "Resource can only be accessed via the Tor network": "Ressource kann ausschließlich über das Tor-Netzwerk aufgerufen werden", "The upload request exceeds the size limit": "Der Upload überschreitet das eingestellte MB Limit.", - "A user with this username already exists": "A user with this username already exists", + "A user with this username already exists": "Ein Benutzer mit diesem Benutzernamen existiert bereits", "You are operating on behalf of a whistleblower.": "Sie handeln im Auftrag eines Hinweisgebers.", "Current password": "Aktuelles Passwort", "New password": "Neues Passwort", diff --git a/client/app/data/l10n/dv.json b/client/app/data/l10n/dv.json index 2d337e072a..036a181b97 100644 --- a/client/app/data/l10n/dv.json +++ b/client/app/data/l10n/dv.json @@ -23,7 +23,7 @@ "Details": "އިތުރު މައުލޫމާތު", "Platform wizard": "ޕްލެޓްފޯރމް ވިޒާރޑް", "Label the report": "ރިޕޯޓް ލޭބަލްކުރުމަށް", - "Postpone the expiration date": "މުއްދަތު ހަމަވާ ތާރީޙް ލަސްކުރުމަށް", + "Edit the expiration date": "މުއްދަތު ހަމަވާ ތާރީޙް ލަސްކުރުމަށް", "Select all": "ސެލެކްޓް އޯލް", "Deselect all": "ޑީސެލެކްޓް އޯލް", "Refresh": "ރިފްރެޝް ކުރުމަށް", diff --git a/client/app/data/l10n/el.json b/client/app/data/l10n/el.json index 5677764054..bc281a2acf 100644 --- a/client/app/data/l10n/el.json +++ b/client/app/data/l10n/el.json @@ -23,7 +23,7 @@ "Details": "Λεπτομέρειες", "Platform wizard": "Οδηγός πλατφόρμας", "Label the report": "Ετικέτα αναφοράς", - "Postpone the expiration date": "Αναβολή της ημερομηνίας λήξης", + "Edit the expiration date": "Αναβολή της ημερομηνίας λήξης", "Select all": "Επίλεξέ τα όλα", "Deselect all": "Αποεπιλογή όλων", "Refresh": "Ανανέωση", diff --git a/client/app/data/l10n/es.json b/client/app/data/l10n/es.json index 3347ead33d..4c246f7bc7 100644 --- a/client/app/data/l10n/es.json +++ b/client/app/data/l10n/es.json @@ -23,7 +23,7 @@ "Details": "Detalles", "Platform wizard": "Asistente de la plataforma", "Label the report": "Etiquete la denuncia", - "Postpone the expiration date": "Editar la fecha de vencimiento", + "Edit the expiration date": "Editar la fecha de vencimiento", "Select all": "Seleccionar todo", "Deselect all": "Deseleccionar todo", "Refresh": "Actualizar", diff --git a/client/app/data/l10n/et.json b/client/app/data/l10n/et.json index 743defba74..cb98eac9e1 100644 --- a/client/app/data/l10n/et.json +++ b/client/app/data/l10n/et.json @@ -23,7 +23,7 @@ "Details": "Üksikasjad", "Platform wizard": "Platvormi viisard", "Label the report": "Teate silt", - "Postpone the expiration date": "Lükka aegumiskuupäeva edasi", + "Edit the expiration date": "Lükka aegumiskuupäeva edasi", "Select all": "Vali kõik", "Deselect all": "Tühista kõik valikud", "Refresh": "Värskenda", diff --git a/client/app/data/l10n/eu.json b/client/app/data/l10n/eu.json index a83c7a5a82..b3d4ba7c65 100644 --- a/client/app/data/l10n/eu.json +++ b/client/app/data/l10n/eu.json @@ -23,7 +23,7 @@ "Details": "Xehetasunak", "Platform wizard": "Plataformaren laguntzailea", "Label the report": "Etiketatu salaketa", - "Postpone the expiration date": "Iraungitze data atzeratu", + "Edit the expiration date": "Iraungitze data atzeratu", "Select all": "Hautatu dena", "Deselect all": "Deshautatu dena", "Refresh": "Eguneratu", diff --git a/client/app/data/l10n/fa.json b/client/app/data/l10n/fa.json index 66a07203ac..a4bd6bd88b 100644 --- a/client/app/data/l10n/fa.json +++ b/client/app/data/l10n/fa.json @@ -23,7 +23,7 @@ "Details": "جزئیات", "Platform wizard": "دستیار پلتفرم", "Label the report": "برچسب زدن گزارش", - "Postpone the expiration date": "تعویق زمان انقضا", + "Edit the expiration date": "تعویق زمان انقضا", "Select all": "انتخاب همه", "Deselect all": "لغو انتخاب همه", "Refresh": "تازه کردن", diff --git a/client/app/data/l10n/fa_AF.json b/client/app/data/l10n/fa_AF.json index c876a94795..1425312062 100644 --- a/client/app/data/l10n/fa_AF.json +++ b/client/app/data/l10n/fa_AF.json @@ -23,7 +23,7 @@ "Details": "جزئیات", "Platform wizard": "رهنمون پلتفورم", "Label the report": "راپور را لیبل گذاری کنید", - "Postpone the expiration date": "تاریخ انقضاء را به تعویق بیاندازید", + "Edit the expiration date": "تاریخ انقضاء را به تعویق بیاندازید", "Select all": "انتخاب همه", "Deselect all": "لغو انتخاب همه", "Refresh": "ریفریش", diff --git a/client/app/data/l10n/fi.json b/client/app/data/l10n/fi.json index de6ff01f39..abd33138fd 100644 --- a/client/app/data/l10n/fi.json +++ b/client/app/data/l10n/fi.json @@ -23,7 +23,7 @@ "Details": "Lisätiedot", "Platform wizard": "Ohjattu alustan luominen", "Label the report": "Anna ilmoitukselle nimi", - "Postpone the expiration date": "Muokkaa vanhentumispäivää", + "Edit the expiration date": "Muokkaa vanhentumispäivää", "Select all": "Valitse kaikki", "Deselect all": "Poista kaikki valinnat", "Refresh": "Päivitä", diff --git a/client/app/data/l10n/fr.json b/client/app/data/l10n/fr.json index 46ac44b810..3215ae0a5f 100644 --- a/client/app/data/l10n/fr.json +++ b/client/app/data/l10n/fr.json @@ -23,7 +23,7 @@ "Details": "Détails", "Platform wizard": "Assistant de la plateforme", "Label the report": "Étiqueter le signalement", - "Postpone the expiration date": "Modifier la date d’expiration", + "Edit the expiration date": "Modifier la date d’expiration", "Select all": "Tout sélectionner", "Deselect all": "Tout dessélectionner", "Refresh": "Actualiser", @@ -373,7 +373,7 @@ "Give this admin ability to change user passwords": "Permettre à cet administrateur de changer le mot de passe des utilisateurs", "Forcefully selected": "Sélectionné de force", "Allow the recipient to delete reports": "Permettre au destinataire de supprimer des signalements", - "Allow the recipient to edit the report expiration date": "Permettre au destinataire de différer la date d’expiration du signalement", + "Allow the recipient to edit the report expiration date": "Permettre au destinataire de modifier la date d’expiration du signalement", "Give this user ability to grant user access to reports": "Donner à cet utilisateur la possibilité d’accorder l’accès des utilisateurs aux signalements", "Give this user ability to transfer reports to other users": "Donner à cet utilisateur la possibilité de transférer des signalements à d’autres utilisateurs ", "Allow this user to reopen management of a report": "Permettre à cet utilisateur de rouvrir la gestion d’un rapport.", @@ -430,7 +430,7 @@ "The specified old password is not valid": "L’ancien mot de passe indiqué est invalide", "Resource can only be accessed via the Tor network": "L’accès à cette ressource ne peut se faire que par le réseau Tor", "The upload request exceeds the size limit": "La demande de téléversement dépasse la limite de taille", - "A user with this username already exists": "A user with this username already exists", + "A user with this username already exists": "Ce nom d’utilisateur existe déjà", "You are operating on behalf of a whistleblower.": "Vous agissez pour le compte d’un lanceur d’alerte.", "Current password": "Mot de passe actuel", "New password": "Nouveau mot de passe", diff --git a/client/app/data/l10n/gl.json b/client/app/data/l10n/gl.json index 709cf3e5a0..bcfdd6e6b8 100644 --- a/client/app/data/l10n/gl.json +++ b/client/app/data/l10n/gl.json @@ -23,7 +23,7 @@ "Details": "Detalles", "Platform wizard": "Asistente de plataforma", "Label the report": "Etiqueta a presentación", - "Postpone the expiration date": "Pospoñer a data de caducidade", + "Edit the expiration date": "Pospoñer a data de caducidade", "Select all": "Seleccionar todo", "Deselect all": "Cancelar todos", "Refresh": "Actualizar", diff --git a/client/app/data/l10n/he.json b/client/app/data/l10n/he.json index 39b46cebdb..a2296afd31 100644 --- a/client/app/data/l10n/he.json +++ b/client/app/data/l10n/he.json @@ -23,7 +23,7 @@ "Details": "פרטים", "Platform wizard": "אשף פלטפורמה", "Label the report": "סווג את הדוח", - "Postpone the expiration date": "דחה את תאריך התפוגה", + "Edit the expiration date": "דחה את תאריך התפוגה", "Select all": "בחר הכל", "Deselect all": "בטל בחירת הכל", "Refresh": "רענן", diff --git a/client/app/data/l10n/hr_HR.json b/client/app/data/l10n/hr_HR.json index 33394e0143..203289c123 100644 --- a/client/app/data/l10n/hr_HR.json +++ b/client/app/data/l10n/hr_HR.json @@ -23,7 +23,7 @@ "Details": "Detalji", "Platform wizard": "Čarobnjak za platformu", "Label the report": "Postavi oznaku na prijavu", - "Postpone the expiration date": "Odgodi datum isteka", + "Edit the expiration date": "Odgodi datum isteka", "Select all": "Odaberi sve", "Deselect all": "Odznači sve", "Refresh": "Osvježi", diff --git a/client/app/data/l10n/hu_HU.json b/client/app/data/l10n/hu_HU.json index 14eb82a8b8..68e7ae2eac 100644 --- a/client/app/data/l10n/hu_HU.json +++ b/client/app/data/l10n/hu_HU.json @@ -23,7 +23,7 @@ "Details": "Részletek", "Platform wizard": "Platform varázsló", "Label the report": "Címkézze a beküldést", - "Postpone the expiration date": "Lejárati idő meghosszabítása", + "Edit the expiration date": "Lejárati idő meghosszabítása", "Select all": "Összes kijelölése", "Deselect all": "Összes kijelölésének megszüntetése", "Refresh": "Frissítés", diff --git a/client/app/data/l10n/hy.json b/client/app/data/l10n/hy.json index f2928eef8e..b16417b1f4 100644 --- a/client/app/data/l10n/hy.json +++ b/client/app/data/l10n/hy.json @@ -23,7 +23,7 @@ "Details": "Մանրամասներ", "Platform wizard": "Հարթակի հրաշագործ", "Label the report": "Պիտակել զեկույցը", - "Postpone the expiration date": "Հետաձգել վերջնաժամկետը", + "Edit the expiration date": "Հետաձգել վերջնաժամկետը", "Select all": "Ընտրել ամբողջությամբ", "Deselect all": "Չեղարկել ընտրությունը", "Refresh": "Թարմացնել", diff --git a/client/app/data/l10n/id.json b/client/app/data/l10n/id.json index d4214f216c..27b026bb19 100644 --- a/client/app/data/l10n/id.json +++ b/client/app/data/l10n/id.json @@ -23,7 +23,7 @@ "Details": "Rincian", "Platform wizard": "Wisaya platform", "Label the report": "Tandai laporan", - "Postpone the expiration date": "Menunda tanggal kedaluwarsa", + "Edit the expiration date": "Menunda tanggal kedaluwarsa", "Select all": "Pilih semua", "Deselect all": "Batal memilih semua", "Refresh": "Perbarui", diff --git a/client/app/data/l10n/it.json b/client/app/data/l10n/it.json index c4533278e5..ccee3b7472 100644 --- a/client/app/data/l10n/it.json +++ b/client/app/data/l10n/it.json @@ -23,7 +23,7 @@ "Details": "Dettagli", "Platform wizard": "Installazione della piattaforma", "Label the report": "Assegna una etichetta alla segnalazione", - "Postpone the expiration date": "Modifica la data di scadenza", + "Edit the expiration date": "Modifica la data di scadenza", "Select all": "Seleziona tutto", "Deselect all": "Deseleziona tutto", "Refresh": "Aggiorna", diff --git a/client/app/data/l10n/ja.json b/client/app/data/l10n/ja.json index 1f3219dca9..a10c1c8c76 100644 --- a/client/app/data/l10n/ja.json +++ b/client/app/data/l10n/ja.json @@ -23,7 +23,7 @@ "Details": "詳細", "Platform wizard": "プラットフォーム ウィザード", "Label the report": "報告にラベルを付ける", - "Postpone the expiration date": "有効期限を延期する", + "Edit the expiration date": "有効期限を延期する", "Select all": "すべて選択", "Deselect all": "すべて選択解除", "Refresh": "更新", diff --git a/client/app/data/l10n/ka.json b/client/app/data/l10n/ka.json index d7bed45bcc..ee1f6d16b1 100644 --- a/client/app/data/l10n/ka.json +++ b/client/app/data/l10n/ka.json @@ -23,7 +23,7 @@ "Details": "დეტალები", "Platform wizard": "პლატფორმის ოსტატი", "Label the report": "ანგარიშის დასათაურება", - "Postpone the expiration date": "ვადის გასვლის თარიღის გადავადება", + "Edit the expiration date": "ვადის გასვლის თარიღის გადავადება", "Select all": "ყველას მონიშვნა", "Deselect all": "ყველას მონიშვნის გაუქმება", "Refresh": "განახლება", diff --git a/client/app/data/l10n/kk.json b/client/app/data/l10n/kk.json index 5cca851820..15c1198d3b 100644 --- a/client/app/data/l10n/kk.json +++ b/client/app/data/l10n/kk.json @@ -23,7 +23,7 @@ "Details": "Мәліметтер", "Platform wizard": "Платформа шебері", "Label the report": "Есепті белгілеу", - "Postpone the expiration date": "Жарамдылық мерзімін кейінге жылжыту", + "Edit the expiration date": "Жарамдылық мерзімін кейінге жылжыту", "Select all": "Барлығын таңдау", "Deselect all": "Барлық таңдауды алып тастау", "Refresh": "Жаңарту", diff --git a/client/app/data/l10n/km.json b/client/app/data/l10n/km.json index 4171561e47..88f8c658f7 100644 --- a/client/app/data/l10n/km.json +++ b/client/app/data/l10n/km.json @@ -23,7 +23,7 @@ "Details": "លម្អិត", "Platform wizard": "ជំនួយការវេទិកា", "Label the report": "ដាក់ឈ្មោះរបាយការណ៍", - "Postpone the expiration date": "ពន្យាកាលបរិច្ឆេទផុតកំណត់", + "Edit the expiration date": "ពន្យាកាលបរិច្ឆេទផុតកំណត់", "Select all": "ជ្រើសទាំងអស់", "Deselect all": "មិនជ្រើសរើសទាំងអស់", "Refresh": "ផ្ទុកឡើងវិញ", diff --git a/client/app/data/l10n/ko.json b/client/app/data/l10n/ko.json index f4fdfd9148..a0f9550e26 100644 --- a/client/app/data/l10n/ko.json +++ b/client/app/data/l10n/ko.json @@ -23,7 +23,7 @@ "Details": "세부 정보", "Platform wizard": "플랫폼 마법사", "Label the report": "보고서 라벨링", - "Postpone the expiration date": "만료 날짜 연기", + "Edit the expiration date": "만료 날짜 연기", "Select all": "모두 선택", "Deselect all": "모두 선택 해제", "Refresh": "새로 고침", diff --git a/client/app/data/l10n/ky.json b/client/app/data/l10n/ky.json index 1e7b0fefa8..0fb09dc28e 100644 --- a/client/app/data/l10n/ky.json +++ b/client/app/data/l10n/ky.json @@ -23,7 +23,7 @@ "Details": "Деталдар", "Platform wizard": "Платформа устаты", "Label the report": "Отчетту белгилеңиз", - "Postpone the expiration date": "Жарактуулук мөөнөтүн узартыңыз", + "Edit the expiration date": "Жарактуулук мөөнөтүн узартыңыз", "Select all": "Баарын тандоо", "Deselect all": "Баарын тандоодон баш тартуу", "Refresh": "Жаңылоо", diff --git a/client/app/data/l10n/lo.json b/client/app/data/l10n/lo.json index 2f70c154a2..1d27891798 100644 --- a/client/app/data/l10n/lo.json +++ b/client/app/data/l10n/lo.json @@ -23,7 +23,7 @@ "Details": "ລາຍລະອຽດຕ່າງໆ", "Platform wizard": "ຕົວຊ່ວຍສ້າງແມ່ແບບ", "Label the report": "ຕິດສະຫຼາກໃສ່ລາຍງານ", - "Postpone the expiration date": "ເລື່ອນວັນທີໝົດອາຍຸ", + "Edit the expiration date": "ເລື່ອນວັນທີໝົດອາຍຸ", "Select all": "ເລືອກທັງໝົດ", "Deselect all": "ຍົກເລີກການເລືອກທັງໝົດ", "Refresh": "ຣີເຟຼສ໌", diff --git a/client/app/data/l10n/lt.json b/client/app/data/l10n/lt.json index 0231348efb..df4c68226b 100644 --- a/client/app/data/l10n/lt.json +++ b/client/app/data/l10n/lt.json @@ -23,7 +23,7 @@ "Details": "Išsamiau", "Platform wizard": "Platformos vedlys", "Label the report": "Ženklinti pranešimą", - "Postpone the expiration date": "Atidėti galiojimo pabaigos datą", + "Edit the expiration date": "Atidėti galiojimo pabaigos datą", "Select all": "Žymėti viską", "Deselect all": "Panaikinti žymėjimą", "Refresh": "Įkelti iš naujo", diff --git a/client/app/data/l10n/lv.json b/client/app/data/l10n/lv.json index c67f8362d1..a453d0bba2 100644 --- a/client/app/data/l10n/lv.json +++ b/client/app/data/l10n/lv.json @@ -23,7 +23,7 @@ "Details": "Detaļas", "Platform wizard": "Platformas vednis", "Label the report": "Marķēt ziņojumu", - "Postpone the expiration date": "Atlikt termiņa beigas", + "Edit the expiration date": "Atlikt termiņa beigas", "Select all": "Atlasīt visu", "Deselect all": "Atmest visu", "Refresh": "Atsvaidzināt", diff --git a/client/app/data/l10n/mg.json b/client/app/data/l10n/mg.json index 97af4723be..6ffa0fc511 100644 --- a/client/app/data/l10n/mg.json +++ b/client/app/data/l10n/mg.json @@ -23,7 +23,7 @@ "Details": "Détails", "Platform wizard": "Assistant de la plateforme", "Label the report": "Étiqueter l’envoi", - "Postpone the expiration date": "Repousser la date d’expiration", + "Edit the expiration date": "Repousser la date d’expiration", "Select all": "Tout sélectionner", "Deselect all": "Tout dessélectionner", "Refresh": "Refresh", diff --git a/client/app/data/l10n/mk.json b/client/app/data/l10n/mk.json index 3dc5909ca4..bd0dd6ffba 100644 --- a/client/app/data/l10n/mk.json +++ b/client/app/data/l10n/mk.json @@ -23,7 +23,7 @@ "Details": "Детали", "Platform wizard": "Платформен волшебник", "Label the report": "Означи го извештајот", - "Postpone the expiration date": "Одложи го датумот на истекување", + "Edit the expiration date": "Одложи го датумот на истекување", "Select all": "Избери се", "Deselect all": "Отстрани се", "Refresh": "Освежи", diff --git a/client/app/data/l10n/ms.json b/client/app/data/l10n/ms.json index 4798cb9f37..d4115d8364 100644 --- a/client/app/data/l10n/ms.json +++ b/client/app/data/l10n/ms.json @@ -23,7 +23,7 @@ "Details": "Butiran", "Platform wizard": "Wizard platform", "Label the report": "Label laporan", - "Postpone the expiration date": "Tangguh tarikh tamat tempoh", + "Edit the expiration date": "Tangguh tarikh tamat tempoh", "Select all": "Pilih semua", "Deselect all": "Nyahpilih semua", "Refresh": "Segar semula", diff --git a/client/app/data/l10n/my.json b/client/app/data/l10n/my.json index 71cb56628b..e8e323b402 100644 --- a/client/app/data/l10n/my.json +++ b/client/app/data/l10n/my.json @@ -23,7 +23,7 @@ "Details": "အသေးစိတ်များ", "Platform wizard": "ပလက်ဖောင်း ဝိဇ္ဇာ", "Label the report": "အစီရင်ခံစာကို အညွှန်းတပ်ပါ", - "Postpone the expiration date": "သက်တမ်းကုန်ဆုံးရက် ရွှေ့ဆိုင်းပါ", + "Edit the expiration date": "သက်တမ်းကုန်ဆုံးရက် ရွှေ့ဆိုင်းပါ", "Select all": "အားလုံးကို ရွေးချယ်ရန်", "Deselect all": "အားလုံးကို မရွေးချယ်ပါ", "Refresh": "ရီဖရက်ရှ်လုပ်ရန်", diff --git a/client/app/data/l10n/nb_NO.json b/client/app/data/l10n/nb_NO.json index 0d6fbcc9df..e3024025dc 100644 --- a/client/app/data/l10n/nb_NO.json +++ b/client/app/data/l10n/nb_NO.json @@ -23,7 +23,7 @@ "Details": "Detaljer", "Platform wizard": "Plattform-veileder", "Label the report": "Merk rapporten", - "Postpone the expiration date": "Utsett utløpsdato", + "Edit the expiration date": "Utsett utløpsdato", "Select all": "Velg alle", "Deselect all": "Fravelg alt", "Refresh": "Gjenoppfrisk", diff --git a/client/app/data/l10n/nl.json b/client/app/data/l10n/nl.json index bbfb1d6b6f..86f7e25bfb 100644 --- a/client/app/data/l10n/nl.json +++ b/client/app/data/l10n/nl.json @@ -23,7 +23,7 @@ "Details": "Details", "Platform wizard": "Platformwizard", "Label the report": "Label de inzending", - "Postpone the expiration date": "Vervaldatum uitstellen", + "Edit the expiration date": "Vervaldatum uitstellen", "Select all": "Alles selecteren", "Deselect all": "Niets selecteren", "Refresh": "Vernieuwen", diff --git a/client/app/data/l10n/pl.json b/client/app/data/l10n/pl.json index 921575987b..7adccdcfef 100644 --- a/client/app/data/l10n/pl.json +++ b/client/app/data/l10n/pl.json @@ -23,7 +23,7 @@ "Details": "Szczegóły", "Platform wizard": "Kreator platformy", "Label the report": "Dodaj opis zgłoszenia", - "Postpone the expiration date": "Zmień datę wygaśnięcia", + "Edit the expiration date": "Zmień datę wygaśnięcia", "Select all": "Zaznacz wszystko", "Deselect all": "Odznacz wszystko", "Refresh": "Odśwież", diff --git a/client/app/data/l10n/ps.json b/client/app/data/l10n/ps.json index eeaaf3cb5e..0e71e010c0 100644 --- a/client/app/data/l10n/ps.json +++ b/client/app/data/l10n/ps.json @@ -23,7 +23,7 @@ "Details": "جزئیات", "Platform wizard": "د پلیټ فارم ویزرډ", "Label the report": "رپوټ لیبل کړئ", - "Postpone the expiration date": "د انقضاء د نېټې ځنډول", + "Edit the expiration date": "د انقضاء د نېټې ځنډول", "Select all": "ټول انتخاب کړئ", "Deselect all": "ټول له انتخاب وباسئ", "Refresh": "ریفریش", diff --git a/client/app/data/l10n/pt_BR.json b/client/app/data/l10n/pt_BR.json index 281e7add74..21f13cc697 100644 --- a/client/app/data/l10n/pt_BR.json +++ b/client/app/data/l10n/pt_BR.json @@ -23,7 +23,7 @@ "Details": "Detalhes", "Platform wizard": "Assistente de plataforma", "Label the report": "Etiquetar o relatório", - "Postpone the expiration date": "Editar a data de expiração", + "Edit the expiration date": "Editar a data de expiração", "Select all": "Selecione todas", "Deselect all": " Desmarque todas ", "Refresh": "Atualizar", diff --git a/client/app/data/l10n/pt_PT.json b/client/app/data/l10n/pt_PT.json index 699b1cb9ca..18b26a3dcc 100644 --- a/client/app/data/l10n/pt_PT.json +++ b/client/app/data/l10n/pt_PT.json @@ -23,7 +23,7 @@ "Details": "Detalhes", "Platform wizard": "Assistente da plataforma", "Label the report": "Etiquetar a submissão", - "Postpone the expiration date": "Editar a data de expiração", + "Edit the expiration date": "Editar a data de expiração", "Select all": "Selecionar tudo", "Deselect all": "Desselecionar tudo", "Refresh": "Recarregar", diff --git a/client/app/data/l10n/ro.json b/client/app/data/l10n/ro.json index 1780071ead..3ab9c85043 100644 --- a/client/app/data/l10n/ro.json +++ b/client/app/data/l10n/ro.json @@ -23,7 +23,7 @@ "Details": "Detalii", "Platform wizard": "Configurator platformă", "Label the report": "Etichetează sesizarea", - "Postpone the expiration date": "Amână data de expirare", + "Edit the expiration date": "Amână data de expirare", "Select all": "Selectează tot ", "Deselect all": "Deselectează tot ", "Refresh": "Actualizează", diff --git a/client/app/data/l10n/ru.json b/client/app/data/l10n/ru.json index 16aa36668d..ebce936615 100644 --- a/client/app/data/l10n/ru.json +++ b/client/app/data/l10n/ru.json @@ -23,7 +23,7 @@ "Details": "Подробности", "Platform wizard": "Мастер платформы", "Label the report": "Пометить подачу материалов", - "Postpone the expiration date": "Отложить срок истечения", + "Edit the expiration date": "Отложить срок истечения", "Select all": "Выбрать всё", "Deselect all": "Отменить выбор", "Refresh": "Обновить", diff --git a/client/app/data/l10n/sk.json b/client/app/data/l10n/sk.json index 32d016f4d8..c5a3166727 100644 --- a/client/app/data/l10n/sk.json +++ b/client/app/data/l10n/sk.json @@ -23,7 +23,7 @@ "Details": "Detaily", "Platform wizard": "Sprievodca platformou", "Label the report": "Označte oznámenie štítkom", - "Postpone the expiration date": "Odložiť vypršanie platnosti", + "Edit the expiration date": "Odložiť vypršanie platnosti", "Select all": "Označiť všetko", "Deselect all": "Neoznačiť nič", "Refresh": "Obnoviť", diff --git a/client/app/data/l10n/sl_SI.json b/client/app/data/l10n/sl_SI.json index 1be715301c..1b3ddc15bd 100644 --- a/client/app/data/l10n/sl_SI.json +++ b/client/app/data/l10n/sl_SI.json @@ -23,7 +23,7 @@ "Details": "Podrobnosti", "Platform wizard": "Čarovnik platforme", "Label the report": "Označi prijavo", - "Postpone the expiration date": "Uredi datum poteka veljavnosti", + "Edit the expiration date": "Uredi datum poteka veljavnosti", "Select all": "Označi vse", "Deselect all": "Odznači vse", "Refresh": "Osveži", @@ -430,7 +430,7 @@ "The specified old password is not valid": "Navedeno staro geslo ni veljavno", "Resource can only be accessed via the Tor network": "Ta vir je dostopen le prek Tor omrežja", "The upload request exceeds the size limit": "Zahteva za prenos presega omejitev velikosti", - "A user with this username already exists": "A user with this username already exists", + "A user with this username already exists": "Uporabnik s tem uporabniškim imenom že obstaja", "You are operating on behalf of a whistleblower.": "Delujete v imenu prijavitelja nepravilnosti.", "Current password": "Trenutno geslo", "New password": "Novo geslo", diff --git a/client/app/data/l10n/sq.json b/client/app/data/l10n/sq.json index e8acf2a671..bee957c000 100644 --- a/client/app/data/l10n/sq.json +++ b/client/app/data/l10n/sq.json @@ -23,7 +23,7 @@ "Details": "Hollësi", "Platform wizard": "Ndihmës platforme", "Label the report": "I vini raportimit një etiketë", - "Postpone the expiration date": "Modifica la data di scadenza", + "Edit the expiration date": "Modifica la data di scadenza", "Select all": "Përzgjidhi krejt", "Deselect all": "Shpërzgjidhi krejt", "Refresh": "Rifreskoje", @@ -430,7 +430,7 @@ "The specified old password is not valid": "Fjalëkalimi i dikurshëm i dhënë s’është i vlefshëm", "Resource can only be accessed via the Tor network": "Burimi mund të përdoret vetëm përmes rrjetit Tor", "The upload request exceeds the size limit": "Kërkesa për ngarkim tejkalon kufirin për madhësitë", - "A user with this username already exists": "A user with this username already exists", + "A user with this username already exists": "Ka tashmë një përdorues me atë emër përdoruesi", "You are operating on behalf of a whistleblower.": "Po veproni në këmbë të një nxjerrësi të fshehtash.", "Current password": "Fjalëkalimi i tanishëm", "New password": "Fjalëkalim i ri", diff --git a/client/app/data/l10n/sr_ME.json b/client/app/data/l10n/sr_ME.json index 8426abb751..6370bf2fc4 100644 --- a/client/app/data/l10n/sr_ME.json +++ b/client/app/data/l10n/sr_ME.json @@ -23,7 +23,7 @@ "Details": "Detalji", "Platform wizard": "Čarobnjak za platformu", "Label the report": "Označi prijavu", - "Postpone the expiration date": "Odloži datum isteka", + "Edit the expiration date": "Odloži datum isteka", "Select all": "Изабери све", "Deselect all": "Poništi izbor za sve", "Refresh": "Osvježi", diff --git a/client/app/data/l10n/sr_ME@latin.json b/client/app/data/l10n/sr_ME@latin.json index e67ea2b864..d46bdb6680 100644 --- a/client/app/data/l10n/sr_ME@latin.json +++ b/client/app/data/l10n/sr_ME@latin.json @@ -23,7 +23,7 @@ "Details": "Detalji", "Platform wizard": "Čarobnjak za platformu", "Label the report": "Označi prijavu", - "Postpone the expiration date": "Odloži datum isteka", + "Edit the expiration date": "Odloži datum isteka", "Select all": "Izaberi sve", "Deselect all": "Poništi izbor za sve", "Refresh": "Osvježi", diff --git a/client/app/data/l10n/sr_RS.json b/client/app/data/l10n/sr_RS.json index b234406b21..39dd44e0db 100644 --- a/client/app/data/l10n/sr_RS.json +++ b/client/app/data/l10n/sr_RS.json @@ -23,7 +23,7 @@ "Details": "Подаци", "Platform wizard": "Чаробњак платформе", "Label the report": "Označi prijavu", - "Postpone the expiration date": "Одложи датум истицања дојаве", + "Edit the expiration date": "Одложи датум истицања дојаве", "Select all": "Одабери све", "Deselect all": "Поништи све", "Refresh": "Osvježi", diff --git a/client/app/data/l10n/sr_RS@latin.json b/client/app/data/l10n/sr_RS@latin.json index 4fc3648d30..0cb9ac6954 100644 --- a/client/app/data/l10n/sr_RS@latin.json +++ b/client/app/data/l10n/sr_RS@latin.json @@ -23,7 +23,7 @@ "Details": "Detalji", "Platform wizard": "Vodič za podešavanje platforme", "Label the report": "Označi dojavu", - "Postpone the expiration date": "Odloži datum isteka", + "Edit the expiration date": "Odloži datum isteka", "Select all": "Izaberi sve", "Deselect all": "Poništi izbor svega", "Refresh": "Osveži", diff --git a/client/app/data/l10n/sv.json b/client/app/data/l10n/sv.json index 886bf81d74..3e58a1a8a5 100644 --- a/client/app/data/l10n/sv.json +++ b/client/app/data/l10n/sv.json @@ -23,7 +23,7 @@ "Details": "Detaljer", "Platform wizard": "Plattformsguide", "Label the report": "Ge rapporten en etikett", - "Postpone the expiration date": "Skjut up utgångsdatumet", + "Edit the expiration date": "Skjut up utgångsdatumet", "Select all": "Markera alla", "Deselect all": "Avmarkera alla", "Refresh": "Ladda om sidan", diff --git a/client/app/data/l10n/sw.json b/client/app/data/l10n/sw.json index 275d4a9978..bf354b1e4d 100644 --- a/client/app/data/l10n/sw.json +++ b/client/app/data/l10n/sw.json @@ -23,7 +23,7 @@ "Details": "Maelezo", "Platform wizard": "Kivinjari cha jukwaa", "Label the report": "Lebo ripoti", - "Postpone the expiration date": "Ahirisha tarehe ya kumalizika muda", + "Edit the expiration date": "Ahirisha tarehe ya kumalizika muda", "Select all": "Chagua zote", "Deselect all": "Usichague zote", "Refresh": "Fanyiza upya", diff --git a/client/app/data/l10n/ta.json b/client/app/data/l10n/ta.json index c7073d2c2e..b727845151 100644 --- a/client/app/data/l10n/ta.json +++ b/client/app/data/l10n/ta.json @@ -23,7 +23,7 @@ "Details": "விபரங்கள்", "Platform wizard": "மேடை வழிகாட்டி", "Label the report": "சமர்ப்பிப்புக்கு லேபிளிடுங்கள்", - "Postpone the expiration date": "காலாவதி தேதி ஒத்தி", + "Edit the expiration date": "காலாவதி தேதி ஒத்தி", "Select all": "அனைத்தையும் தெரிவுசெய்", "Deselect all": "அனைத்து தெரிவுகளையும் நிராகரி", "Refresh": "Refresh", diff --git a/client/app/data/l10n/tg.json b/client/app/data/l10n/tg.json index 65838f6d04..5ec965c0dd 100644 --- a/client/app/data/l10n/tg.json +++ b/client/app/data/l10n/tg.json @@ -23,7 +23,7 @@ "Details": "Тафсилот", "Platform wizard": "Устоди платформа", "Label the report": "Гузоришро қайд кунед", - "Postpone the expiration date": "Ба таъхир гузоштани мӯҳлати итмоми эътибор ", + "Edit the expiration date": "Ба таъхир гузоштани мӯҳлати итмоми эътибор ", "Select all": "Ҳамаро интихоб кардан", "Deselect all": "Ҳамаи интихобро лағв кардан ", "Refresh": "Таҷдид кардан", diff --git a/client/app/data/l10n/th.json b/client/app/data/l10n/th.json index 6044e72b0e..dd1c9107b0 100644 --- a/client/app/data/l10n/th.json +++ b/client/app/data/l10n/th.json @@ -23,7 +23,7 @@ "Details": "รายละเอียด", "Platform wizard": "ตัวช่วยตั้งค่าแพลตฟอร์ม", "Label the report": "ติดป้ายกำกับรายงาน", - "Postpone the expiration date": "เลื่อนวันหมดอายุ", + "Edit the expiration date": "เลื่อนวันหมดอายุ", "Select all": "เลือกทั้งหมด", "Deselect all": "เลิกเลือกทั้งหมด", "Refresh": "เรียกใหม่", diff --git a/client/app/data/l10n/tk.json b/client/app/data/l10n/tk.json index 9114dd7ff1..d37076358b 100644 --- a/client/app/data/l10n/tk.json +++ b/client/app/data/l10n/tk.json @@ -23,7 +23,7 @@ "Details": "Jikme-jiklikler", "Platform wizard": "Platforma düzeltmesi", "Label the report": "Hasabaty bellik ediň", - "Postpone the expiration date": "Möhletiniň gutarýan senesini gijikdir", + "Edit the expiration date": "Möhletiniň gutarýan senesini gijikdir", "Select all": "Ählisini seç", "Deselect all": "Ählisini aýyr", "Refresh": "Täzele", diff --git a/client/app/data/l10n/tr.json b/client/app/data/l10n/tr.json index 0c5abd7b05..db93252803 100644 --- a/client/app/data/l10n/tr.json +++ b/client/app/data/l10n/tr.json @@ -23,7 +23,7 @@ "Details": "Ayrıntılar", "Platform wizard": "Platform yardımcısı", "Label the report": "İhbarı etiketle", - "Postpone the expiration date": "Geçerlilik sonu tarihini düzenle", + "Edit the expiration date": "Geçerlilik sonu tarihini düzenle", "Select all": "Tümünü seç", "Deselect all": "Tümünü bırak", "Refresh": "Yenile", @@ -373,7 +373,7 @@ "Give this admin ability to change user passwords": "Bu yönetici kullanıcı parolalarını değiştirebilsin", "Forcefully selected": "Zorunlu olarak seçilmiş", "Allow the recipient to delete reports": "Alıcı ihbarları silebilsin", - "Allow the recipient to edit the report expiration date": "Alıcı ihbarın geçerlilik sonu tarihini uzatabilsin", + "Allow the recipient to edit the report expiration date": "Alıcı ihbarın geçerlilik sonu tarihini düzenleyebilsin", "Give this user ability to grant user access to reports": "Bu kullanıcı başka kullanıcılara ihbarlara erişme izni verebilsin", "Give this user ability to transfer reports to other users": "Bu kullanıcı ihbarları başka kullanıcılara aktarabilsin", "Allow this user to reopen management of a report": "Bu kullanıcı bir ihbarın yönetimini yeniden açabilsin ", @@ -430,7 +430,7 @@ "The specified old password is not valid": "Yazdığınız geçerli parola doğru değil", "Resource can only be accessed via the Tor network": "Kaynağa yalnızca Tor ağı üzerinden erişilebilir", "The upload request exceeds the size limit": "Yükleme isteğinin boyutu sınırı aşıyor", - "A user with this username already exists": "A user with this username already exists", + "A user with this username already exists": "Aynı kullanıcı adlı bir kullanıcı zaten var", "You are operating on behalf of a whistleblower.": "Bir muhbir adına işlem yapıyorsunuz.", "Current password": "Geçerli parola", "New password": "Yeni parola", diff --git a/client/app/data/l10n/tt.json b/client/app/data/l10n/tt.json index b878a543c8..2d16c19679 100644 --- a/client/app/data/l10n/tt.json +++ b/client/app/data/l10n/tt.json @@ -23,7 +23,7 @@ "Details": "Тәфсилле мәгълүмат", "Platform wizard": "Платформа остасы", "Label the report": "Хисапны тамгалау", - "Postpone the expiration date": "Вакыты чыгу датасын кичектерү", + "Edit the expiration date": "Вакыты чыгу датасын кичектерү", "Select all": "Барысын да тамгалау", "Deselect all": "Берсен дә тамгаламау", "Refresh": "Яңарту", diff --git a/client/app/data/l10n/ug.json b/client/app/data/l10n/ug.json index 7d2332222c..d735d967c1 100644 --- a/client/app/data/l10n/ug.json +++ b/client/app/data/l10n/ug.json @@ -23,7 +23,7 @@ "Details": "تەپسىلاتلار", "Platform wizard": "سۇپا سېھىرگەرى", "Label the report": "مەلۇماتقا بەلگە قوي", - "Postpone the expiration date": "سۈرۈك چېسلاسىنى كەينىگە سۈر", + "Edit the expiration date": "سۈرۈك چېسلاسىنى كەينىگە سۈر", "Select all": "ھەممىنى تاللا", "Deselect all": "ھەممىنى بىكار قىل", "Refresh": "يېڭىلا", diff --git a/client/app/data/l10n/ug@Cyrl.json b/client/app/data/l10n/ug@Cyrl.json index de3f915bff..bba22e6dfe 100644 --- a/client/app/data/l10n/ug@Cyrl.json +++ b/client/app/data/l10n/ug@Cyrl.json @@ -23,7 +23,7 @@ "Details": "Тәпсилатлар", "Platform wizard": "Супа сеһиргәри", "Label the report": "мәлуматқа бәлгә сал", - "Postpone the expiration date": "Сүрүк чесласини кәйнигә сүр", + "Edit the expiration date": "Сүрүк чесласини кәйнигә сүр", "Select all": "Һәммини талла", "Deselect all": "Һәммини бикар қил", "Refresh": "Йеңила", diff --git a/client/app/data/l10n/ug@Latin.json b/client/app/data/l10n/ug@Latin.json index b95de15e28..1c3b8b62b2 100644 --- a/client/app/data/l10n/ug@Latin.json +++ b/client/app/data/l10n/ug@Latin.json @@ -23,7 +23,7 @@ "Details": "Tepsilatlar", "Platform wizard": "Supa séhirgeri", "Label the report": "Melumatqa belge sal", - "Postpone the expiration date": "Sürük chéslasini keynige sür", + "Edit the expiration date": "Sürük chéslasini keynige sür", "Select all": "Hemmini talla", "Deselect all": "Hemmini bikar qil", "Refresh": "Yéngila", diff --git a/client/app/data/l10n/uk.json b/client/app/data/l10n/uk.json index 0279858b73..86fbb7572b 100644 --- a/client/app/data/l10n/uk.json +++ b/client/app/data/l10n/uk.json @@ -23,7 +23,7 @@ "Details": "Деталі", "Platform wizard": "Майстер налаштування платформи", "Label the report": "Позначте звіт", - "Postpone the expiration date": "Відтермінувати дату зачінчення терміну дії", + "Edit the expiration date": "Відтермінувати дату зачінчення терміну дії", "Select all": "Вибрати все", "Deselect all": "Скасувати вибір всього", "Refresh": "Оновити", diff --git a/client/app/data/l10n/ur.json b/client/app/data/l10n/ur.json index 5b8bcb42ca..4415d28db0 100644 --- a/client/app/data/l10n/ur.json +++ b/client/app/data/l10n/ur.json @@ -23,7 +23,7 @@ "Details": "تفصیلات", "Platform wizard": "پلیٹ فارم وزرڈ", "Label the report": "رپورٹ لیبل کریں", - "Postpone the expiration date": "آخری اپ ڈیٹ کی تاریخ ملتوی", + "Edit the expiration date": "آخری اپ ڈیٹ کی تاریخ ملتوی", "Select all": "تمام منتخب کریں", "Deselect all": "تمام غیر منتخب کریں", "Refresh": "تازہ کرنا", diff --git a/client/app/data/l10n/uz.json b/client/app/data/l10n/uz.json index 6d3a17d240..a440eb7a29 100644 --- a/client/app/data/l10n/uz.json +++ b/client/app/data/l10n/uz.json @@ -23,7 +23,7 @@ "Details": "Tafsilotlar", "Platform wizard": "Platformani sozlash", "Label the report": "Xabarga yorliq biriktiring", - "Postpone the expiration date": "Muddatini uzaytirish", + "Edit the expiration date": "Muddatini uzaytirish", "Select all": "Barchasini belgilash", "Deselect all": "Belgilovni bekor qilish", "Refresh": "Yangilash", diff --git a/client/app/data/l10n/vi.json b/client/app/data/l10n/vi.json index f659b8a2eb..b0e1868f4a 100644 --- a/client/app/data/l10n/vi.json +++ b/client/app/data/l10n/vi.json @@ -23,7 +23,7 @@ "Details": "Chi tiết", "Platform wizard": "Trình hướng dẫn của hệ thống", "Label the report": "Dán nhãn báo cáo", - "Postpone the expiration date": "Hoãn ngày hết hạn", + "Edit the expiration date": "Hoãn ngày hết hạn", "Select all": "Chọn tất cả", "Deselect all": "Bỏ chọn tất cả", "Refresh": "Làm mới", diff --git a/client/app/data/l10n/zh_CN.json b/client/app/data/l10n/zh_CN.json index 8ef9a3decf..3170e6ec26 100644 --- a/client/app/data/l10n/zh_CN.json +++ b/client/app/data/l10n/zh_CN.json @@ -23,7 +23,7 @@ "Details": "详细信息", "Platform wizard": "平台向导", "Label the report": "标记该报告", - "Postpone the expiration date": "推迟过期日期", + "Edit the expiration date": "推迟过期日期", "Select all": "全选", "Deselect all": "取消全选", "Refresh": "刷新", diff --git a/client/app/data/l10n/zh_HK.json b/client/app/data/l10n/zh_HK.json index 6721ecbd29..703fa8199d 100644 --- a/client/app/data/l10n/zh_HK.json +++ b/client/app/data/l10n/zh_HK.json @@ -23,7 +23,7 @@ "Details": "詳情", "Platform wizard": "平台設定精靈", "Label the report": "標籤此報告", - "Postpone the expiration date": "延遲到期日", + "Edit the expiration date": "延遲到期日", "Select all": "全選", "Deselect all": "取消全選", "Refresh": "重新整理", diff --git a/client/app/data/l10n/zh_TW.json b/client/app/data/l10n/zh_TW.json index 791756970a..bdb92f9d32 100644 --- a/client/app/data/l10n/zh_TW.json +++ b/client/app/data/l10n/zh_TW.json @@ -23,7 +23,7 @@ "Details": "詳細內容", "Platform wizard": "平台設定精靈", "Label the report": "標記分類報告", - "Postpone the expiration date": "延後到期日", + "Edit the expiration date": "延後到期日", "Select all": "選擇全部", "Deselect all": "取消全選", "Refresh": "更新", diff --git a/client/app/translations.html b/client/app/translations.html index 7336c7d918..3962b8e4c3 100644 --- a/client/app/translations.html +++ b/client/app/translations.html @@ -179,4 +179,3 @@ Custom Act on behalf of a whistleblower The link will expire in 7 days. -Edit the expiration date diff --git a/client/pot/am.po b/client/pot/am.po index 2bda789d06..e1709b3e05 100644 --- a/client/pot/am.po +++ b/client/pot/am.po @@ -87,7 +87,7 @@ msgstr "የመሳርያ ስርዓት አዋቂ" msgid "Label the report" msgstr "ሪፖርቱን ሰይሙ" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "መቃጠያ ቀን አስተላልፍ" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "" @@ -1160,7 +1157,7 @@ msgstr "በግድ የተመረጠ" msgid "Allow the recipient to delete reports" msgstr "ተቀባዩ ሪፖርቶች እንዲያጠፋ ፍቀዱ" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "ተቀባዩ የሪፖርት መቃጠያ ቀን እንዲያስተላልፍ ፍቀድ" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "ንብረቱ መዳረሻ በቶር ኔትዎርክ በኩል ብቻ ነ msgid "The upload request exceeds the size limit" msgstr "የጭነት ጥያቄው ከተፈቀደው ወሰን ያልፋል" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ar.po b/client/pot/ar.po index 936e73747f..4c5fd7b8e2 100644 --- a/client/pot/ar.po +++ b/client/pot/ar.po @@ -55,7 +55,7 @@ msgid "" msgstr "" "Project-Id-Version: GlobaLeaks\n" "PO-Revision-Date: 2013-05-29 17:59+0000\n" -"Last-Translator: Giovanni Pellerano , 2014-2018,2020-2022,2024\n" +"Last-Translator: Muhammad Elghdban , 2020,2023-2024\n" "Language-Team: Arabic (http://app.transifex.com/otf/globaleaks/language/ar/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -135,7 +135,7 @@ msgstr "معالج المنصة" msgid "Label the report" msgstr "صنّف البلاغ" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "تأجيل تاريخ نهاية الصلوحية" msgid "Select all" @@ -580,9 +580,6 @@ msgstr "اعمل بالنيابة عن مخبر." msgid "The link will expire in 7 days." msgstr "ستنتهي صلاحية الرابط خلال 7 أيام." -msgid "Edit the expiration date" -msgstr "تأجيل تاريخ نهاية الصلوحية" - msgid "File a report" msgstr "تقديم بلاغ" @@ -1208,7 +1205,7 @@ msgstr "مختارة بالقوّة" msgid "Allow the recipient to delete reports" msgstr "السماح للمتلقين بحذف البلاغات" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "السماح للمتلقّي بتأجيل تاريخ انتهاء صلاحية الابلاغ" msgid "Give this user ability to grant user access to reports" @@ -1383,6 +1380,9 @@ msgstr "يمكن الوصول إلى المحتوى فقط ضمن شبكة Tor" msgid "The upload request exceeds the size limit" msgstr "الملفات المراد رفعها تتخطى السعة المسموح بها." +msgid "A user with this username already exists" +msgstr "هناك شخص يستخدم اسم المستخدم هذا بالفعل" + msgid "You are operating on behalf of a whistleblower." msgstr "أنت تعمل بالنيابة عن مخبر." diff --git a/client/pot/az.po b/client/pot/az.po index e2f5752fc1..633f4bd225 100644 --- a/client/pot/az.po +++ b/client/pot/az.po @@ -93,7 +93,7 @@ msgstr "Proqram quraşdırması" msgid "Label the report" msgstr "Hesabatı etiketlə" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Son istifadə tarixini dəyiş" msgid "Select all" @@ -538,9 +538,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Hesabat göndər" @@ -1166,7 +1163,7 @@ msgstr "Zorla seçilmiş" msgid "Allow the recipient to delete reports" msgstr "Alıcının hesabatları silməsinə icazə verin" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Alıcının hesabatların son tarixini dəyişməsinə icazə verin" msgid "Give this user ability to grant user access to reports" @@ -1341,6 +1338,9 @@ msgstr "Resursa giriş yalnız Tor şəbəkəsi vasitəsiylə mümkündür" msgid "The upload request exceeds the size limit" msgstr "Yükləmə tələbi ölçü həddini aşır" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ba.po b/client/pot/ba.po index ed2d4e7f9d..25311567fc 100644 --- a/client/pot/ba.po +++ b/client/pot/ba.po @@ -87,7 +87,7 @@ msgstr "Платформа оҫтаһы" msgid "Label the report" msgstr "Материалдар бирелешен билдәләү" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Мөҙҙәт тамамланышын кисектереү" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Отчет бирергә" @@ -1160,7 +1157,7 @@ msgstr "Үтенес буйынса һайланды" msgid "Allow the recipient to delete reports" msgstr "Ҡабул итеүсегә отчеттарҙы юйыу рөхсәте биреү" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Ҡабул итеүсегә отчеттарҙың мөҙҙәт ғәмәле сығыуын кисектереүгә рөхсәт бирергә" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "Ресурсҡа инеү мөмкинлеге тик Tor селтәре msgid "The upload request exceeds the size limit" msgstr "Серверға файлды тейәү үтенесе ҡуйылған лимитты үтә" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/be.po b/client/pot/be.po index 36615f36ea..9a62c4d12d 100644 --- a/client/pot/be.po +++ b/client/pot/be.po @@ -87,7 +87,7 @@ msgstr "Майстар наладу платформы" msgid "Label the report" msgstr "Тытул заявы" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Перанесці сканчэнне тэрміну дзеяння" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Падаць справаздачу" @@ -1160,7 +1157,7 @@ msgstr "Абавязковы элемент" msgid "Allow the recipient to delete reports" msgstr "Дазволіць атрымальніку выдаляць справаздачы" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Дазволіць атрымальніку пераносіць сканчэнне тэрміну дзеяння справаздачы" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "Даступ да рэсурсу можна атрымаць тольк msgid "The upload request exceeds the size limit" msgstr "Файл для загрузкі перавышае максімальны памер" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/bg.po b/client/pot/bg.po index f505ba1740..2bb9476208 100644 --- a/client/pot/bg.po +++ b/client/pot/bg.po @@ -96,7 +96,7 @@ msgstr "Съветник за платформата" msgid "Label the report" msgstr "Етикиране на доклада" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Отлагане на датата на изтичане" msgid "Select all" @@ -541,9 +541,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Картотекиране на сигнал" @@ -1169,7 +1166,7 @@ msgstr "Принудително избрано" msgid "Allow the recipient to delete reports" msgstr "Разрешаване на получателите да изтриват сигнали" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Разрешаване на получателя да отлага датата на изтичане на сигнала" msgid "Give this user ability to grant user access to reports" @@ -1344,6 +1341,9 @@ msgstr "Достъп до ресурса може да се осъществи msgid "The upload request exceeds the size limit" msgstr "Заявеният за качване файл превишава ограничението за размер" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/bn.po b/client/pot/bn.po index 3b96cbdbde..146d00ae8e 100644 --- a/client/pot/bn.po +++ b/client/pot/bn.po @@ -93,7 +93,7 @@ msgstr "প্লাটফর্ম উইজার্ড" msgid "Label the report" msgstr "রিপোর্টটিকে চিহ্নিত করুন" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "মেয়াদ উত্তীর্ণের তারিখ স্থগিত করুন" msgid "Select all" @@ -538,9 +538,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "একটি রিপোর্ট জমা দিন" @@ -1166,7 +1163,7 @@ msgstr "জোরপূর্বক নির্বাচিত" msgid "Allow the recipient to delete reports" msgstr "প্রাপককে প্রতিবেদনগুলি মুছে ফেলার অনুমতি দিন" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "প্রাপককে রিপোর্টের মেয়াদ শেষ হওয়ার তারিখ স্থগিত করার অনুমতি দিন" msgid "Give this user ability to grant user access to reports" @@ -1341,6 +1338,9 @@ msgstr "কেবলমাত্র টর নেটওয়ার্কের msgid "The upload request exceeds the size limit" msgstr "আপলোডের অনুরোধটি আকারের সীমা অতিক্রম করেছে" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/bo.po b/client/pot/bo.po index 914c7d09e3..09a571c05a 100644 --- a/client/pot/bo.po +++ b/client/pot/bo.po @@ -87,7 +87,7 @@ msgstr "གླེང་སྟེགས་ཝི་ཛཌ།" msgid "Label the report" msgstr "སྙན་ཐོ་རྟགས་རྒྱག" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "དུས་ཡོལ་ཚེས་གྲངས་ཕྱི་བཤོལ་བྱ།" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "སྙན་ཞུ་ཞིག་ཞུ་གཏུག་བྱ།" @@ -1160,7 +1157,7 @@ msgstr "བཙན་སྐུལ་ངང་འདེམས་ཟིན།" msgid "Allow the recipient to delete reports" msgstr "འབྱོར་ཡུལ་ལ་སྙན་ཐོ་བསུབ་དུ་འཇུག" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "འབྱོར་ཡུལ་ལ་སྙན་ཐོའི་དུས་ཡོལ་ཚེས་གྲངས་ཕྱི་བཤོལ་བྱེད་དུ་འཇུག" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "རྒྱུ་ཆ་དེ་ Tor དྲ་ལམ་ཁོ་ན་བ msgid "The upload request exceeds the size limit" msgstr "ཡར་འཇུག་རེ་ཞུའི་ཆ་ཚད་ཀྱི་ཚད་མཚམས་བརྒལ་འདུག" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/bs.po b/client/pot/bs.po index 919adbc977..17544dc2d1 100644 --- a/client/pot/bs.po +++ b/client/pot/bs.po @@ -91,7 +91,7 @@ msgstr "Asistent za platformu" msgid "Label the report" msgstr "Označi izvještaj" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Odgodi rok isteka" msgid "Select all" @@ -536,9 +536,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Podnesi izvještaj" @@ -1164,7 +1161,7 @@ msgstr "Prisilno izabrane" msgid "Allow the recipient to delete reports" msgstr "Dozvolite primaocu da briše prijave" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Dozvolite primaocu da odgodi kada prijava ističe" msgid "Give this user ability to grant user access to reports" @@ -1339,6 +1336,9 @@ msgstr "Ovom resursu je moguće pristupiti samo preko Tor mreže" msgid "The upload request exceeds the size limit" msgstr "Zahtjev za upload premašuje dozvoljenu veličinu" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ca.po b/client/pot/ca.po index 881a692dc5..035b06f5c6 100644 --- a/client/pot/ca.po +++ b/client/pot/ca.po @@ -8,7 +8,7 @@ # estrella1876lc , 2014 # estrella1876lc , 2014-2015 # Francisco Huerta , 2016,2019 -# Giovanni Pellerano , 2014-2018,2020-2022 +# Giovanni Pellerano , 2014-2018,2020-2022,2024 # b33a4006134bb6ee62b30fc0fac5cec6, 2016 # b33a4006134bb6ee62b30fc0fac5cec6, 2016 # Joan Bitlloch , 2017-2021 @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: GlobaLeaks\n" "PO-Revision-Date: 2013-05-29 17:59+0000\n" -"Last-Translator: José Luis Ramirez, 2022-2023\n" +"Last-Translator: Giovanni Pellerano , 2014-2018,2020-2022,2024\n" "Language-Team: Catalan (http://app.transifex.com/otf/globaleaks/language/ca/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -105,8 +105,8 @@ msgstr "Persona assistent de la plataforma informàtica" msgid "Label the report" msgstr "Etiqueta l’informe" -msgid "Postpone the expiration date" -msgstr "Posposa la data de caducitat" +msgid "Edit the expiration date" +msgstr "Editar la data de venciment" msgid "Select all" msgstr "Selecciona-ho tot" @@ -550,9 +550,6 @@ msgstr "Actuar en nom d'un denunciant" msgid "The link will expire in 7 days." msgstr "L'enllaç expirarà en 7 dies" -msgid "Edit the expiration date" -msgstr "Editar la data de venciment" - msgid "File a report" msgstr "Presentar un informe" @@ -1178,7 +1175,7 @@ msgstr "Obligatòriament seleccionats" msgid "Allow the recipient to delete reports" msgstr "Permet al destinatari esborrar informes" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Permet al destinatari ajornar la data d'expiració de l'informe" msgid "Give this user ability to grant user access to reports" @@ -1353,6 +1350,9 @@ msgstr "Només es pot accedir a aquest recurs a través de la xarxa Tor" msgid "The upload request exceeds the size limit" msgstr "La petició de pujada preval sobre els límits de volum de dades" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Vosté està operant en nom d'un denunciant" diff --git a/client/pot/ca@valencia.po b/client/pot/ca@valencia.po index dff78f5c48..006043234b 100644 --- a/client/pot/ca@valencia.po +++ b/client/pot/ca@valencia.po @@ -6,7 +6,7 @@ # Enrique Blat Puchades , 2020 # estrella1876lc , 2014 # Francisco Huerta , 2016 -# Giovanni Pellerano , 2018-2022 +# Giovanni Pellerano , 2018-2022,2024 # b33a4006134bb6ee62b30fc0fac5cec6, 2016 # Joan Bitlloch , 2017 # José Javier Alamá Izquierdo, 2022-2024 @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: GlobaLeaks\n" "PO-Revision-Date: 2013-05-29 17:59+0000\n" -"Last-Translator: José Javier Alamá Izquierdo, 2022-2024\n" +"Last-Translator: Giovanni Pellerano , 2018-2022,2024\n" "Language-Team: Catalan (Valencian) (http://app.transifex.com/otf/globaleaks/language/ca@valencia/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -100,8 +100,8 @@ msgstr "Assistent de la plataforma" msgid "Label the report" msgstr "Etiqueta l’informe" -msgid "Postpone the expiration date" -msgstr "Pospose la data de caducitat" +msgid "Edit the expiration date" +msgstr "Editar la data de venciment" msgid "Select all" msgstr "Selecciona-ho tot" @@ -545,9 +545,6 @@ msgstr "Actuar en nom d'un denunciant" msgid "The link will expire in 7 days." msgstr "L'enllaç expirarà en 7 dies" -msgid "Edit the expiration date" -msgstr "Editar la data de venciment" - msgid "File a report" msgstr "Presentar una denúncia." @@ -1173,7 +1170,7 @@ msgstr "Obligatòriament seleccionats" msgid "Allow the recipient to delete reports" msgstr "Permet al destinatari eliminar denúncies" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Permet al destinatari pospondre la data d'expiració d'una denúncia" msgid "Give this user ability to grant user access to reports" @@ -1348,6 +1345,9 @@ msgstr "Només es pot accedir a aquest recurs mitjançant la xarxa Tor" msgid "The upload request exceeds the size limit" msgstr "La sol·licitud de pujada excedeix el limit de dades" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Vosté està operant en nom d'un denunciant" diff --git a/client/pot/ce.po b/client/pot/ce.po index 3658fa6115..4960b9207c 100644 --- a/client/pot/ce.po +++ b/client/pot/ce.po @@ -88,7 +88,7 @@ msgstr "Платформин пхьар" msgid "Label the report" msgstr "Орзана тIе билгало хIоттае" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Чекхдаларан хан дlататта" msgid "Select all" @@ -533,9 +533,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Арз чудала" @@ -1161,7 +1158,7 @@ msgstr "Нуьцкъала хаьржина" msgid "Allow the recipient to delete reports" msgstr "ДIаэцархочунна аьрзнаш дIадайъа бакъо луо" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "ДIаэцархочунна арз чекхдаларан хан дIататта бакъо луо " msgid "Give this user ability to grant user access to reports" @@ -1336,6 +1333,9 @@ msgstr "Tor машанехула бен тlекхочийла дац ресур msgid "The upload request exceeds the size limit" msgstr "Бараман лаккхарчу тlегlанал тlехдаьлла дIахIотторан дехар" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/crh.po b/client/pot/crh.po index 3a19236399..696be3dad6 100644 --- a/client/pot/crh.po +++ b/client/pot/crh.po @@ -86,7 +86,7 @@ msgstr "Платформа устасы" msgid "Label the report" msgstr "Малюматлар берильгенини къайд этмек " -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Сонъ къуллама тарихини кериге чекмек" msgid "Select all" @@ -531,9 +531,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Эсабат бермек" @@ -1159,7 +1156,7 @@ msgstr "Джебрен сайланды" msgid "Allow the recipient to delete reports" msgstr "Алыджыгъа эсабатларны ёкъ этмеге изин бермек" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Алыджыгъа эсабат битме муддетини кечиктирмеге изин бермек" msgid "Give this user ability to grant user access to reports" @@ -1334,6 +1331,9 @@ msgstr "Ресурскъа иришим тек Tor агъындан мумкюн msgid "The upload request exceeds the size limit" msgstr "Серверге файл юклемесине соратма тайин этильген лимиттен устюндир" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/cs.po b/client/pot/cs.po index 8cc7d28730..13ffc1962d 100644 --- a/client/pot/cs.po +++ b/client/pot/cs.po @@ -2,7 +2,7 @@ # Translators: # A5h8d0wf0x , 2014 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 -# Giovanni Pellerano , 2014-2022 +# Giovanni Pellerano , 2014-2022,2024 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: GlobaLeaks\n" "PO-Revision-Date: 2013-05-29 17:59+0000\n" -"Last-Translator: Jiří Skryja, 2022-2024\n" +"Last-Translator: Giovanni Pellerano , 2014-2022,2024\n" "Language-Team: Czech (http://app.transifex.com/otf/globaleaks/language/cs/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -99,8 +99,8 @@ msgstr "Průvodce platformou" msgid "Label the report" msgstr "Označte oznámení štítkem" -msgid "Postpone the expiration date" -msgstr "Odložit datum vypršení" +msgid "Edit the expiration date" +msgstr " \nUpravte datum vypršení platnosti" msgid "Select all" msgstr "Označit vše" @@ -544,9 +544,6 @@ msgstr "Jednat ve prospěch oznamovatele" msgid "The link will expire in 7 days." msgstr "Platnost odkazu vyprší za 7 dní." -msgid "Edit the expiration date" -msgstr "Upravte datum vypršení platnosti" - msgid "File a report" msgstr "Podat oznámení" @@ -1172,7 +1169,7 @@ msgstr "Nastaveno administrátorem" msgid "Allow the recipient to delete reports" msgstr "Povolit příjemcům smazat oznámení" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Povolit příjemci odložit datum expirace oznámení" msgid "Give this user ability to grant user access to reports" @@ -1347,6 +1344,9 @@ msgstr "Zdroj může být přístupný pouze uvnitř sítě Tor" msgid "The upload request exceeds the size limit" msgstr "Požadavek na upload přesahuje povolenou velikost." +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Jednáte ve prospěch oznamovatele." diff --git a/client/pot/da.po b/client/pot/da.po index 20328e3eb6..89f29d10e8 100644 --- a/client/pot/da.po +++ b/client/pot/da.po @@ -96,7 +96,7 @@ msgstr "Platformsopsætning" msgid "Label the report" msgstr "Navngiv denne indberetningen" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Udsæt udløbsdatoen" msgid "Select all" @@ -541,9 +541,6 @@ msgstr "Handle på vegne af whistleblower" msgid "The link will expire in 7 days." msgstr "Dette link vil udløbe om 7 dage." -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Indsend en rapportering" @@ -1169,7 +1166,7 @@ msgstr "Tvunget valgt" msgid "Allow the recipient to delete reports" msgstr "Tillad modtageren at slette indberetninger" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Tillad modtageren at udsætte udløbsdatoen på indberetningen" msgid "Give this user ability to grant user access to reports" @@ -1344,6 +1341,9 @@ msgstr "Denne ressource kan kun tilgås via Tor netværket" msgid "The upload request exceeds the size limit" msgstr "Upload overstiger tilladt størrelse" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Du handler på vegne af en whistleblower" diff --git a/client/pot/de.po b/client/pot/de.po index 272a62c663..708350bc56 100644 --- a/client/pot/de.po +++ b/client/pot/de.po @@ -5,7 +5,7 @@ # b33a4006134bb6ee62b30fc0fac5cec6, 2013,2016 # Charles Peltier , 2015 # Ettore Atalan , 2014-2024 -# Giovanni Pellerano , 2014-2018,2020-2022 +# Giovanni Pellerano , 2014-2018,2020-2022,2024 # b33a4006134bb6ee62b30fc0fac5cec6, 2013,2016 # b33a4006134bb6ee62b30fc0fac5cec6, 2013,2016 # Jack Pudding, 2015 @@ -134,8 +134,8 @@ msgstr "Plattformassistent" msgid "Label the report" msgstr "Den Bericht bezeichnen" -msgid "Postpone the expiration date" -msgstr "Ablaufdatum hinausschieben" +msgid "Edit the expiration date" +msgstr "Ablaufdatum bearbeiten" msgid "Select all" msgstr "Alle auswählen" @@ -579,9 +579,6 @@ msgstr "Im Auftrag eines Hinweisgebers handeln" msgid "The link will expire in 7 days." msgstr "Dieser Link wird in 7 Tagen ablaufen." -msgid "Edit the expiration date" -msgstr "Ablaufdatum bearbeiten" - msgid "File a report" msgstr "Einen Bericht einreichen" @@ -1207,7 +1204,7 @@ msgstr "Zwingend ausgewählt" msgid "Allow the recipient to delete reports" msgstr "Empfängern das Löschen von Hinweisen erlauben" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Empfängern das Hinausschieben des Berichtablaufdatums erlauben" msgid "Give this user ability to grant user access to reports" @@ -1382,6 +1379,9 @@ msgstr "Ressource kann ausschließlich über das Tor-Netzwerk aufgerufen werden" msgid "The upload request exceeds the size limit" msgstr "Der Upload überschreitet das eingestellte MB Limit." +msgid "A user with this username already exists" +msgstr "Ein Benutzer mit diesem Benutzernamen existiert bereits" + msgid "You are operating on behalf of a whistleblower." msgstr "Sie handeln im Auftrag eines Hinweisgebers." diff --git a/client/pot/dv.po b/client/pot/dv.po index f95bd61075..995b800e94 100644 --- a/client/pot/dv.po +++ b/client/pot/dv.po @@ -91,7 +91,7 @@ msgstr "ޕްލެޓްފޯރމް ވިޒާރޑް" msgid "Label the report" msgstr "ރިޕޯޓް ލޭބަލްކުރުމަށް" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "މުއްދަތު ހަމަވާ ތާރީޙް ލަސްކުރުމަށް" msgid "Select all" @@ -536,9 +536,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "ރިޕޯޓެއް ފައިލް ކުރުން" @@ -1164,7 +1161,7 @@ msgstr "ބާރާއެކު ސިލެކްޝަން ހެދުން" msgid "Allow the recipient to delete reports" msgstr "ރިސިޕިއަންޓަށް ރިޕޯޓު ފުހެލުމުގެ ހުއްދަ ދިނުމަށް" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "ރިސިޕިއަންޓަށް ރިޕޯޓްގެ މުއްދަތުހަމަވާ ތާރީޚް ފަސްކުރުމަށް ހުއްދަ ދިނުން" msgid "Give this user ability to grant user access to reports" @@ -1339,6 +1336,9 @@ msgstr "ވަޞީލަތްތަކުގެ ބޭނުންކުރެވޭނީ ހަމައެކ msgid "The upload request exceeds the size limit" msgstr "އަޕްލޯޑް ކުރަން ބޭނުންވާ މީޑިއާގެ ސައިޒް ލިމިޓަވުރެ ބޮޑު" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/el.po b/client/pot/el.po index 56ef9408a2..606a6748f7 100644 --- a/client/pot/el.po +++ b/client/pot/el.po @@ -99,7 +99,7 @@ msgstr "Οδηγός πλατφόρμας" msgid "Label the report" msgstr "Ετικέτα αναφοράς" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Αναβολή της ημερομηνίας λήξης" msgid "Select all" @@ -544,9 +544,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Καταχωρήστε μια αναφορά" @@ -1172,7 +1169,7 @@ msgstr "Υποχρεωτικά επιλεγμένο" msgid "Allow the recipient to delete reports" msgstr "Επιτρέψτε στον παραλήπτη να διαγράφει αναφορές" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Επιτρέψτε στον παραλήπτη να αναβάλει την ημερομηνία λήξης της αναφοράς" msgid "Give this user ability to grant user access to reports" @@ -1347,6 +1344,9 @@ msgstr "Το περιεχόμενο είναι προσβάσιμο μόνο μ msgid "The upload request exceeds the size limit" msgstr "Το αίτημα ανεβάσματος ξεπερνά τα όρια μεγέθους" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Κάνετε ενέργειες εκ μέρους ενός υποβάλλοντα." diff --git a/client/pot/en.po b/client/pot/en.po index 0974128bde..bb78931b3f 100644 --- a/client/pot/en.po +++ b/client/pot/en.po @@ -81,8 +81,8 @@ msgstr "Platform wizard" msgid "Label the report" msgstr "Label the report" -msgid "Postpone the expiration date" -msgstr "Postpone the expiration date" +msgid "Edit the expiration date" +msgstr "Edit the expiration date" msgid "Select all" msgstr "Select all" @@ -644,9 +644,6 @@ msgstr "Maximum number of selectable recipients:" msgid "Show recipients in alphabetical order" msgstr "Show recipients in alphabetical order" -msgid "Allow the whistleblower to add attachments" -msgstr "Allow the whistleblower to add attachments" - msgid "Additional questionnaire" msgstr "Additional questionnaire" @@ -1170,8 +1167,8 @@ msgstr "Forcefully selected" msgid "Allow the recipient to delete reports" msgstr "Allow the recipient to delete reports" -msgid "Allow the recipient to postpone the report expiration date" -msgstr "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" +msgstr "Allow the recipient to edit the report expiration date" msgid "Give this user ability to grant user access to reports" msgstr "Give this user ability to grant user access to reports" @@ -1349,6 +1346,9 @@ msgstr "Resource can only be accessed via the Tor network" msgid "The upload request exceeds the size limit" msgstr "The upload request exceeds the size limit" +msgid "A user with this username already exists" +msgstr "A user with this username already exists" + msgid "You are operating on behalf of a whistleblower." msgstr "You are operating on behalf of a whistleblower." @@ -1419,9 +1419,6 @@ msgstr "Recipients have requested you to fill an additional questionnaire." msgid "Fill the additional questionnaire" msgstr "Fill the additional questionnaire" -msgid "Allow the whistleblower to write comments" -msgstr "Allow the whistleblower to write comments" - msgid "From:" msgstr "From:" diff --git a/client/pot/es.po b/client/pot/es.po index aa1ea96ae2..78a65e7da3 100644 --- a/client/pot/es.po +++ b/client/pot/es.po @@ -18,7 +18,7 @@ # 4b8fe8aa5774ddeb3c4c7817cd28f50e_d751ab4 <55c3bb72c999b01f254463d72e197fd7_99140>, 2013 # Federico Scrinzi , 2013 # Francisco Huerta , 2016 -# Giovanni Pellerano , 2013-2023 +# Giovanni Pellerano , 2013-2024 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: GlobaLeaks\n" "PO-Revision-Date: 2013-05-29 17:59+0000\n" -"Last-Translator: José Javier Alamá Izquierdo, 2023-2024\n" +"Last-Translator: Giovanni Pellerano , 2013-2024\n" "Language-Team: Spanish (http://app.transifex.com/otf/globaleaks/language/es/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -126,8 +126,8 @@ msgstr "Asistente de la plataforma" msgid "Label the report" msgstr "Etiquete la denuncia" -msgid "Postpone the expiration date" -msgstr "Posponer la fecha de vencimiento" +msgid "Edit the expiration date" +msgstr "Editar la fecha de vencimiento" msgid "Select all" msgstr "Seleccionar todo" @@ -571,9 +571,6 @@ msgstr "Actuar en nombre de un denunciante" msgid "The link will expire in 7 days." msgstr "El enlace expirará en 7 días" -msgid "Edit the expiration date" -msgstr "Editar la fecha de vencimiento" - msgid "File a report" msgstr "Presentar una denuncia." @@ -1199,7 +1196,7 @@ msgstr "Seleccionado automáticamente" msgid "Allow the recipient to delete reports" msgstr "Permitir a los destinatarios borrar denuncias." -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Permitir al destinatario posponer la fecha de caducidad de una denuncia." msgid "Give this user ability to grant user access to reports" @@ -1374,6 +1371,9 @@ msgstr "Sólo se puede acceder a este recurso a través de la red Tor" msgid "The upload request exceeds the size limit" msgstr "El fichero que quiere subir excede el tamaño máximo permitido." +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Usted está actuando en nombre de un denunciante." diff --git a/client/pot/et.po b/client/pot/et.po index 7c9711b96f..33d4a0671d 100644 --- a/client/pot/et.po +++ b/client/pot/et.po @@ -87,7 +87,7 @@ msgstr "Platvormi viisard" msgid "Label the report" msgstr "Teate silt" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Lükka aegumiskuupäeva edasi" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Esita teavitus" @@ -1160,7 +1157,7 @@ msgstr "Valitud sundkorras" msgid "Allow the recipient to delete reports" msgstr "Luba saajal teavitusi kustutada" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Luba saajal teavituse aegumiskuupäeva edasi lükata" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "Ressursile pääseb ligi ainult Tor-i võrgu kaudu" msgid "The upload request exceeds the size limit" msgstr "Üleslaadimistaotlus ületab mahupiirangut" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/eu.po b/client/pot/eu.po index f0b187351c..13fa42cf58 100644 --- a/client/pot/eu.po +++ b/client/pot/eu.po @@ -104,7 +104,7 @@ msgstr "Plataformaren laguntzailea" msgid "Label the report" msgstr "Etiketatu salaketa" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Iraungitze data atzeratu" msgid "Select all" @@ -549,9 +549,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Aurkeztu salaketa." @@ -1177,7 +1174,7 @@ msgstr "Automatikoki hautatua" msgid "Allow the recipient to delete reports" msgstr "Hartzaileei salaketak ezabatzen utzi" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Hartzaileari salaketaren iraungitze data jartzen utzi" msgid "Give this user ability to grant user access to reports" @@ -1352,6 +1349,9 @@ msgstr "Baliabide honetan Tor saretik bakarrik sar daiteke" msgid "The upload request exceeds the size limit" msgstr "Igo nahi duzun fitxategiak zilegi den tamaina maximoa gainditzen du." +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/fa.po b/client/pot/fa.po index f4befb61ba..882563fb98 100644 --- a/client/pot/fa.po +++ b/client/pot/fa.po @@ -113,7 +113,7 @@ msgstr "دستیار پلتفرم" msgid "Label the report" msgstr "برچسب زدن گزارش" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "تعویق زمان انقضا" msgid "Select all" @@ -558,9 +558,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "تشکیل یک گزارش" @@ -1186,7 +1183,7 @@ msgstr "انتخاب شده به صورت اجباری" msgid "Allow the recipient to delete reports" msgstr "به گیرندگان اجازه دهید که گزارش‌ها را حذف کنند" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "به گیرنده اجازه دهید تا تاریخ انقضای گزارش را به تعویق بیاندازد" msgid "Give this user ability to grant user access to reports" @@ -1361,6 +1358,9 @@ msgstr "منبع فقط از طریق شبکهٔ Tor قابل دسترس است" msgid "The upload request exceeds the size limit" msgstr "درخواست بارگذاری از محدودهٔ حجم مجاز بیشتر است" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/fa_AF.po b/client/pot/fa_AF.po index 714dd97286..1f3893632b 100644 --- a/client/pot/fa_AF.po +++ b/client/pot/fa_AF.po @@ -87,7 +87,7 @@ msgstr "رهنمون پلتفورم" msgid "Label the report" msgstr "راپور را لیبل گذاری کنید" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "تاریخ انقضاء را به تعویق بیاندازید" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "ترتیب یک راپور" @@ -1160,7 +1157,7 @@ msgstr "انتخاب شده به اجبار " msgid "Allow the recipient to delete reports" msgstr "اجازه به دریافت کننده‌ برای پاک کردن راپورها" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "اجازه به دریافت کننده برای به تعویق انداختن تاریخ انقضاء راپور" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "منبع فقط با استفاده از شبکه Tor قابل دستر msgid "The upload request exceeds the size limit" msgstr "سایز اپلود درخواستی بزرگتر از حد مجاز است" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/fi.po b/client/pot/fi.po index 9692d04e69..867727d046 100644 --- a/client/pot/fi.po +++ b/client/pot/fi.po @@ -2,7 +2,7 @@ # Translators: # Akseli Pihlajamaa , 2020-2022 # Eva Simonsson, 2020-2021,2023-2024 -# Giovanni Pellerano , 2015-2018,2020-2022 +# Giovanni Pellerano , 2015-2018,2020-2022,2024 # Jaakko Korhonen , 2018 # John Wild , 2015 # Jorma Karvonen , 2015,2017,2020 @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: GlobaLeaks\n" "PO-Revision-Date: 2013-05-29 17:59+0000\n" -"Last-Translator: Eva Simonsson, 2020-2021,2023-2024\n" +"Last-Translator: Giovanni Pellerano , 2015-2018,2020-2022,2024\n" "Language-Team: Finnish (http://app.transifex.com/otf/globaleaks/language/fi/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -96,8 +96,8 @@ msgstr "Ohjattu alustan luominen" msgid "Label the report" msgstr "Anna ilmoitukselle nimi" -msgid "Postpone the expiration date" -msgstr "Siirrä vanhentumispäivää myöhäisemmäksi" +msgid "Edit the expiration date" +msgstr "Muokkaa vanhentumispäivää" msgid "Select all" msgstr "Valitse kaikki" @@ -541,9 +541,6 @@ msgstr "Toimi ilmoittajan puolesta" msgid "The link will expire in 7 days." msgstr "Linkki vanhenee 7 päivän kuluttua." -msgid "Edit the expiration date" -msgstr "Muokkaa vanhentumispäivää" - msgid "File a report" msgstr "Jätä vihje" @@ -1169,7 +1166,7 @@ msgstr "Pakotetusti valittu" msgid "Allow the recipient to delete reports" msgstr "Salli vastaanottajan poistaa raportteja" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Salli vastaanottajan lykätä raportin vanhentumispäivää" msgid "Give this user ability to grant user access to reports" @@ -1344,6 +1341,9 @@ msgstr "Resurssia voi käyttää vain Tor-verkon kautta" msgid "The upload request exceeds the size limit" msgstr "Lähetyspyyntö palvelimelle ylittää kokorajan" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Toimit ilmoittajan puolesta." diff --git a/client/pot/fr.po b/client/pot/fr.po index 275ded1fa4..2686fd57a5 100644 --- a/client/pot/fr.po +++ b/client/pot/fr.po @@ -10,7 +10,7 @@ # AO , 2016-2017 # AO , 2016 # AO , 2016 -# Giovanni Pellerano , 2013-2023 +# Giovanni Pellerano , 2013-2024 # b33a4006134bb6ee62b30fc0fac5cec6, 2013,2016 # b33a4006134bb6ee62b30fc0fac5cec6, 2013,2016 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 @@ -124,8 +124,8 @@ msgstr "Assistant de la plateforme" msgid "Label the report" msgstr "Étiqueter le signalement" -msgid "Postpone the expiration date" -msgstr "Différer la date d’expiration" +msgid "Edit the expiration date" +msgstr "Modifier la date d’expiration" msgid "Select all" msgstr "Tout sélectionner" @@ -569,9 +569,6 @@ msgstr "Agir pour le compte d’un lanceur d’alerte." msgid "The link will expire in 7 days." msgstr "Le lien arrivera à expiration dans sept jours." -msgid "Edit the expiration date" -msgstr "Modifier la date d’expiration" - msgid "File a report" msgstr "Remplir un signalement" @@ -1197,8 +1194,8 @@ msgstr "Sélectionné de force" msgid "Allow the recipient to delete reports" msgstr "Permettre au destinataire de supprimer des signalements" -msgid "Allow the recipient to postpone the report expiration date" -msgstr "Permettre au destinataire de différer la date d’expiration du signalement" +msgid "Allow the recipient to edit the report expiration date" +msgstr "Permettre au destinataire de modifier la date d’expiration du signalement" msgid "Give this user ability to grant user access to reports" msgstr "Donner à cet utilisateur la possibilité d’accorder l’accès des utilisateurs aux signalements" @@ -1372,6 +1369,9 @@ msgstr "L’accès à cette ressource ne peut se faire que par le réseau Tor" msgid "The upload request exceeds the size limit" msgstr "La demande de téléversement dépasse la limite de taille" +msgid "A user with this username already exists" +msgstr "Ce nom d’utilisateur existe déjà" + msgid "You are operating on behalf of a whistleblower." msgstr "Vous agissez pour le compte d’un lanceur d’alerte." diff --git a/client/pot/gl.po b/client/pot/gl.po index abe8b0e275..29251a794f 100644 --- a/client/pot/gl.po +++ b/client/pot/gl.po @@ -90,7 +90,7 @@ msgstr "Asistente de plataforma" msgid "Label the report" msgstr "Etiqueta a presentación" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Pospoñer a data de caducidade" msgid "Select all" @@ -535,9 +535,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "" @@ -1163,7 +1160,7 @@ msgstr "Seleccionado á forza" msgid "Allow the recipient to delete reports" msgstr "" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "" msgid "Give this user ability to grant user access to reports" @@ -1338,6 +1335,9 @@ msgstr "Só se pode acceder ao recurso a través da rede Tor" msgid "The upload request exceeds the size limit" msgstr "A solicitude de carga supera o límite de tamaño" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/he.po b/client/pot/he.po index 6a777f076e..fd8b85085b 100644 --- a/client/pot/he.po +++ b/client/pot/he.po @@ -103,7 +103,7 @@ msgstr "אשף פלטפורמה" msgid "Label the report" msgstr "סווג את הדוח" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "דחה את תאריך התפוגה" msgid "Select all" @@ -548,9 +548,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "" @@ -1176,7 +1173,7 @@ msgstr "נבחר בכוח" msgid "Allow the recipient to delete reports" msgstr "" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "" msgid "Give this user ability to grant user access to reports" @@ -1351,6 +1348,9 @@ msgstr "משאב ניתן לגשת רק בתוך רשת Tor" msgid "The upload request exceeds the size limit" msgstr "בקשת ההעלאה עולה על מגבלות הגודל" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/hr_HR.po b/client/pot/hr_HR.po index 486f9097c5..6bb62d9088 100644 --- a/client/pot/hr_HR.po +++ b/client/pot/hr_HR.po @@ -91,7 +91,7 @@ msgstr "Čarobnjak za platformu" msgid "Label the report" msgstr "Postavi oznaku na prijavu" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Odgodi datum isteka" msgid "Select all" @@ -536,9 +536,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Podnesite prijavu" @@ -1164,7 +1161,7 @@ msgstr "Prisilno odabrani" msgid "Allow the recipient to delete reports" msgstr "Dozvoli primateljima da brišu prijave" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Dopusti primatelju da odgodi datum isteka prijave" msgid "Give this user ability to grant user access to reports" @@ -1339,6 +1336,9 @@ msgstr "Resursu se može pristupiti samo preko Tor mreže" msgid "The upload request exceeds the size limit" msgstr "Zahtjev za postavljanje premašuje ograničenja veličine" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/hu_HU.po b/client/pot/hu_HU.po index 4630d4e80e..1abf5c5214 100644 --- a/client/pot/hu_HU.po +++ b/client/pot/hu_HU.po @@ -104,7 +104,7 @@ msgstr "Platform varázsló" msgid "Label the report" msgstr "Címkézze a beküldést" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Lejárati idő meghosszabítása" msgid "Select all" @@ -549,9 +549,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Jelentés beküldése" @@ -1177,7 +1174,7 @@ msgstr "Erőteljesen kiválasztva" msgid "Allow the recipient to delete reports" msgstr "Engedélyezés a címzetteknek, hogy töröljék a tippeket" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "A címzett számára engedélyezi a füles lejárati dátumának hosszabítását" msgid "Give this user ability to grant user access to reports" @@ -1352,6 +1349,9 @@ msgstr "A forrást csak a Tor hálózatán keresztül lehet elérni" msgid "The upload request exceeds the size limit" msgstr "A feltöltés meghadja a megengedett limitet" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/hy.po b/client/pot/hy.po index f9115d73c4..ae1674a29f 100644 --- a/client/pot/hy.po +++ b/client/pot/hy.po @@ -88,7 +88,7 @@ msgstr "Հարթակի հրաշագործ" msgid "Label the report" msgstr "Պիտակել զեկույցը" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Հետաձգել վերջնաժամկետը" msgid "Select all" @@ -533,9 +533,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Հաշվետվություն ներկայացնել" @@ -1161,7 +1158,7 @@ msgstr "Սահմանված է ադմինիստրատորի կողմից" msgid "Allow the recipient to delete reports" msgstr "Թույլ տալ տվյալ հասցեատիրոջը ջնջել հաշվետվությունները" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Թույլ տալ հասցեատիրոջը հետաձգել հաշվետվության վերջնաժամկետը" msgid "Give this user ability to grant user access to reports" @@ -1336,6 +1333,9 @@ msgstr "Ռեսուրսը հասանելի է միայն Tor ցանցի միջո msgid "The upload request exceeds the size limit" msgstr "Վերբեռնման հայտը գերազանցում է թույլատրելի չափը" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/id.po b/client/pot/id.po index 46e7ae153c..522dce9ec4 100644 --- a/client/pot/id.po +++ b/client/pot/id.po @@ -111,7 +111,7 @@ msgstr "Wisaya platform" msgid "Label the report" msgstr "Tandai laporan" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Menunda tanggal kedaluwarsa" msgid "Select all" @@ -556,9 +556,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Buat laporan" @@ -1184,7 +1181,7 @@ msgstr "Secara paksa dipilih" msgid "Allow the recipient to delete reports" msgstr "Izinkan penerima untuk menghapus laporan" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Izinkan penerima untuk menunda tanggal kedaluwarsa laporan" msgid "Give this user ability to grant user access to reports" @@ -1359,6 +1356,9 @@ msgstr "Sumber hanya dapat diakses melalui jaringan Tor" msgid "The upload request exceeds the size limit" msgstr "Permintaan unggahan melebihi batas ukuran" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/it.po b/client/pot/it.po index ee078d1504..69fcd68613 100644 --- a/client/pot/it.po +++ b/client/pot/it.po @@ -108,8 +108,8 @@ msgstr "Installazione della piattaforma" msgid "Label the report" msgstr "Assegna una etichetta alla segnalazione" -msgid "Postpone the expiration date" -msgstr "Posticipa la data di scadenza" +msgid "Edit the expiration date" +msgstr "Modifica la data di scadenza" msgid "Select all" msgstr "Seleziona tutto" @@ -553,9 +553,6 @@ msgstr "Agisci per conto di un segnalante" msgid "The link will expire in 7 days." msgstr "Il link ha una validità di 7 giorni." -msgid "Edit the expiration date" -msgstr "Modifica la data di scadenza" - msgid "File a report" msgstr "Invia una segnalazione" @@ -1181,7 +1178,7 @@ msgstr "Selezionato forzatamente" msgid "Allow the recipient to delete reports" msgstr "Permetti a questo ricevente di cancellare le segnalazioni." -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Permetti al ricevente di posticipare la data di scadenza" msgid "Give this user ability to grant user access to reports" @@ -1356,6 +1353,9 @@ msgstr "La risorsa può essere acceduta solo all'interno della rete Tor" msgid "The upload request exceeds the size limit" msgstr "La richiesta di upload supera la dimensione massima in MB" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Stai operando per conto di un segnalante." diff --git a/client/pot/ja.po b/client/pot/ja.po index 66476d5ae6..dbd002c470 100644 --- a/client/pot/ja.po +++ b/client/pot/ja.po @@ -91,7 +91,7 @@ msgstr "プラットフォーム ウィザード" msgid "Label the report" msgstr "報告にラベルを付ける" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "有効期限を延期する" msgid "Select all" @@ -536,9 +536,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "報告を保存する" @@ -1164,7 +1161,7 @@ msgstr "強制的に選択" msgid "Allow the recipient to delete reports" msgstr "受信者が報告を削除することを許可する" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "受信者が報告の有効期限を延長することを許可する" msgid "Give this user ability to grant user access to reports" @@ -1339,6 +1336,9 @@ msgstr "リソースはTorネットワーク内でのみアクセスできます msgid "The upload request exceeds the size limit" msgstr "アップロードリクエストがサイズ制限を超過しました" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ka.po b/client/pot/ka.po index f17d8aab02..0ed7f6b4de 100644 --- a/client/pot/ka.po +++ b/client/pot/ka.po @@ -86,7 +86,7 @@ msgstr "პლატფორმის ოსტატი" msgid "Label the report" msgstr "ანგარიშის დასათაურება" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "ვადის გასვლის თარიღის გადავადება" msgid "Select all" @@ -531,9 +531,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "ანგარიშის დაფაილება" @@ -1159,7 +1156,7 @@ msgstr "იძულებით შერჩეული" msgid "Allow the recipient to delete reports" msgstr "დართეთ ნება მიმღებს წაშალოს ანგარიშები" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "დართეთ ნება მიმღებს გადაავადოს ანგარიშის ვადის გასვლა" msgid "Give this user ability to grant user access to reports" @@ -1334,6 +1331,9 @@ msgstr "რესურსზე წვდომა შესაძლებე msgid "The upload request exceeds the size limit" msgstr "ატვირთვის მოთხოვნა აღემატება ზომის ლიმიტს" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/kk.po b/client/pot/kk.po index a40841ea95..f3c5c8343e 100644 --- a/client/pot/kk.po +++ b/client/pot/kk.po @@ -88,7 +88,7 @@ msgstr "Платформа шебері" msgid "Label the report" msgstr "Есепті белгілеу" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Жарамдылық мерзімін кейінге жылжыту" msgid "Select all" @@ -533,9 +533,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Есеп беру" @@ -1161,7 +1158,7 @@ msgstr "Мәжбүрлі түрде таңдалды" msgid "Allow the recipient to delete reports" msgstr "Алушыға есептерді жоюға рұқсат беру" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Алушыға есептің жарамдылық мерзімін кейінге қалдыруға рұқсат беру" msgid "Give this user ability to grant user access to reports" @@ -1336,6 +1333,9 @@ msgstr "Ресурстарға Tor желісі арқылы ғана қол ж msgid "The upload request exceeds the size limit" msgstr "Жүктеу сұранысы шекті мөлшерден асып тұр" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/km.po b/client/pot/km.po index a42351386f..310ee87d18 100644 --- a/client/pot/km.po +++ b/client/pot/km.po @@ -90,7 +90,7 @@ msgstr "ជំនួយការវេទិកា" msgid "Label the report" msgstr "ដាក់ឈ្មោះរបាយការណ៍" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "ពន្យាកាលបរិច្ឆេទផុតកំណត់" msgid "Select all" @@ -535,9 +535,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "បញ្ចូលរបាយការណ៍" @@ -1163,7 +1160,7 @@ msgstr "ជ្រើសរើសដោយបង្ខំ" msgid "Allow the recipient to delete reports" msgstr "អនុញ្ញាតអ្នកទទួលលុបរបាយការណ៍" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "អនុញ្ញាតអ្នកទទួលពន្យាពេលកាលបរិច្ឆេទផុតកំណត់របាយការណ៍" msgid "Give this user ability to grant user access to reports" @@ -1338,6 +1335,9 @@ msgstr "ធនធានអាចចូលប្រើប្រាស់បាន msgid "The upload request exceeds the size limit" msgstr "ការស្នើសុំបញ្ជូន​ លើសពីទំហំកំណត់" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ko.po b/client/pot/ko.po index 00073298f4..40d9368355 100644 --- a/client/pot/ko.po +++ b/client/pot/ko.po @@ -87,7 +87,7 @@ msgstr "플랫폼 마법사" msgid "Label the report" msgstr "보고서 라벨링" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "만료 날짜 연기" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "보고서 보관" @@ -1160,7 +1157,7 @@ msgstr "강제로 선택" msgid "Allow the recipient to delete reports" msgstr "수신자가 보고서를 삭제할 수 있도록 허용" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "수신자가 보고서 만료 날짜를 연기할 수 있도록 허용" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "리소스는 Tor 네트워크를 통해서만 액세스할 수 있습니 msgid "The upload request exceeds the size limit" msgstr "업로드 요청이 크기 제한을 초과합니다" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ky.po b/client/pot/ky.po index 4330570b37..33ec785faa 100644 --- a/client/pot/ky.po +++ b/client/pot/ky.po @@ -87,7 +87,7 @@ msgstr "Платформа устаты" msgid "Label the report" msgstr "Отчетту белгилеңиз" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Жарактуулук мөөнөтүн узартыңыз" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Отчет жазыңыз" @@ -1160,7 +1157,7 @@ msgstr "Мажбур менен тандалды" msgid "Allow the recipient to delete reports" msgstr "Алуучуга отчетторду өчүрүүгө уруксат бериңиз" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Алуучуга отчеттун жарактуулук мөөнөтүн узартууга уруксат бериңиз" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "Ресурска Tor тармагы аркылуу гана кирүүг msgid "The upload request exceeds the size limit" msgstr "Жүктөөгө талап болгондун өлчөмү чегинен ашып кетти" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/lo.po b/client/pot/lo.po index ae35d1ba42..a74542dc01 100644 --- a/client/pot/lo.po +++ b/client/pot/lo.po @@ -86,7 +86,7 @@ msgstr "ຕົວຊ່ວຍສ້າງແມ່ແບບ" msgid "Label the report" msgstr "ຕິດສະຫຼາກໃສ່ລາຍງານ" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "ເລື່ອນວັນທີໝົດອາຍຸ" msgid "Select all" @@ -531,9 +531,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "ຍື່ນລາຍງານ" @@ -1159,7 +1156,7 @@ msgstr "ຄັດເລືອກຢ່າງແຂງຂັນ" msgid "Allow the recipient to delete reports" msgstr "ອະນຸຍາດໃຫ້ຜູ້ຮັບລຶບລາຍງານ" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "ອະນຸຍາດໃຫ້ຜູ້ຮັບເລື່ອນວັນທີໝົດອາຍຸໃນການລາຍງານ" msgid "Give this user ability to grant user access to reports" @@ -1334,6 +1331,9 @@ msgstr "ສາມາດເຂົ້າເຖິງແຫຼ່ງຂໍ້ມູ msgid "The upload request exceeds the size limit" msgstr "ຄຳຮ້ອງຂໍການອັບໂຫຼດເກີນຂີດຈຳກັດຂອງຂະໜາດ" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/lt.po b/client/pot/lt.po index 6224847814..e0311791c9 100644 --- a/client/pot/lt.po +++ b/client/pot/lt.po @@ -87,7 +87,7 @@ msgstr "Platformos vedlys" msgid "Label the report" msgstr "Ženklinti pranešimą" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Atidėti galiojimo pabaigos datą" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "Veikti pranešėjo vardu" msgid "The link will expire in 7 days." msgstr "Nuoroda baigs galioti po 7 dienų." -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Teikti pranešimą" @@ -1160,7 +1157,7 @@ msgstr "Priverstinai atrinktas" msgid "Allow the recipient to delete reports" msgstr "Leisti gavėjui pranešimus ištrinti" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Leisti gavėjui atidėti pranešimo galiojimo pabaigos datą" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "Resursą galima pasiekti tik per „Tor“ tinklą" msgid "The upload request exceeds the size limit" msgstr "Įkeliamas prašymas viršija dydžio limitą" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Jūs veikiate pranešėjo vardu." diff --git a/client/pot/lv.po b/client/pot/lv.po index 3b9e1a26df..acc06a20a4 100644 --- a/client/pot/lv.po +++ b/client/pot/lv.po @@ -91,7 +91,7 @@ msgstr "Platformas vednis" msgid "Label the report" msgstr "Marķēt ziņojumu" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Atlikt termiņa beigas" msgid "Select all" @@ -536,9 +536,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Iesniegt ziņojumu" @@ -1164,7 +1161,7 @@ msgstr "Piespiedu kārtā atlasīts" msgid "Allow the recipient to delete reports" msgstr "Atļaut adresātam dzēst ziņojumus" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Atļaut adresātam atlikt ziņojuma termiņu" msgid "Give this user ability to grant user access to reports" @@ -1339,6 +1336,9 @@ msgstr "Saturam var piekļūt tikai Tor tīklā" msgid "The upload request exceeds the size limit" msgstr "Augšupielādes pieprasījums pārsniedz maksimālo pieļaujamo izmēru" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/mg.po b/client/pot/mg.po index 9027fb3b3f..c59f902953 100644 --- a/client/pot/mg.po +++ b/client/pot/mg.po @@ -102,7 +102,7 @@ msgstr "Assistant de la plateforme" msgid "Label the report" msgstr "Étiqueter l’envoi" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Repousser la date d’expiration" msgid "Select all" @@ -547,9 +547,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "" @@ -1175,7 +1172,7 @@ msgstr "Sélectionné de force" msgid "Allow the recipient to delete reports" msgstr "Permettre aux destinataires de supprimer des envois" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Autoriser les destinataires à repousser la date d’expiration des envois" msgid "Give this user ability to grant user access to reports" @@ -1350,6 +1347,9 @@ msgstr "L’accès à cette ressource ne peut se faire que par le réseau Tor" msgid "The upload request exceeds the size limit" msgstr "La demande de téléversement dépasse la limite de taille" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/mk.po b/client/pot/mk.po index 93070020f3..92207e7973 100644 --- a/client/pot/mk.po +++ b/client/pot/mk.po @@ -88,7 +88,7 @@ msgstr "Платформен волшебник" msgid "Label the report" msgstr "Означи го извештајот" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Одложи го датумот на истекување" msgid "Select all" @@ -533,9 +533,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Поднеси извештај" @@ -1161,7 +1158,7 @@ msgstr "Принудно избрани" msgid "Allow the recipient to delete reports" msgstr "Дозволи му на примачот да ги избрише извештаите" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Дозволи му на примачот да го одложи истекот на датумот на извештајот" msgid "Give this user ability to grant user access to reports" @@ -1336,6 +1333,9 @@ msgstr "На ресурсот може да му биде пристапено msgid "The upload request exceeds the size limit" msgstr "Барањето за прикачувања го надмина ограничувањето за големина" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ms.po b/client/pot/ms.po index 293e8ade2f..02ea1b69e9 100644 --- a/client/pot/ms.po +++ b/client/pot/ms.po @@ -86,7 +86,7 @@ msgstr "Wizard platform" msgid "Label the report" msgstr "Label laporan" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Tangguh tarikh tamat tempoh" msgid "Select all" @@ -531,9 +531,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Failkan laporan" @@ -1159,7 +1156,7 @@ msgstr "Dipilih secara paksa" msgid "Allow the recipient to delete reports" msgstr "Benarkan penerima untuk memadam laporan" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Benarkan penerima untuk menunda tarikh tamat tempoh laporan" msgid "Give this user ability to grant user access to reports" @@ -1334,6 +1331,9 @@ msgstr "Sumber hanya boleh diakses melalui rangkaian Tor" msgid "The upload request exceeds the size limit" msgstr "Permintaan muat naik melebihi had saiz" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/my.po b/client/pot/my.po index bda17c6b05..c068b59254 100644 --- a/client/pot/my.po +++ b/client/pot/my.po @@ -87,7 +87,7 @@ msgstr "ပလက်ဖောင်း ဝိဇ္ဇာ" msgid "Label the report" msgstr "အစီရင်ခံစာကို အညွှန်းတပ်ပါ" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "သက်တမ်းကုန်ဆုံးရက် ရွှေ့ဆိုင်းပါ" msgid "Select all" @@ -532,9 +532,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "အစီရင်ခံစာ တင်ပါ" @@ -1160,7 +1157,7 @@ msgstr "အတင်းအကျပ် ရွေးချယ်ထားကြ msgid "Allow the recipient to delete reports" msgstr "လက်ခံသူအား အစီရင်ခံစာများကို ဖျက်ခွင့်ပြုပါ" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "လက်ခံသူအား အစီရင်ခံစာ သက်တမ်းကုန်ဆုံးရက်ကို ရွှေ့ဆိုင်းခွင့်ပြုပါ" msgid "Give this user ability to grant user access to reports" @@ -1335,6 +1332,9 @@ msgstr "ရင်းမြစ်ကို Tor ကွန်ရက်မှတစ msgid "The upload request exceeds the size limit" msgstr "အပ်လုဒ် တောင်းဆိုမှုသည် အရွယ်အစား ကန့်သတ်ချက်ထက် ကျော်လွန်နေသည်" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/nb_NO.po b/client/pot/nb_NO.po index d5f343e281..cb0debb8d5 100644 --- a/client/pot/nb_NO.po +++ b/client/pot/nb_NO.po @@ -88,7 +88,7 @@ msgstr "Plattform-veileder" msgid "Label the report" msgstr "Merk rapporten" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Utsett utløpsdato" msgid "Select all" @@ -533,9 +533,6 @@ msgstr "Handle på vegne av en varsler" msgid "The link will expire in 7 days." msgstr "Lenken vil utløpe om 7 dager." -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Legg inn en rapport" @@ -1161,7 +1158,7 @@ msgstr "Påtvunget forvalg" msgid "Allow the recipient to delete reports" msgstr "Tillat mottakeren å slette rapporter" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Tillat mottakeren å utsette utløpsdatoen for rapporten" msgid "Give this user ability to grant user access to reports" @@ -1336,6 +1333,9 @@ msgstr "Ressurs kan nåes bare i Tor-nettverket" msgid "The upload request exceeds the size limit" msgstr "Opplastingsforespørselen overskrider størrelsesavgrensningen" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Du handler på vegne av en varsler." diff --git a/client/pot/nl.po b/client/pot/nl.po index dad81b0c1e..68232d04fa 100644 --- a/client/pot/nl.po +++ b/client/pot/nl.po @@ -130,7 +130,7 @@ msgstr "Platformwizard" msgid "Label the report" msgstr "Label de inzending" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Vervaldatum uitstellen" msgid "Select all" @@ -575,9 +575,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Dien een rapport in" @@ -1203,7 +1200,7 @@ msgstr "Actief geselecteerd" msgid "Allow the recipient to delete reports" msgstr "Sta ontvangers toe tips te verwijderen" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "De ontvanger mag de einddatum van de inzending uitstellen" msgid "Give this user ability to grant user access to reports" @@ -1378,6 +1375,9 @@ msgstr "Bron is alleen toegankelijk binnen het Tor-netwerk" msgid "The upload request exceeds the size limit" msgstr "De uploadaanvraag overstijgt de MB limiet" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/pl.po b/client/pot/pl.po index 0acea324da..1240df5f22 100644 --- a/client/pot/pl.po +++ b/client/pot/pl.po @@ -106,7 +106,7 @@ msgstr "Kreator platformy" msgid "Label the report" msgstr "Dodaj opis zgłoszenia" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Zmień datę wygaśnięcia" msgid "Select all" @@ -551,9 +551,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr " \nWyślij zgłoszenie" @@ -1179,7 +1176,7 @@ msgstr "Wybrane w wymuszony sposób" msgid "Allow the recipient to delete reports" msgstr "Odbiorcy mogą usuwać zgłoszenia" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Odbiorcy mogą zmieniać datę wygaśnięcia zgłoszenia" msgid "Give this user ability to grant user access to reports" @@ -1354,6 +1351,9 @@ msgstr "Dostęp do zasobów możliwy tylko poprzez sieć Tor." msgid "The upload request exceeds the size limit" msgstr "Żądanie wysłania przekracza limit rozmiaru" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ps.po b/client/pot/ps.po index c6b55acfa0..db99709515 100644 --- a/client/pot/ps.po +++ b/client/pot/ps.po @@ -86,7 +86,7 @@ msgstr "د پلیټ فارم ویزرډ" msgid "Label the report" msgstr "رپوټ لیبل کړئ" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "د انقضاء د نېټې ځنډول" msgid "Select all" @@ -531,9 +531,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "د رپوټ ورکول" @@ -1159,7 +1156,7 @@ msgstr "په زور سره ټاکل شوي" msgid "Allow the recipient to delete reports" msgstr "تر لاسه کوونکي ته اجازه ورکړئ تر څو رپوټونه پاک کړي" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "تر لاسه کوونکي ته اجازه ورکړئ تر څو د رپوټ د انقضاء نېټه وځنډوي" msgid "Give this user ability to grant user access to reports" @@ -1334,6 +1331,9 @@ msgstr "سرچینو ته یوازې کېدای شي د Tor د شبکې له ل msgid "The upload request exceeds the size limit" msgstr "د پورته کولو غوښتنه د ټاکل شوي اندازې له حد څخه زیاته ده" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/pt_BR.po b/client/pot/pt_BR.po index d9e22d2813..28496b8818 100644 --- a/client/pot/pt_BR.po +++ b/client/pot/pt_BR.po @@ -26,7 +26,7 @@ # Eduardo Bonsi, 2013 # Eduardo Bonsi, 2013-2014 # fc2d9c36d73e741383fbbf46a4aac49f_013445b, 2014 -# Giovanni Pellerano , 2014-2015,2017-2022 +# Giovanni Pellerano , 2014-2015,2017-2022,2024 # Hamilton Junior Mendes Lopes , 2015 # Hellen Cristina Silva , 2015 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: GlobaLeaks\n" "PO-Revision-Date: 2013-05-29 17:59+0000\n" -"Last-Translator: Cauan Henrique Zorzenon , 2023-2024\n" +"Last-Translator: Giovanni Pellerano , 2014-2015,2017-2022,2024\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/otf/globaleaks/language/pt_BR/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -126,8 +126,8 @@ msgstr "Assistente de plataforma" msgid "Label the report" msgstr "Etiquetar o relatório" -msgid "Postpone the expiration date" -msgstr "Adiar a data de expiração" +msgid "Edit the expiration date" +msgstr "Editar a data de expiração" msgid "Select all" msgstr "Selecione todas" @@ -571,9 +571,6 @@ msgstr "Agir em nome de um denunciante" msgid "The link will expire in 7 days." msgstr "O link expirará em 7 dias." -msgid "Edit the expiration date" -msgstr "Editar a data de expiração" - msgid "File a report" msgstr "Apresentar um relatório" @@ -1199,7 +1196,7 @@ msgstr "Selecionado à força " msgid "Allow the recipient to delete reports" msgstr "Permitir que os destinatários apaguem as denúncias" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Permitir o destinatário a postergar a data de expiração da submissão" msgid "Give this user ability to grant user access to reports" @@ -1374,6 +1371,9 @@ msgstr "Recurso só pode ser acessado dentro da rede Tor" msgid "The upload request exceeds the size limit" msgstr "O pedido de envio excede os limites de tamanho" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Você está operando em nome de um denunciante." diff --git a/client/pot/pt_PT.po b/client/pot/pt_PT.po index c69d25252d..6fb7cf4c0e 100644 --- a/client/pot/pt_PT.po +++ b/client/pot/pt_PT.po @@ -12,7 +12,7 @@ # Drew Melim , 2014,2018 # e8f1a29f7bd45d2490d729ad149fc504_6eadd8e, 2015 # fc2d9c36d73e741383fbbf46a4aac49f_013445b, 2014 -# Giovanni Pellerano , 2014-2018,2020-2023 +# Giovanni Pellerano , 2014-2018,2020-2024 # João Paulo Macedo Batalha , 2015 # José Anjos, 2022 # 425fe09b3064b9f906f637fff94056ae_a00ea56 <0fa3588fa89906bfcb3a354600956e0e_308047>, 2015-2016 @@ -31,7 +31,7 @@ msgid "" msgstr "" "Project-Id-Version: GlobaLeaks\n" "PO-Revision-Date: 2013-05-29 17:59+0000\n" -"Last-Translator: pcinacio, 2024\n" +"Last-Translator: Giovanni Pellerano , 2014-2018,2020-2024\n" "Language-Team: Portuguese (Portugal) (http://app.transifex.com/otf/globaleaks/language/pt_PT/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -111,8 +111,8 @@ msgstr "Assistente da plataforma" msgid "Label the report" msgstr "Etiquetar a submissão" -msgid "Postpone the expiration date" -msgstr "Adiar a data de expiração" +msgid "Edit the expiration date" +msgstr "Editar a data de expiração" msgid "Select all" msgstr "Selecionar tudo" @@ -556,9 +556,6 @@ msgstr "Agir em nome de um denunciante" msgid "The link will expire in 7 days." msgstr "O link expirará em 7 dias." -msgid "Edit the expiration date" -msgstr "Editar a data de expiração" - msgid "File a report" msgstr "Registar uma denúncia" @@ -1184,7 +1181,7 @@ msgstr "Selecionado à força" msgid "Allow the recipient to delete reports" msgstr "Permitir que o destinatário elimine denúncias" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Permitir que o destinatário adie a data de expiração da denúncia" msgid "Give this user ability to grant user access to reports" @@ -1359,6 +1356,9 @@ msgstr "Só é possível aceder a este recurso através da rede Tor" msgid "The upload request exceeds the size limit" msgstr "O pedido de envio excede o tamanho máximo" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "Você está operando em nome de um denunciante." diff --git a/client/pot/ro.po b/client/pot/ro.po index c9a0b43d39..ae7c445ba0 100644 --- a/client/pot/ro.po +++ b/client/pot/ro.po @@ -102,7 +102,7 @@ msgstr "Configurator platformă" msgid "Label the report" msgstr "Etichetează sesizarea" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Amână data de expirare" msgid "Select all" @@ -547,9 +547,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Depune o sesizare" @@ -1175,7 +1172,7 @@ msgstr "Selectat obligatoriu" msgid "Allow the recipient to delete reports" msgstr "Permite destinatarilor să șteargă sesizările" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Permite destinatarului să amâne data de expirare a sesizării" msgid "Give this user ability to grant user access to reports" @@ -1350,6 +1347,9 @@ msgstr "Resursa poate fi accesată numai prin intermediul rețelei Tor" msgid "The upload request exceeds the size limit" msgstr "Atașamentul depășește dimensiunea maximă acceptată" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ru.po b/client/pot/ru.po index c57c5167b0..06d10d714a 100644 --- a/client/pot/ru.po +++ b/client/pot/ru.po @@ -116,7 +116,7 @@ msgstr "Мастер платформы" msgid "Label the report" msgstr "Пометить подачу материалов" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Отложить срок истечения" msgid "Select all" @@ -561,9 +561,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Подать отчет" @@ -1189,7 +1186,7 @@ msgstr "Выбрано по требованию" msgid "Allow the recipient to delete reports" msgstr "Разрешить получателю удалять отчеты" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Разрешить получателю откладывать истечение срока действия отчета" msgid "Give this user ability to grant user access to reports" @@ -1364,6 +1361,9 @@ msgstr "Доступ к ресурсу возможен только из сет msgid "The upload request exceeds the size limit" msgstr "Запрос на загрузку файла на сервер превышает установленный лимит" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/sk.po b/client/pot/sk.po index d6f80e2152..fdd6971026 100644 --- a/client/pot/sk.po +++ b/client/pot/sk.po @@ -96,7 +96,7 @@ msgstr "Sprievodca platformou" msgid "Label the report" msgstr "Označte oznámenie štítkom" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Odložiť vypršanie platnosti" msgid "Select all" @@ -541,9 +541,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "podať oznámenie" @@ -1169,7 +1166,7 @@ msgstr "Nastavené administrátorom" msgid "Allow the recipient to delete reports" msgstr "Povoliť príjemcom zmazať podania" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Umožniť príjemcovi odložiť dátum exspirácie podania" msgid "Give this user ability to grant user access to reports" @@ -1344,6 +1341,9 @@ msgstr "Zdroj je prístupný iba v rámci siete Tor" msgid "The upload request exceeds the size limit" msgstr "Žiadosť na upload prekročila veľkostné limity" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/sl_SI.po b/client/pot/sl_SI.po index 3367057819..ba3d058753 100644 --- a/client/pot/sl_SI.po +++ b/client/pot/sl_SI.po @@ -3,7 +3,7 @@ # Aleš , 2016 # Dagmar Šober, 2023-2024 # Delo , 2014 -# Giovanni Pellerano , 2017,2020-2022 +# Giovanni Pellerano , 2017,2020-2022,2024 # Matija , 2015 # Štefan Baebler , 2020 # Vasja , 2021 @@ -92,8 +92,8 @@ msgstr "Čarovnik platforme" msgid "Label the report" msgstr "Označi prijavo" -msgid "Postpone the expiration date" -msgstr "Spremeni datum poteka veljavnosti" +msgid "Edit the expiration date" +msgstr "Uredi datum poteka veljavnosti" msgid "Select all" msgstr "Označi vse" @@ -537,9 +537,6 @@ msgstr "Ukrepanje v imenu prijavitelja nepravilnosti" msgid "The link will expire in 7 days." msgstr "Povezava bo potekla čez 7 dni." -msgid "Edit the expiration date" -msgstr "Uredi datum poteka veljavnosti" - msgid "File a report" msgstr "Oddaj prijavo" @@ -1165,7 +1162,7 @@ msgstr "Vnaprej določeno" msgid "Allow the recipient to delete reports" msgstr "Dovoli prejemniku, da zbriše prijave" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Dovoli prejemnikom spremembo roka veljavnosti prijav" msgid "Give this user ability to grant user access to reports" @@ -1340,6 +1337,9 @@ msgstr "Ta vir je dostopen le prek Tor omrežja" msgid "The upload request exceeds the size limit" msgstr "Zahteva za prenos presega omejitev velikosti" +msgid "A user with this username already exists" +msgstr "Uporabnik s tem uporabniškim imenom že obstaja" + msgid "You are operating on behalf of a whistleblower." msgstr "Delujete v imenu prijavitelja nepravilnosti." diff --git a/client/pot/sq.po b/client/pot/sq.po index 999b8bc9d3..c304f97614 100644 --- a/client/pot/sq.po +++ b/client/pot/sq.po @@ -7,7 +7,7 @@ # Bujar Tafili, 2015 # Florent , 2021-2022 # F Nilaj , 2016 -# Giovanni Pellerano , 2015-2022 +# Giovanni Pellerano , 2015-2022,2024 # Jakub Srna , 2014 # Roman 'Kaktuxista' Benji , 2014 # Tibor Deak , 2019,2021 @@ -95,8 +95,8 @@ msgstr "Ndihmës platforme" msgid "Label the report" msgstr "I vini raportimit një etiketë" -msgid "Postpone the expiration date" -msgstr "Shtyjini datën e skadimit" +msgid "Edit the expiration date" +msgstr "Modifica la data di scadenza" msgid "Select all" msgstr "Përzgjidhi krejt" @@ -540,9 +540,6 @@ msgstr "Veproni në këmbë të një nxjerrësi të fshehtash" msgid "The link will expire in 7 days." msgstr "Lidhja do të skadojë pas 7 ditësh" -msgid "Edit the expiration date" -msgstr "Përpunojini datën e skadimit" - msgid "File a report" msgstr "Depozitoni një raportim" @@ -1168,7 +1165,7 @@ msgstr "E përzgjedhur me zor" msgid "Allow the recipient to delete reports" msgstr "Lejoje marrësin të fshijë raportime" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Lejoje marrësin të shtyjë datën e skadimit të raportimit" msgid "Give this user ability to grant user access to reports" @@ -1343,6 +1340,9 @@ msgstr "Burimi mund të përdoret vetëm përmes rrjetit Tor" msgid "The upload request exceeds the size limit" msgstr "Kërkesa për ngarkim tejkalon kufirin për madhësitë" +msgid "A user with this username already exists" +msgstr "Ka tashmë një përdorues me atë emër përdoruesi" + msgid "You are operating on behalf of a whistleblower." msgstr "Po veproni në këmbë të një nxjerrësi të fshehtash." diff --git a/client/pot/sr_ME.po b/client/pot/sr_ME.po index a584a4e4e5..8d73681a77 100644 --- a/client/pot/sr_ME.po +++ b/client/pot/sr_ME.po @@ -85,7 +85,7 @@ msgstr "Čarobnjak za platformu" msgid "Label the report" msgstr "Označi prijavu" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Odloži datum isteka" msgid "Select all" @@ -530,9 +530,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Podnesi prijavu" @@ -1158,7 +1155,7 @@ msgstr "Prisilno odabrano" msgid "Allow the recipient to delete reports" msgstr "Dozvoli primaocu da briše prijave" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Dozvoli primaocu da odloži datum isteka prijave" msgid "Give this user ability to grant user access to reports" @@ -1333,6 +1330,9 @@ msgstr "Resursu se može pristupiti samo putem Tor mreže" msgid "The upload request exceeds the size limit" msgstr "Zahtjev za otpremanje premašuje ograničenje veličine" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/sr_ME@latin.po b/client/pot/sr_ME@latin.po index aa1f35a7f5..fd08cff4ce 100644 --- a/client/pot/sr_ME@latin.po +++ b/client/pot/sr_ME@latin.po @@ -85,7 +85,7 @@ msgstr "Čarobnjak za platformu" msgid "Label the report" msgstr "Označi prijavu" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Odloži datum isteka" msgid "Select all" @@ -530,9 +530,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Podnesi prijavu" @@ -1158,7 +1155,7 @@ msgstr "Prisilno odabrano" msgid "Allow the recipient to delete reports" msgstr "Dozvoli primaocu da briše prijave" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Dozvoli primaocu da odloži datum isteka prijave" msgid "Give this user ability to grant user access to reports" @@ -1333,6 +1330,9 @@ msgstr "Resursu se može pristupiti samo putem Tor mreže" msgid "The upload request exceeds the size limit" msgstr "Zahtjev za otpremanje premašuje ograničenje veličine" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/sr_RS.po b/client/pot/sr_RS.po index 4297cf0b65..c9466456f2 100644 --- a/client/pot/sr_RS.po +++ b/client/pot/sr_RS.po @@ -94,7 +94,7 @@ msgstr "Чаробњак платформе" msgid "Label the report" msgstr "Označi prijavu" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Одложи датум истицања дојаве" msgid "Select all" @@ -539,9 +539,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Podnesi prijavu" @@ -1167,7 +1164,7 @@ msgstr "Prisilno odabrano" msgid "Allow the recipient to delete reports" msgstr "Dozvoli primaocu da briše prijave" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Dozvoli primaocu da odloži datum isteka prijave" msgid "Give this user ability to grant user access to reports" @@ -1342,6 +1339,9 @@ msgstr "Овим извориштима се може приступити са msgid "The upload request exceeds the size limit" msgstr "Захтев за слање превазилази ограничење величине" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/sr_RS@latin.po b/client/pot/sr_RS@latin.po index 6ac0695720..ebff8db8e3 100644 --- a/client/pot/sr_RS@latin.po +++ b/client/pot/sr_RS@latin.po @@ -92,7 +92,7 @@ msgstr "Vodič za podešavanje platforme" msgid "Label the report" msgstr "Označi dojavu" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Odloži datum isteka" msgid "Select all" @@ -537,9 +537,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Pošalji dojavu" @@ -1165,7 +1162,7 @@ msgstr "Prinudno izabrano" msgid "Allow the recipient to delete reports" msgstr "Dozvoli primaocu da briše dojave" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Dozvoli primaocu da odloži datum isteka dojave" msgid "Give this user ability to grant user access to reports" @@ -1340,6 +1337,9 @@ msgstr "Resursu se može pristupiti samo kroz mrežu pregledača Tor" msgid "The upload request exceeds the size limit" msgstr "Zahtev za otpremanje prevazilazi ograničenje veličine" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/sv.po b/client/pot/sv.po index c347ff8ace..2f5790dada 100644 --- a/client/pot/sv.po +++ b/client/pot/sv.po @@ -109,7 +109,7 @@ msgstr "Plattformsguide" msgid "Label the report" msgstr "Ge rapporten en etikett" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Skjut up utgångsdatumet" msgid "Select all" @@ -554,9 +554,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Lämna en rapport" @@ -1182,7 +1179,7 @@ msgstr "Påtvingat val" msgid "Allow the recipient to delete reports" msgstr "Tillåt mottagaren att ta bort tips" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Tillåt mottagaren att förlänga utgångsdatumet för rapporten" msgid "Give this user ability to grant user access to reports" @@ -1357,6 +1354,9 @@ msgstr "Resursen kan bara nås inom Tor-nätverket" msgid "The upload request exceeds the size limit" msgstr "Uppladdningen går över maxgränsen för antalet MB" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/sw.po b/client/pot/sw.po index 18c37b2339..da43fb55d1 100644 --- a/client/pot/sw.po +++ b/client/pot/sw.po @@ -86,7 +86,7 @@ msgstr "Kivinjari cha jukwaa" msgid "Label the report" msgstr "Lebo ripoti" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Ahirisha tarehe ya kumalizika muda" msgid "Select all" @@ -531,9 +531,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "" @@ -1159,7 +1156,7 @@ msgstr "Imechaguliwa kwa nguvu" msgid "Allow the recipient to delete reports" msgstr "Ruhusu mpokeaji kufuta ripoti" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Ruhusu wapokeaji kuahirisha tarehe ya kumalizika muda wa ripoti." msgid "Give this user ability to grant user access to reports" @@ -1334,6 +1331,9 @@ msgstr "Rasilimali zinaweza kupatikana tu kupitia mtandao wa Tor" msgid "The upload request exceeds the size limit" msgstr "Ombi la kupakia linazidi kikomo cha ukubwa" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ta.po b/client/pot/ta.po index cc2a2d343d..c1173c8fa8 100644 --- a/client/pot/ta.po +++ b/client/pot/ta.po @@ -88,7 +88,7 @@ msgstr "மேடை வழிகாட்டி" msgid "Label the report" msgstr "சமர்ப்பிப்புக்கு லேபிளிடுங்கள்" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "காலாவதி தேதி ஒத்தி" msgid "Select all" @@ -533,9 +533,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "" @@ -1161,7 +1158,7 @@ msgstr "கட்டாயப்படுத்தி தேர்வு" msgid "Allow the recipient to delete reports" msgstr "பெற்றவர்கள் சமர்ப்பிப்புகளை நீக்க அனுமதிக்க" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "பெறுநர் சமர்ப்பிப்பு காலாவதி தேதி ஒத்தி அனுமதி" msgid "Give this user ability to grant user access to reports" @@ -1336,6 +1333,9 @@ msgstr "வள மட்டுமே தோர் நெட்வொர் msgid "The upload request exceeds the size limit" msgstr "பதிவேற்ற கோரிக்கை அளவு வரம்பை மீறுகிறது" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/tg.po b/client/pot/tg.po index c99455224b..47793c054e 100644 --- a/client/pot/tg.po +++ b/client/pot/tg.po @@ -94,7 +94,7 @@ msgstr "Устоди платформа" msgid "Label the report" msgstr "Гузоришро қайд кунед" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Ба таъхир гузоштани мӯҳлати итмоми эътибор " msgid "Select all" @@ -539,9 +539,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Таҳияи гузориш" @@ -1167,7 +1164,7 @@ msgstr "Маҷбуран интихобшуда" msgid "Allow the recipient to delete reports" msgstr "Ба гиранда иҷозаи пок кардани гузоришро додан" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Ба гиранда иҷозаи ба таъхир гузоштани мӯҳлати анҷоми эътибори гузоришро додан" msgid "Give this user ability to grant user access to reports" @@ -1342,6 +1339,9 @@ msgstr "Дастрасӣ ба ин манбаъ танҳо тавассути ш msgid "The upload request exceeds the size limit" msgstr "Дархости боркунӣ аз ҳадди андозаи муқарраршуда зиёд аст" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/th.po b/client/pot/th.po index f1f9e1f079..b7cd6b80c1 100644 --- a/client/pot/th.po +++ b/client/pot/th.po @@ -96,7 +96,7 @@ msgstr "ตัวช่วยตั้งค่าแพลตฟอร์ม" msgid "Label the report" msgstr "ติดป้ายกำกับรายงาน" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "เลื่อนวันหมดอายุ" msgid "Select all" @@ -541,9 +541,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "ยื่นรายงาน" @@ -1169,7 +1166,7 @@ msgstr "บังคับเลือก" msgid "Allow the recipient to delete reports" msgstr "อนุญาตให้ผู้รับลบรายงานได้" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "อนุญาตให้ผู้รับเลื่อนวันหมดอายุของรายงานได้" msgid "Give this user ability to grant user access to reports" @@ -1344,6 +1341,9 @@ msgstr "สามารถเข้าถึงทรัพยากรได้ msgid "The upload request exceeds the size limit" msgstr "ขนาดการขออัปโหลดเกินขีดจำกัด" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/tk.po b/client/pot/tk.po index f4c75a9898..e7c1da53b7 100644 --- a/client/pot/tk.po +++ b/client/pot/tk.po @@ -91,7 +91,7 @@ msgstr "Platforma düzeltmesi" msgid "Label the report" msgstr "Hasabaty bellik ediň" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Möhletiniň gutarýan senesini gijikdir" msgid "Select all" @@ -536,9 +536,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Hasabat beriň" @@ -1164,7 +1161,7 @@ msgstr "Mejbury saýlandy" msgid "Allow the recipient to delete reports" msgstr "Alyja hasabatlary pozmagy rugsat ber" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Alyjynyň hasabatyň möhletini yza süýşürmegine rugsat ber" msgid "Give this user ability to grant user access to reports" @@ -1339,6 +1336,9 @@ msgstr "Resurslara diňe Tor ulgamy arkaly girip bolýar" msgid "The upload request exceeds the size limit" msgstr "Ýükleme haýyşy çäklendirilen ölçeg ululykdan geçýär" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/tr.po b/client/pot/tr.po index 8b275cc7a8..fc51b4f3a9 100644 --- a/client/pot/tr.po +++ b/client/pot/tr.po @@ -11,7 +11,7 @@ # Erdoğan Şahin, 2016 # Erdoğan Şahin, 2016-2017 # Erdoğan Şahin, 2016 -# Giovanni Pellerano , 2014-2018,2020-2022 +# Giovanni Pellerano , 2014-2018,2020-2022,2024 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 # b33a4006134bb6ee62b30fc0fac5cec6, 2013 # uskumru, 2013 @@ -113,8 +113,8 @@ msgstr "Platform yardımcısı" msgid "Label the report" msgstr "İhbarı etiketle" -msgid "Postpone the expiration date" -msgstr "Geçerlilik sonu tarihini uzat" +msgid "Edit the expiration date" +msgstr "Geçerlilik sonu tarihini düzenle" msgid "Select all" msgstr "Tümünü seç" @@ -558,9 +558,6 @@ msgstr "Bir muhbir adına işlem yap" msgid "The link will expire in 7 days." msgstr "Bağlantı 7 sonra geçersiz olacak." -msgid "Edit the expiration date" -msgstr "Geçerlilik sonu tarihini düzenle" - msgid "File a report" msgstr "İhbar edin" @@ -1186,8 +1183,8 @@ msgstr "Zorunlu olarak seçilmiş" msgid "Allow the recipient to delete reports" msgstr "Alıcı ihbarları silebilsin" -msgid "Allow the recipient to postpone the report expiration date" -msgstr "Alıcı ihbarın geçerlilik sonu tarihini uzatabilsin" +msgid "Allow the recipient to edit the report expiration date" +msgstr "Alıcı ihbarın geçerlilik sonu tarihini düzenleyebilsin" msgid "Give this user ability to grant user access to reports" msgstr "Bu kullanıcı başka kullanıcılara ihbarlara erişme izni verebilsin" @@ -1361,6 +1358,9 @@ msgstr "Kaynağa yalnızca Tor ağı üzerinden erişilebilir" msgid "The upload request exceeds the size limit" msgstr "Yükleme isteğinin boyutu sınırı aşıyor" +msgid "A user with this username already exists" +msgstr "Aynı kullanıcı adlı bir kullanıcı zaten var" + msgid "You are operating on behalf of a whistleblower." msgstr "Bir muhbir adına işlem yapıyorsunuz." diff --git a/client/pot/tt.po b/client/pot/tt.po index c546740215..ffa90f2291 100644 --- a/client/pot/tt.po +++ b/client/pot/tt.po @@ -86,7 +86,7 @@ msgstr "Платформа остасы" msgid "Label the report" msgstr "Хисапны тамгалау" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Вакыты чыгу датасын кичектерү" msgid "Select all" @@ -531,9 +531,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Хисап бирү" @@ -1159,7 +1156,7 @@ msgstr "Мәҗбүри сайланды" msgid "Allow the recipient to delete reports" msgstr "Алучыга хисапларны бетерергә рөхсәт итү" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Алучыга хисапның вакыты чыгу датасын кичектерергә рөхсәт итү" msgid "Give this user ability to grant user access to reports" @@ -1334,6 +1331,9 @@ msgstr "Ресурсларга Tor челтәре аша гына кереп б msgid "The upload request exceeds the size limit" msgstr "Йөкләү өчен файл күләме билгеләнгән чиктән артык" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ug.po b/client/pot/ug.po index c35077ded8..68e14e21ea 100644 --- a/client/pot/ug.po +++ b/client/pot/ug.po @@ -88,7 +88,7 @@ msgstr "سۇپا سېھىرگەرى" msgid "Label the report" msgstr "مەلۇماتقا بەلگە قوي" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "سۈرۈك چېسلاسىنى كەينىگە سۈر" msgid "Select all" @@ -533,9 +533,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "بىر مەلۇمات يوللا" @@ -1161,7 +1158,7 @@ msgstr "مەجبۇرىي تاللاندى" msgid "Allow the recipient to delete reports" msgstr "تاپشۇرىۋالغۇچىلارنىڭ مەلۇماتلارنى ئۆچۈرىشىگە رۇخسەت قىل" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "تاپشۇرىۋالغۇچىنىڭ مەلۇمات سۈرۈكىنى كەينىگە سۈرىشىگە رۇخسەت قىل" msgid "Give this user ability to grant user access to reports" @@ -1336,6 +1333,9 @@ msgstr "مەنبەنى پەقەت Tor تورى بىلەنلا زىيارەت ق msgid "The upload request exceeds the size limit" msgstr "يۈكلىمە تەلىپى چوڭلۇق چېكىدىن ئېشىپ كەتتى" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ug@Cyrl.po b/client/pot/ug@Cyrl.po index fe8817aa8d..9babe388a3 100644 --- a/client/pot/ug@Cyrl.po +++ b/client/pot/ug@Cyrl.po @@ -86,7 +86,7 @@ msgstr "Супа сеһиргәри" msgid "Label the report" msgstr "мәлуматқа бәлгә сал" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Сүрүк чесласини кәйнигә сүр" msgid "Select all" @@ -531,9 +531,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Бир доклат йолла" @@ -1159,7 +1156,7 @@ msgstr "Мәҗбурий талланди" msgid "Allow the recipient to delete reports" msgstr "Тапшуривалғучиларниң доклатларни өчүришигә рухсәт қил" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Тапшуривалғучиниң доклат сүрүкини кәйнигә сүришигә рухсәт қил" msgid "Give this user ability to grant user access to reports" @@ -1334,6 +1331,9 @@ msgstr "Мәнбәни пәқәт Tor тори биләнла зийарәт қ msgid "The upload request exceeds the size limit" msgstr "Йүклимә тәлипи чоңлуқ чекидин ешип кәтти" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ug@Latin.po b/client/pot/ug@Latin.po index 17f5733046..392981dea0 100644 --- a/client/pot/ug@Latin.po +++ b/client/pot/ug@Latin.po @@ -86,7 +86,7 @@ msgstr "Supa séhirgeri" msgid "Label the report" msgstr "Melumatqa belge sal" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Sürük chéslasini keynige sür" msgid "Select all" @@ -531,9 +531,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Bir melumat yolla" @@ -1159,7 +1156,7 @@ msgstr "Mejburiy tallandi" msgid "Allow the recipient to delete reports" msgstr "Tapshuriwalghuchilarning melumatlarni öchürishige ruxset qil" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Tapshuriwalghuchining melumat sürükini keynige sürishige ruxset qil" msgid "Give this user ability to grant user access to reports" @@ -1334,6 +1331,9 @@ msgstr "Menbeni peqet Tor tori bilenla ziyaret qilghili bolidu " msgid "The upload request exceeds the size limit" msgstr "Yüklime telipi chongluq chékidin éship ketti" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/uk.po b/client/pot/uk.po index 6a5fe2a290..5c9e9b616b 100644 --- a/client/pot/uk.po +++ b/client/pot/uk.po @@ -107,7 +107,7 @@ msgstr "Майстер налаштування платформи" msgid "Label the report" msgstr "Позначте звіт" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Відтермінувати дату зачінчення терміну дії" msgid "Select all" @@ -552,9 +552,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Подати звіт" @@ -1180,7 +1177,7 @@ msgstr "Примусовий вибір" msgid "Allow the recipient to delete reports" msgstr "Дозволити отримувачу видаляти звіти" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Дозволити отримувачам відтерміновувати видалення звітів" msgid "Give this user ability to grant user access to reports" @@ -1355,6 +1352,9 @@ msgstr "Ресурс доступний лише через браузер Tor" msgid "The upload request exceeds the size limit" msgstr "Завантаження перевищує дозволений розмір" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/ur.po b/client/pot/ur.po index f4261cd1cf..5f034457b9 100644 --- a/client/pot/ur.po +++ b/client/pot/ur.po @@ -98,7 +98,7 @@ msgstr "پلیٹ فارم وزرڈ" msgid "Label the report" msgstr "رپورٹ لیبل کریں" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "آخری اپ ڈیٹ کی تاریخ ملتوی" msgid "Select all" @@ -543,9 +543,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "رپورٹ درج کروائیں۔" @@ -1171,7 +1168,7 @@ msgstr "زبردستی منتخب شدہ" msgid "Allow the recipient to delete reports" msgstr "وصول کنندگان کو اختیار دیجیے کہ تجاویز حذف کر سکیں" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "وصول کنندہ جمع کرانے کا وقت ختم ہونے کی تاریخ ملتوی کرنے کی اجازت دیں" msgid "Give this user ability to grant user access to reports" @@ -1346,6 +1343,9 @@ msgstr " صرف ٹور نیٹ ورک کے اندررہتے ہوئے وسائل msgid "The upload request exceeds the size limit" msgstr "اپ لوڈ کی درخواست سائز کی حد سے تجاوز کر گئی ہے" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/uz.po b/client/pot/uz.po index d663bced8a..77fa0f3009 100644 --- a/client/pot/uz.po +++ b/client/pot/uz.po @@ -88,7 +88,7 @@ msgstr "Platformani sozlash" msgid "Label the report" msgstr "Xabarga yorliq biriktiring" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Muddatini uzaytirish" msgid "Select all" @@ -533,9 +533,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Anonim xabar yuborish" @@ -1161,7 +1158,7 @@ msgstr "Majburiy tanlangan" msgid "Allow the recipient to delete reports" msgstr "Qabul qiluvchiga anonim xabarlarni oʻchirish imkonini berish" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Qabul qiluvchi anonim xabar muddatini kechiktirishiga ruxsat berish" msgid "Give this user ability to grant user access to reports" @@ -1336,6 +1333,9 @@ msgstr "Manba faqatgina Tor tarmoq ulanishi orqali ochiladi" msgid "The upload request exceeds the size limit" msgstr "Yuklash soʻrovi belgilangan limitdan ortiq" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/vi.po b/client/pot/vi.po index 602449e91a..2b2c4ec554 100644 --- a/client/pot/vi.po +++ b/client/pot/vi.po @@ -101,7 +101,7 @@ msgstr "Trình hướng dẫn của hệ thống" msgid "Label the report" msgstr "Dán nhãn báo cáo" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "Hoãn ngày hết hạn" msgid "Select all" @@ -546,9 +546,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "Nộp báo cáo" @@ -1174,7 +1171,7 @@ msgstr "Được chọn trước" msgid "Allow the recipient to delete reports" msgstr "Cho phép người nhận xóa báo cáo" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "Cho phép người nhận hoãn thời điểm hết hạn của báo cáo" msgid "Give this user ability to grant user access to reports" @@ -1349,6 +1346,9 @@ msgstr "Thông tin chỉ có thể truy cập được qua mạng Tor" msgid "The upload request exceeds the size limit" msgstr "Tập tin tải lên vượt quá giới hạn về kích thước" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/zh_CN.po b/client/pot/zh_CN.po index c7b18499b8..8a3f459d06 100644 --- a/client/pot/zh_CN.po +++ b/client/pot/zh_CN.po @@ -19,7 +19,7 @@ # Qiaoyi Fang , 2018 # QinWeijie , 2014 # Runzhe Liang <18051080098@163.com>, 2020 -# Scott Lai , 2018,2020-2021 +# Scott Lai, 2018,2020-2021 # YFdyh000 , 2015 # YFdyh000 , 2015 # 刘位, 2014 @@ -107,7 +107,7 @@ msgstr "平台向导" msgid "Label the report" msgstr "标记该报告" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "推迟过期日期" msgid "Select all" @@ -552,9 +552,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "提交报告" @@ -1180,7 +1177,7 @@ msgstr "强制已选" msgid "Allow the recipient to delete reports" msgstr "允许接收人删除报告" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "允许接收人推迟报告过期日期" msgid "Give this user ability to grant user access to reports" @@ -1355,6 +1352,9 @@ msgstr "资源仅可通过 Tor 网络访问" msgid "The upload request exceeds the size limit" msgstr "上传请求超过文件大小限制" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/zh_HK.po b/client/pot/zh_HK.po index 0adf73fd02..1ae95fcb6e 100644 --- a/client/pot/zh_HK.po +++ b/client/pot/zh_HK.po @@ -88,7 +88,7 @@ msgstr "平台設定精靈" msgid "Label the report" msgstr "標籤此報告" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "延遲到期日" msgid "Select all" @@ -533,9 +533,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "提交報告" @@ -1161,7 +1158,7 @@ msgstr "強制選擇" msgid "Allow the recipient to delete reports" msgstr "允許此接收者刪除報告" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "允許此接收者延遲報告到期日" msgid "Give this user ability to grant user access to reports" @@ -1336,6 +1333,9 @@ msgstr "資源僅能透過 Tor 網路讀取" msgid "The upload request exceeds the size limit" msgstr "上傳請求超出檔案大小上限" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" diff --git a/client/pot/zh_TW.po b/client/pot/zh_TW.po index a05e1e678c..4d5ca43be4 100644 --- a/client/pot/zh_TW.po +++ b/client/pot/zh_TW.po @@ -93,7 +93,7 @@ msgstr "平台設定精靈" msgid "Label the report" msgstr "標記分類報告" -msgid "Postpone the expiration date" +msgid "Edit the expiration date" msgstr "延後到期日" msgid "Select all" @@ -538,9 +538,6 @@ msgstr "" msgid "The link will expire in 7 days." msgstr "" -msgid "Edit the expiration date" -msgstr "" - msgid "File a report" msgstr "提交报告" @@ -1166,7 +1163,7 @@ msgstr "強迫選擇" msgid "Allow the recipient to delete reports" msgstr "收件者可以刪除報告" -msgid "Allow the recipient to postpone the report expiration date" +msgid "Allow the recipient to edit the report expiration date" msgstr "收件者可以延長報告期限" msgid "Give this user ability to grant user access to reports" @@ -1341,6 +1338,9 @@ msgstr "資源僅能透過 TOR 網路讀取" msgid "The upload request exceeds the size limit" msgstr "上傳的請求超出檔案大小上限" +msgid "A user with this username already exists" +msgstr "" + msgid "You are operating on behalf of a whistleblower." msgstr "" From c9b64f03cc0c56fe11f74fddf06c447e36e5b193 Mon Sep 17 00:00:00 2001 From: Giovanni Pellerano Date: Sun, 14 Apr 2024 22:15:58 +0200 Subject: [PATCH 4/6] Bump npm dependencies to latest version --- client/npm-shrinkwrap.json | 308 ++++++++++--------------------------- client/package.json | 6 +- 2 files changed, 88 insertions(+), 226 deletions(-) diff --git a/client/npm-shrinkwrap.json b/client/npm-shrinkwrap.json index ca6bb4a125..562c229c1e 100644 --- a/client/npm-shrinkwrap.json +++ b/client/npm-shrinkwrap.json @@ -58,10 +58,10 @@ "devDependencies": { "@babel/cli": "7.24.1", "@babel/core": "7.24.4", - "@cypress/code-coverage": "3.12.33", + "@cypress/code-coverage": "3.12.34", "@lodder/grunt-postcss": "3.1.1", - "cypress": "13.7.2", - "eslint": "8.57.0", + "cypress": "13.7.3", + "eslint": "9.0.0", "gettext-parser": "7.0.1", "grunt": "1.6.1", "grunt-angular-templates": "1.2.0", @@ -2142,9 +2142,9 @@ } }, "node_modules/@cypress/code-coverage": { - "version": "3.12.33", - "resolved": "https://registry.npmjs.org/@cypress/code-coverage/-/code-coverage-3.12.33.tgz", - "integrity": "sha512-ir8g+HLjKYF9nUt9q8Mpnvv/8C8+lYIZfR4/CRI6ZZgi8bJ2pvH2h6MorMao6X3mSQNFwlGvOJioxkT35UK4mA==", + "version": "3.12.34", + "resolved": "https://registry.npmjs.org/@cypress/code-coverage/-/code-coverage-3.12.34.tgz", + "integrity": "sha512-5z2I9SfjWYViX6+kj92Ha078ZwJEZ30R/j6cQJiZgY6fYMJVD3o3mffyXPOytB85PIfBURtWdlyWsSLBaj41Mw==", "dev": true, "dependencies": { "@cypress/webpack-preprocessor": "^6.0.0", @@ -2347,15 +2347,15 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.0.2.tgz", + "integrity": "sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", + "espree": "^10.0.1", + "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -2363,34 +2363,31 @@ "strip-json-comments": "^3.1.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, "engines": { - "node": ">=8" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.0.0.tgz", + "integrity": "sha512-RThY/MnKrhubF6+s1JflwUjPEsnCEmYCWwqa/aRISKWNXGZ9epUwft4bUMM35SdKF9xvBrLydAM1RDHd1Z//ZQ==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@flowjs/flow.js": { @@ -2503,12 +2500,12 @@ } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "version": "0.12.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.12.3.tgz", + "integrity": "sha512-jsNnTBlMWuTpDkeE3on7+dWJi0D6fdDfeANj/w7MpS8ztROCoLvIO2nG0CcFj+E4k8j4QrSTh4Oryi3i2G669g==", "dev": true, "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", + "@humanwhocodes/object-schema": "^2.0.3", "debug": "^4.3.1", "minimatch": "^3.0.5" }, @@ -2530,9 +2527,9 @@ } }, "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", - "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", "dev": true }, "node_modules/@isaacs/cliui": { @@ -3288,12 +3285,6 @@ "@types/node": "*" } }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, "node_modules/@webassemblyjs/ast": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", @@ -3488,9 +3479,9 @@ } }, "node_modules/acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -5290,9 +5281,9 @@ } }, "node_modules/cypress": { - "version": "13.7.2", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.7.2.tgz", - "integrity": "sha512-FF5hFI5wlRIHY8urLZjJjj/YvfCBrRpglbZCLr/cYcL9MdDe0+5usa8kTIrDHthlEc9lwihbkb5dmwqBDNS2yw==", + "version": "13.7.3", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.7.3.tgz", + "integrity": "sha512-uoecY6FTCAuIEqLUYkTrxamDBjMHTYak/1O7jtgwboHiTnS1NaMOoR08KcTrbRZFCBvYOiS4tEkQRmsV+xcrag==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -5832,41 +5823,37 @@ } }, "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.0.0.tgz", + "integrity": "sha512-IMryZ5SudxzQvuod6rUdIUz29qFItWx281VhtFVc2Psy/ZhlCeD/5DT6lBIJ4H3G+iamGJoTln1v+QSuPw0p7Q==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", + "@eslint/eslintrc": "^3.0.2", + "@eslint/js": "9.0.0", + "@humanwhocodes/config-array": "^0.12.3", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", - "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", + "eslint-scope": "^8.0.1", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.0.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", + "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", - "globals": "^13.19.0", "graphemer": "^1.4.0", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", @@ -5880,23 +5867,23 @@ "eslint": "bin/eslint.js" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.1.tgz", + "integrity": "sha512-pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" @@ -5935,33 +5922,42 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, "engines": { - "node": ">=8" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.0.1.tgz", + "integrity": "sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==", "dev": true, "dependencies": { - "acorn": "^8.9.0", + "acorn": "^8.11.3", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "eslint-visitor-keys": "^4.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" @@ -6353,15 +6349,15 @@ } }, "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, "dependencies": { - "flat-cache": "^3.0.4" + "flat-cache": "^4.0.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=16.0.0" } }, "node_modules/file-sync-cmp": { @@ -6456,23 +6452,22 @@ } }, "node_modules/flat-cache": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz", - "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, "dependencies": { "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" + "keyv": "^4.5.4" }, "engines": { - "node": ">=12.0.0" + "node": ">=16" } }, "node_modules/flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, "node_modules/for-in": { @@ -13015,85 +13010,6 @@ "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true }, - "node_modules/stylelint/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/stylelint/node_modules/brace-expansion/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/stylelint/node_modules/file-entry-cache": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", - "dev": true, - "dependencies": { - "flat-cache": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/stylelint/node_modules/flat-cache": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.0.tgz", - "integrity": "sha512-EryKbCE/wxpxKniQlyas6PY1I9vwtF3uCBweX+N8KYTCn3Y12RTGtQAJ/bd5pl7kxUAc8v/R3Ake/N17OZiFqA==", - "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.4", - "rimraf": "^5.0.5" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/stylelint/node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/stylelint/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/stylelint/node_modules/global-modules": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", @@ -13135,30 +13051,6 @@ "node": ">=0.10.0" } }, - "node_modules/stylelint/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/stylelint/node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, "node_modules/stylelint/node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -13168,24 +13060,6 @@ "node": ">=8" } }, - "node_modules/stylelint/node_modules/rimraf": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz", - "integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==", - "dev": true, - "dependencies": { - "glob": "^10.3.7" - }, - "bin": { - "rimraf": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/stylelint/node_modules/signal-exit": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", @@ -13570,18 +13444,6 @@ "node": ">= 0.8.0" } }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", diff --git a/client/package.json b/client/package.json index 918b6e5347..11ef8ab4c9 100644 --- a/client/package.json +++ b/client/package.json @@ -61,10 +61,10 @@ "devDependencies": { "@babel/cli": "7.24.1", "@babel/core": "7.24.4", - "@cypress/code-coverage": "3.12.33", + "@cypress/code-coverage": "3.12.34", "@lodder/grunt-postcss": "3.1.1", - "cypress": "13.7.2", - "eslint": "8.57.0", + "cypress": "13.7.3", + "eslint": "9.0.0", "gettext-parser": "7.0.1", "grunt": "1.6.1", "grunt-angular-templates": "1.2.0", From 33fab84997f86d77259df9a2301a229191a63c13 Mon Sep 17 00:00:00 2001 From: Giovanni Pellerano Date: Sun, 14 Apr 2024 23:28:26 +0200 Subject: [PATCH 5/6] Bump to version 4.15.1 --- CHANGELOG | 5 +++++ backend/globaleaks/__init__.py | 2 +- client/npm-shrinkwrap.json | 4 ++-- client/package.json | 2 +- debian/changelog | 6 ++++++ 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 417f34d6d0..e4578f46ba 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +Changes in version 4.15.1 + Apply revision and optimization to TLS configurations + Bump npm dependencies to latest versions + Update translations + Changes in version 4.15.0 Fix issues #4019, #4020 Do not loose channel selection when changing platform language diff --git a/backend/globaleaks/__init__.py b/backend/globaleaks/__init__.py index 9e95d9c8db..5dd3df8625 100644 --- a/backend/globaleaks/__init__.py +++ b/backend/globaleaks/__init__.py @@ -7,7 +7,7 @@ __author__ = 'GlobaLeaks' __email__ = 'info@globaleaks.org' __copyright__ = '2011-2024 - GlobaLeaks' -__version__ = '4.15.0' +__version__ = '4.15.1' __license__ = 'AGPL-3.0' DATABASE_VERSION = 68 diff --git a/client/npm-shrinkwrap.json b/client/npm-shrinkwrap.json index 562c229c1e..fcb6737ed1 100644 --- a/client/npm-shrinkwrap.json +++ b/client/npm-shrinkwrap.json @@ -1,12 +1,12 @@ { "name": "GlobaLeaks", - "version": "4.15.0", + "version": "4.15.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "GlobaLeaks", - "version": "4.15.0", + "version": "4.15.1", "license": "AGPL-3.0", "dependencies": { "@flowjs/flow.js": "2.14.1", diff --git a/client/package.json b/client/package.json index 11ef8ab4c9..8e070f3efa 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "GlobaLeaks", "description": "GlobaLeaks - Free and Open-Source Whistleblowing Software", - "version": "4.15.0", + "version": "4.15.1", "license": "AGPL-3.0", "author": "GlobaLeaks", "repository": { diff --git a/debian/changelog b/debian/changelog index ce76f057b4..120e706596 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +globaleaks (4.15.1) stable; urgency=medium + + * New stable release + + -- GlobaLeaks software signing key Sun, 14 Apr 2024 23:27:30 +0200 + globaleaks (4.15.0) stable; urgency=medium * New stable release From e52568543b30da8a6fdb357cc5655d5a32043288 Mon Sep 17 00:00:00 2001 From: kskarthik <11899221+kskarthik@users.noreply.github.com> Date: Mon, 15 Apr 2024 12:35:50 +0530 Subject: [PATCH 6/6] Trim extra layers in Dockerfile --- docker/Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 71a6ebe1a7..eb8276ef26 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,17 +5,16 @@ RUN apt-get update -q && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -RUN wget https://deb.globaleaks.org/install-globaleaks.sh -RUN chmod +x install-globaleaks.sh -RUN ./install-globaleaks.sh -y -n +RUN wget https://deb.globaleaks.org/install-globaleaks.sh && \ + chmod +x install-globaleaks.sh && \ + ./install-globaleaks.sh -y -n RUN apt-get update -q && \ apt-get install -y globaleaks && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -EXPOSE 8080 -EXPOSE 8443 +EXPOSE 8080 8443 USER globaleaks