From 90341f0a6ea6f4f9215ea85c171f2bd18ff4574f Mon Sep 17 00:00:00 2001 From: Nicholas Tinsley Date: Mon, 30 Oct 2023 11:48:13 -0400 Subject: [PATCH 1/4] Finish updating audio output assets. --- .../res/drawable/webrtc_call_screen_speaker_toggle_small.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/drawable/webrtc_call_screen_speaker_toggle_small.xml b/app/src/main/res/drawable/webrtc_call_screen_speaker_toggle_small.xml index 6804fa6b55..be16a3345e 100644 --- a/app/src/main/res/drawable/webrtc_call_screen_speaker_toggle_small.xml +++ b/app/src/main/res/drawable/webrtc_call_screen_speaker_toggle_small.xml @@ -19,7 +19,7 @@ android:left="4dp" android:right="4dp" android:drawable="@drawable/webrtc_call_screen_circle_checked" /> - + From c063c99ba6587089bd5724025d7bee39f1eae19c Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Mon, 30 Oct 2023 17:44:25 -0400 Subject: [PATCH 2/4] Fix contact joined messages. --- .../securesms/database/MessageTable.kt | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/database/MessageTable.kt b/app/src/main/java/org/thoughtcrime/securesms/database/MessageTable.kt index c9331a292e..47961c5d34 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/database/MessageTable.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/database/MessageTable.kt @@ -4684,31 +4684,31 @@ open class MessageTable(context: Context?, databaseHelper: SignalDatabase) : Dat */ @Throws(MmsException::class) private fun IncomingMessage.toMessageType(): Long { - var type = MessageTypes.BASE_INBOX_TYPE or MessageTypes.SECURE_MESSAGE_BIT or MessageTypes.PUSH_MESSAGE_BIT + var type = MessageTypes.SECURE_MESSAGE_BIT or MessageTypes.PUSH_MESSAGE_BIT if (this.giftBadge != null) { type = type or MessageTypes.SPECIAL_TYPE_GIFT_BADGE } type = type or when (this.type) { - MessageType.NORMAL -> 0 - MessageType.EXPIRATION_UPDATE -> MessageTypes.EXPIRATION_TIMER_UPDATE_BIT - MessageType.STORY_REACTION -> MessageTypes.SPECIAL_TYPE_STORY_REACTION - MessageType.PAYMENTS_NOTIFICATION -> MessageTypes.SPECIAL_TYPE_PAYMENTS_NOTIFICATION - MessageType.ACTIVATE_PAYMENTS_REQUEST -> MessageTypes.SPECIAL_TYPE_PAYMENTS_ACTIVATE_REQUEST - MessageType.PAYMENTS_ACTIVATED -> MessageTypes.SPECIAL_TYPE_PAYMENTS_ACTIVATED + MessageType.NORMAL -> MessageTypes.BASE_INBOX_TYPE + MessageType.EXPIRATION_UPDATE -> MessageTypes.EXPIRATION_TIMER_UPDATE_BIT or MessageTypes.BASE_INBOX_TYPE + MessageType.STORY_REACTION -> MessageTypes.SPECIAL_TYPE_STORY_REACTION or MessageTypes.BASE_INBOX_TYPE + MessageType.PAYMENTS_NOTIFICATION -> MessageTypes.SPECIAL_TYPE_PAYMENTS_NOTIFICATION or MessageTypes.BASE_INBOX_TYPE + MessageType.ACTIVATE_PAYMENTS_REQUEST -> MessageTypes.SPECIAL_TYPE_PAYMENTS_ACTIVATE_REQUEST or MessageTypes.BASE_INBOX_TYPE + MessageType.PAYMENTS_ACTIVATED -> MessageTypes.SPECIAL_TYPE_PAYMENTS_ACTIVATED or MessageTypes.BASE_INBOX_TYPE MessageType.CONTACT_JOINED -> MessageTypes.JOINED_TYPE - MessageType.IDENTITY_UPDATE -> MessageTypes.KEY_EXCHANGE_IDENTITY_UPDATE_BIT - MessageType.IDENTITY_VERIFIED -> MessageTypes.KEY_EXCHANGE_IDENTITY_VERIFIED_BIT - MessageType.IDENTITY_DEFAULT -> MessageTypes.KEY_EXCHANGE_IDENTITY_DEFAULT_BIT - MessageType.END_SESSION -> MessageTypes.END_SESSION_BIT + MessageType.IDENTITY_UPDATE -> MessageTypes.KEY_EXCHANGE_IDENTITY_UPDATE_BIT or MessageTypes.BASE_INBOX_TYPE + MessageType.IDENTITY_VERIFIED -> MessageTypes.KEY_EXCHANGE_IDENTITY_VERIFIED_BIT or MessageTypes.BASE_INBOX_TYPE + MessageType.IDENTITY_DEFAULT -> MessageTypes.KEY_EXCHANGE_IDENTITY_DEFAULT_BIT or MessageTypes.BASE_INBOX_TYPE + MessageType.END_SESSION -> MessageTypes.END_SESSION_BIT or MessageTypes.BASE_INBOX_TYPE MessageType.GROUP_UPDATE -> { val isOnlyGroupLeave = this.groupContext?.let { GroupV2UpdateMessageUtil.isJustAGroupLeave(it) } ?: false if (isOnlyGroupLeave) { - MessageTypes.GROUP_V2_BIT or MessageTypes.GROUP_UPDATE_BIT or MessageTypes.GROUP_LEAVE_BIT + MessageTypes.GROUP_V2_BIT or MessageTypes.GROUP_UPDATE_BIT or MessageTypes.GROUP_LEAVE_BIT or MessageTypes.BASE_INBOX_TYPE } else { - MessageTypes.GROUP_V2_BIT or MessageTypes.GROUP_UPDATE_BIT + MessageTypes.GROUP_V2_BIT or MessageTypes.GROUP_UPDATE_BIT or MessageTypes.BASE_INBOX_TYPE } } } From 72fc5fc3b1c8fae4cc60d47d175dd459f79502b2 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Mon, 30 Oct 2023 17:53:56 -0400 Subject: [PATCH 3/4] Update translations and other static files. --- app/src/main/res/values-ar/strings.xml | 34 +++---- app/src/main/res/values-az/strings.xml | 34 +++---- app/src/main/res/values-bg/strings.xml | 34 +++---- app/src/main/res/values-bn/strings.xml | 34 +++---- app/src/main/res/values-bs/strings.xml | 34 +++---- app/src/main/res/values-ca/strings.xml | 34 +++---- app/src/main/res/values-cs/strings.xml | 34 +++---- app/src/main/res/values-da/strings.xml | 34 +++---- app/src/main/res/values-de/strings.xml | 34 +++---- app/src/main/res/values-el/strings.xml | 34 +++---- app/src/main/res/values-es/strings.xml | 34 +++---- app/src/main/res/values-eu/strings.xml | 34 +++---- app/src/main/res/values-fa/strings.xml | 34 +++---- app/src/main/res/values-fi/strings.xml | 34 +++---- app/src/main/res/values-fr/strings.xml | 34 +++---- app/src/main/res/values-gl/strings.xml | 34 +++---- app/src/main/res/values-gu/strings.xml | 34 +++---- app/src/main/res/values-hi/strings.xml | 34 +++---- app/src/main/res/values-hr/strings.xml | 34 +++---- app/src/main/res/values-hu/strings.xml | 34 +++---- app/src/main/res/values-in/strings.xml | 34 +++---- app/src/main/res/values-it/strings.xml | 34 +++---- app/src/main/res/values-iw/strings.xml | 34 +++---- app/src/main/res/values-ja/strings.xml | 34 +++---- app/src/main/res/values-ka/strings.xml | 34 +++---- app/src/main/res/values-km/strings.xml | 34 +++---- app/src/main/res/values-ko/strings.xml | 34 +++---- app/src/main/res/values-ky/strings.xml | 34 +++---- app/src/main/res/values-lv/strings.xml | 34 +++---- app/src/main/res/values-mk/strings.xml | 34 +++---- app/src/main/res/values-ml/strings.xml | 34 +++---- app/src/main/res/values-mr/strings.xml | 34 +++---- app/src/main/res/values-ms/strings.xml | 34 +++---- app/src/main/res/values-my/strings.xml | 34 +++---- app/src/main/res/values-nb/strings.xml | 34 +++---- app/src/main/res/values-nl/strings.xml | 100 ++++++++++----------- app/src/main/res/values-pa/strings.xml | 34 +++---- app/src/main/res/values-pt-rBR/strings.xml | 34 +++---- app/src/main/res/values-ro/strings.xml | 34 +++---- app/src/main/res/values-ru/strings.xml | 34 +++---- app/src/main/res/values-sk/strings.xml | 34 +++---- app/src/main/res/values-sl/strings.xml | 34 +++---- app/src/main/res/values-sq/strings.xml | 34 +++---- app/src/main/res/values-sv/strings.xml | 36 ++++---- app/src/main/res/values-sw/strings.xml | 34 +++---- app/src/main/res/values-ta/strings.xml | 34 +++---- app/src/main/res/values-te/strings.xml | 34 +++---- app/src/main/res/values-th/strings.xml | 34 +++---- app/src/main/res/values-uk/strings.xml | 34 +++---- app/src/main/res/values-ur/strings.xml | 34 +++---- app/src/main/res/values-vi/strings.xml | 34 +++---- app/src/main/res/values-yue/strings.xml | 34 +++---- app/src/main/res/values-zh-rCN/strings.xml | 34 +++---- app/src/main/res/values-zh-rHK/strings.xml | 34 +++---- app/src/main/res/values-zh-rTW/strings.xml | 34 +++---- app/static-ips.gradle | 2 +- 56 files changed, 970 insertions(+), 970 deletions(-) diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index 1ae951068d..e7e89513d6 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -2391,9 +2391,9 @@ تحديث سيجنال - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + إصدار جديد من سيجنال متوفر. انقر للتحديث. + تعذّر على سيجنال التحديث + سنحاول من جديد لاحقًا. هل تود إرسال الرسالة ؟ @@ -6371,8 +6371,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + مغادرة سيجنال لتأكيد الدفع؟ + بمُجرد تأكيد عملية الدفع هذه، عُد إلى سيجنال لإنهاء عملية التبرع. @@ -6412,7 +6412,7 @@ مواصلة - Failed to load mandate + تعذر تحميل الطلب @@ -6432,13 +6432,13 @@ تبرّع لـ %1$s - IBAN is too short + رقم IBAN قصير جدًا - IBAN is too long + رقم IBAN طويل جدًا رقم IBAN الخاص ببلدك غير مدعوم - Invalid IBAN + رقم IBAN غير صحيح @@ -6461,7 +6461,7 @@ العثور على معلومات حسابك - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + ابحث عن رقم IBAN الخاص بك في الجزء العلوي من كشف حسابك المصرفي. يَحتوي رقم IBAN على ما يصل إلى 34 رقمًا. يَجب أن يتطابق الاسم الذي تُدخله مع اسمك الكامل في حسابك المصرفي. يُرجى الاتصال بمصرفك لمزيد من المعلومات. التبرّع معلق @@ -6477,9 +6477,9 @@ تمّ - Donation couldn\'t be processed + تعذر معالجة التبرّع - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + نُواجه مشكلة في معالجة التحويل المصرفي الخاص بك. لم تُحصّل أي رسوم منك. يُرجى محاولة طريقة أخرى للدفع أو الاتصال بالمصرف الذي لديك عنده حساب للمزيد من المعلومات. حاول مجددا @@ -6930,17 +6930,17 @@ الموافقة - Turn on full screen notifications? + تفعيل إشعارات ملء الشاشة؟ - Never miss a call from your contacts and groups. + لا تفوّت مكالمة أبدًا من جهات اتصالك أو مجموعاتك. شغّل - Turn on full screen notifications + تفعيل إشعارات ملء الشاشة - To receive call notifications from your contacts and groups: + للتوصّل بإشعارات مُكالمات من جهات اتصالك ومجموعاتك: - 2. %1$s Allow full screen notifications + 2. %1$s تفعيل إشعارات ملء الشاشة diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index 16992c1046..4b75b63fdc 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -2099,9 +2099,9 @@ Signal yeniləməsi - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal-ın yeni versiyası mövcuddur. Yeniləmək üçün toxunun. + Signal-ı yeniləmək mümkün olmadı + Daha sonra yenidən cəhd edəcəyik. Mesaj göndərilsin? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Ödənişi təsdiq etmək üçün Signal-dan çıxılsın? + Bu ödəniş təsdiq olunduqdan dərhal sonra ianənizin emalını tamamlamaq üçün Signal-a qayıdın. @@ -5892,7 +5892,7 @@ Davam et - Failed to load mandate + Pul köçürmə əmrinizi yükləmək mümkün olmadı @@ -5912,13 +5912,13 @@ %1$s ianə ver - IBAN is too short + IBAN nömrəsi çox qısadır - IBAN is too long + IBAN nömrəsi çox uzundur IBAN ölkə kodu dəstəklənmir - Invalid IBAN + Səhv IBAN nömrəsi @@ -5941,7 +5941,7 @@ Hesab məlumatlarınızı tapın - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Bank çıxarışınızın yuxarı hissəsində IBAN nömrənizi tapa bilərsiniz. IBAN nömrəsi 34 simvoldan ibarətdir. Daxil etdiyiniz adla bank hesabınızdakı tam adınız uyğun gəlməlidir. Daha ətraflı məlumat üçün bankınızla əlaqə saxlayın. İanə gözləmədədir @@ -5957,9 +5957,9 @@ Bitdi - Donation couldn\'t be processed + İanəni emal etmək mümkün olmadı - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Bank vasitəsilə pul köçürmənizi davam etdirə bilmədik. Sizdən ödəniş tutulmayıb. Başqa ödəniş metodunu sınayın və ya daha ətraflı məlumat üçün bankınızla əlaqə saxlayın. Yenidən sına @@ -6386,17 +6386,17 @@ Təsdiqlə - Turn on full screen notifications? + Tam ekran bildirişləri aktivləşdirilsin? - Never miss a call from your contacts and groups. + Kontaktlarınızdan və qruplarınızdan gələn zəngləri qaçırmayın. - Turn on full screen notifications + Tam ekran bildirişlərini aktivləşdirin - To receive call notifications from your contacts and groups: + Kontaktlarınızdan və qruplarınızdan zəng bildirişi almaq üçün: - 2. %1$s Allow full screen notifications + 2. %1$s Tam ekran bildirişlərinə icazə ver diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index 703a144272..69ad969fec 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -2099,9 +2099,9 @@ Обновление на Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Има нова версия на Signal. Докоснете за актуализиране. + Signal не успя да се актуализира + Ще опитаме отново по-късно. Изпращане на съобщение? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Излизане от Signal за потвърждаване на плащането? + След като това плащане бъде потвърдено, върнете се към Signal, за да завършите обработката на вашето дарение. @@ -5892,7 +5892,7 @@ Продължете - Failed to load mandate + Неуспешно зареждане на заявката @@ -5912,13 +5912,13 @@ Дарете %1$s - IBAN is too short + IBAN номерът е твърде кратък - IBAN is too long + IBAN номерът е твърде дълъг Кодът на държавата в този IBAN не се поддържа - Invalid IBAN + Невалиден IBAN @@ -5941,7 +5941,7 @@ Намерете информацията за вашия акаунт - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Потърсете IBAN номера си в горната част на вашето банково извлечение. IBAN номерата съдържат до 34 знака. Въведеното име трябва да съвпада с цялото име на титуляра на банковата сметка. Свържете се с банката си за повече информация. Дарението е в изчакване @@ -5957,9 +5957,9 @@ Готово - Donation couldn\'t be processed + Дарението не можа да бъде обработено - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Имаме затруднение с обработването на банковия ви превод. Не сте били таксувани. Опитайте с друг начин на плащане или се свържете с банката си за повече информация. Опитай отново @@ -6386,17 +6386,17 @@ Одобряване - Turn on full screen notifications? + Включване на известията на цял екран? - Never miss a call from your contacts and groups. + Никога не пропускайте обаждане от вашите контакти и групи. Включване - Turn on full screen notifications + Включване на известията на цял екран - To receive call notifications from your contacts and groups: + За да получавате известия за обаждания от вашите контакти и групи: - 2. %1$s Allow full screen notifications + 2. %1$s Разрешаване на известия на цял екран diff --git a/app/src/main/res/values-bn/strings.xml b/app/src/main/res/values-bn/strings.xml index 54c937cf56..90efadf289 100644 --- a/app/src/main/res/values-bn/strings.xml +++ b/app/src/main/res/values-bn/strings.xml @@ -2099,9 +2099,9 @@ Signal আপডেট - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal-এর একটি নতুন সংস্করণ পাওয়া যাচ্ছে। আপডেট করতে ট্যাপ করুন। + Signal আপডেট করতে ব্যর্থ হয়েছে + আমরা পরে আবার চেষ্টা করবো। বার্তা পাঠান? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + পেমেন্ট নিশ্চিত করতে Signal ছেড়ে যাবেন? + একবার এই পেমেন্ট নিশ্চিত হয়ে গেলে, আপনার ডোনেশন প্রক্রিয়াকরণ শেষ করতে Signal-এ ফিরে যান। @@ -5892,7 +5892,7 @@ চালিয়ে যান - Failed to load mandate + অনুরোধ লোড করা যায়নি @@ -5912,13 +5912,13 @@ %1$s-কে ডোনেট করুন - IBAN is too short + IBAN অনেক ছোট - IBAN is too long + IBAN অনেক বড় IBAN কান্ট্রি কোডটি সমর্থিত নয় - Invalid IBAN + অকার্যকর IBAN @@ -5941,7 +5941,7 @@ আপনার অ্যাকাউন্টের তথ্য দেখুন - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + আপনার ব্যাংক স্টেটমেন্টের উপরে আপনার IBAN নম্বরটি দেখুন। IBAN-এ 34টি পর্যন্ত অক্ষর থাকে। আপনি যে নামটি লিখছেন তা আপনার ব্যাংক অ্যাকাউন্টে থাকা আপনার পুরো নামের সাথে মিলতে হবে। আরো তথ্য জানতে আপনার ব্যাংকের সাথে যোগাযোগ করুন। ডোনেশন অনিষ্পন্ন অবস্থায় আছে @@ -5957,9 +5957,9 @@ সম্পন্ন হয়েছে - Donation couldn\'t be processed + ডোনেশন প্রক্রিয়া করা যায়নি - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + আপনার ব্যাংক ট্রান্সফার প্রক্রিয়া করতে আমাদের সমস্যা হচ্ছে। আপনার কাছ থেকে অর্থ কেটে নেওয়া হয়নি। আরেকটি পেমেন্ট পদ্ধতি ব্যবহার করে দেখুন বা আরো তথ্যের জন্য আপনার ব্যাংকের সাথে যোগাযোগ করুন। আবারো চেষ্টা করুন @@ -6386,17 +6386,17 @@ অনুমোদন - Turn on full screen notifications? + পূর্ণ স্ক্রীন নোটিফিকেশন চালু করবেন? - Never miss a call from your contacts and groups. + আপনার কন্টাক্ট ও গ্রুপ থেকে আর কোনো কল মিস করবেন না। চালু করুন - Turn on full screen notifications + পূর্ণ স্ক্রীন নোটিফিকেশন চালু করুন - To receive call notifications from your contacts and groups: + আপনার কন্টাক্ট ও গ্রুপ থেকে কল নোটিফিকেশন পেতে: - 2. %1$s Allow full screen notifications + 2. %1$s পূর্ণ স্ক্রীন নোটিফিকেশনের অনুমোদন দিন diff --git a/app/src/main/res/values-bs/strings.xml b/app/src/main/res/values-bs/strings.xml index 25c620496c..55010a6ef0 100644 --- a/app/src/main/res/values-bs/strings.xml +++ b/app/src/main/res/values-bs/strings.xml @@ -2245,9 +2245,9 @@ Nova verzija Signala - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Dostupna je nova verzija Signala. Dodirnite za ažuriranje. + Ažuriranje signala nije uspjelo + Pokušat ćemo ponovo kasnije. Poslati poruku? @@ -6111,8 +6111,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Napustiti Signal za potvrdu plaćanja? + Nakon što se ova uplata potvrdi, vratite se na Signal da završite obradu vaše donacije. @@ -6152,7 +6152,7 @@ Nastavi - Failed to load mandate + Učitavanje naloga nije uspjelo @@ -6172,13 +6172,13 @@ Donirajte %1$s - IBAN is too short + IBAN je prekratak - IBAN is too long + IBAN je predugačak IBAN kȏd zemlje nije podržan - Invalid IBAN + Nevažeći IBAN @@ -6201,7 +6201,7 @@ Pronađite informacije o svom računu - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Potražite svoj IBAN na vrhu vašeg bankovnog izvoda. IBAN sadrži do 34 znaka. Ime koje unesete treba da odgovara vašem punom imenu na vašem bankovnom računu. Za više informacija kontaktirajte svoju banku. Donacija je na čekanju @@ -6217,9 +6217,9 @@ U redu - Donation couldn\'t be processed + Donacija se nije mogla obraditi - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Imamo problema s obradom vašeg bankovnog transfera. Uplata vam nije naplaćena. Pokušajte koristiti drugu metodu plaćanja ili kontaktirajte svoju banku za više informacija. Pokušajte ponovo @@ -6658,17 +6658,17 @@ Odobri - Turn on full screen notifications? + Uključiti obavještenja preko cijelog ekrana? - Never miss a call from your contacts and groups. + Nikada ne propustite poziv od svojih kontakata i grupa. Uključi - Turn on full screen notifications + Uključite obavještenja preko cijelog ekrana - To receive call notifications from your contacts and groups: + Za primanje obavještenja o pozivima od vaših kontakata i grupa: - 2. %1$s Allow full screen notifications + 2. %1$s Dozvoli obavještenja preko cijelog ekrana diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index f200942810..31d933c66c 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -2099,9 +2099,9 @@ Actualització del Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Hi ha disponible una nova versió de Signal. Toca per actualitzar-lo. + No s\'ha pogut actualitzar Signal + Ho tornarem a provar més tard. Voleu enviar el missatge? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Vols sortir de Signal per confirmar el pagament? + Un cop confirmat aquest pagament, torna a Signal per acabar de processar la teva donació. @@ -5892,7 +5892,7 @@ Continuar - Failed to load mandate + No s\'ha pogut carregar el mandat @@ -5912,13 +5912,13 @@ Fer donació de %1$s - IBAN is too short + L\'IBAN és massa curt - IBAN is too long + L\'IBAN és massa llarg El codi de país de l\'IBAN no és compatible - Invalid IBAN + IBAN no vàlid @@ -5941,7 +5941,7 @@ Cercar informació del teu compte - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Cerca el teu IBAN a la part superior de l\'extracte bancari. Els IBAN contenen fins a 34 caràcters. El nom que introdueixis hauria de coincidir amb el teu nom complet al teu compte bancari. Contacta amb el teu banc per obtenir més informació. Donació pendent @@ -5957,9 +5957,9 @@ Fet - Donation couldn\'t be processed + No s\'ha pogut processar la donació - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Estem tenint problemes per processar la teva transferència bancària. No se t\'ha efectuat el càrrec. Prova un altre mètode de pagament o posa\'t en contacte amb el banc per obtenir-ne més informació. Torna a provar-ho @@ -6386,17 +6386,17 @@ Aprova-la - Turn on full screen notifications? + Activar les notificacions de pantalla completa? - Never miss a call from your contacts and groups. + No et perdis mai cap trucada dels teus contactes i grups. Activar - Turn on full screen notifications + Activar les notificacions de pantalla completa - To receive call notifications from your contacts and groups: + Per rebre notificacions de trucades dels teus contactes i grups: - 2. %1$s Allow full screen notifications + 2. %1$s Activa les notificacions de pantalla completa diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 4104d48b72..d0b7de14a3 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -2245,9 +2245,9 @@ Aktualizace Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + K dispozici je nová verze aplikace Signal. Klepnutím ji aktualizujete. + Signal se nepodařilo aktualizovat + Zkusíme to znovu později. Odeslat zprávu? @@ -6111,8 +6111,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Opustit Signal a potvrdit platbu? + Po potvrzení platby se vraťte do aplikace Signal a dokončete zpracování příspěvku. @@ -6152,7 +6152,7 @@ Pokračovat - Failed to load mandate + Požadavek se nepodařilo načíst @@ -6172,13 +6172,13 @@ Přispět %1$s - IBAN is too short + Číslo IBAN je příliš krátké - IBAN is too long + Číslo IBAN je příliš dlouhé Kód země IBAN není podporován - Invalid IBAN + Neplatné číslo IBAN @@ -6201,7 +6201,7 @@ Zjistěte informace o účtu - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Číslo IBAN najdete v horní části výpisu z účtu. Může obsahovat až 34 znaků. Zadané jméno by se mělo shodovat s vaším celým jménem uvedeným na bankovním účtu. Další informace získáte ve své bance. Příspěvek se zpracovává @@ -6217,9 +6217,9 @@ Hotovo - Donation couldn\'t be processed + Příspěvek nebylo možné zpracovat - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Máme problémy se zpracováním vašeho bankovního převodu. Platba vám nebyla odečtena. Zkuste jiný způsob platby nebo se obraťte na svou banku a požádejte o další informace. Zkusit znovu @@ -6658,17 +6658,17 @@ Schválit - Turn on full screen notifications? + Zapnout oznámení na celou obrazovku? - Never miss a call from your contacts and groups. + Nezmeškejte žádný hovor od svých kontaktů a skupin. Zapnout - Turn on full screen notifications + Zapnout oznámení na celou obrazovku - To receive call notifications from your contacts and groups: + Pokud chcete dostávat oznámení o hovorech od svých kontaktů a skupin: - 2. %1$s Allow full screen notifications + 2. %1$s Povolte oznámení na celou stránku diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 659ccaea15..a66924ec64 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -2099,9 +2099,9 @@ Opdater Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + En ny version af Signal er tilgængelig. Tryk for at opdatere. + Signal kunne ikke opdateres + Vi prøver igen senere. Send besked? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Forlad Signal for at bekræfte betaling? + Når denne betaling er bekræftet, skal du vende tilbage til Signal for at afslutte behandlingen af din donation. @@ -5892,7 +5892,7 @@ Fortsæt - Failed to load mandate + Kunne ikke indlæse anmodningen @@ -5912,13 +5912,13 @@ Donér %1$s - IBAN is too short + IBAN er for kort - IBAN is too long + IBAN er for langt IBAN-landekode understøttes ikke - Invalid IBAN + Ugyldigt IBAN @@ -5941,7 +5941,7 @@ Find dine kontooplysninger - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Find dit IBAN øverst på dit kontoudtog. Et IBAN indeholder op til 34 tegn. Det navn, du angiver, skal svare til det fulde navn på din bankkonto. Kontakt din bank for at få flere oplysninger. Donationen afventer @@ -5957,9 +5957,9 @@ Færdig - Donation couldn\'t be processed + Donation kunne ikke behandles - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Vi har problemer med at behandle din bankoverførsel. Du er ikke blevet debiteret. Prøv en anden betalingsmetode, eller kontakt din bank for at få flere oplysninger. Prøv igen @@ -6386,17 +6386,17 @@ Godkend - Turn on full screen notifications? + Slå notifikationer på fuld skærm til? - Never miss a call from your contacts and groups. + Gå aldrig glip af et opkald fra dine kontakter og grupper. Aktiver - Turn on full screen notifications + Slå notifikationer på fuld skærm til - To receive call notifications from your contacts and groups: + For at modtage opkaldsnotifikationer fra dine kontakter og grupper: - 2. %1$s Allow full screen notifications + 2. %1$s Tillad notifikationer på fuld skærm diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 5f56b696a4..d71edaa474 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -2099,9 +2099,9 @@ Signal-Aktualisierung - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Eine neue Signal-Version ist verfügbar. Zum Aktualisieren antippen. + Signal konnte nicht aktualisiert werden + Wir versuchen es später erneut. Nachricht senden? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Signal verlassen, um Zahlung zu bestätigen? + Sobald diese Zahlung bestätigt ist, kannst du zu Signal zurückkehren, um den Spendenvorgang abzuschließen. @@ -5892,7 +5892,7 @@ Fortfahren - Failed to load mandate + Lastschriftanfrage konnte nicht geladen werden @@ -5912,13 +5912,13 @@ Spende %1$s - IBAN is too short + Die IBAN ist zu kurz - IBAN is too long + Die IBAN ist zu lang Der IBAN-Ländercode wird nicht unterstützt - Invalid IBAN + IBAN ungültig @@ -5941,7 +5941,7 @@ Deine Kontodaten finden - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Du findest deine IBAN oben auf deinem Kontoauszug. IBAN bestehen aus bis zu 34 Zeichen. Der Name, den du eingibst, sollte mit dem vollständigen Namen, der für dein Bankkonto angegeben ist, übereinstimmen. Kontaktiere deine Bank, um weitere Informationen zu erhalten. Spende ausstehend @@ -5957,9 +5957,9 @@ Fertig - Donation couldn\'t be processed + Spende konnte nicht verarbeitet werden - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Leider können wir deine Überweisung nicht bearbeiten. Dir wurde keine Gebühr berechnet. Versuche es mit einer anderen Zahlungsmethode oder kontaktiere deine Bank für weitere Informationen. Erneut versuchen @@ -6386,17 +6386,17 @@ Bestätigen - Turn on full screen notifications? + Benachrichtigungen im Vollbildmodus aktivieren? - Never miss a call from your contacts and groups. + Verpasse nie wieder einen Anruf von deinen Kontakten und Gruppen. Einschalten - Turn on full screen notifications + Benachrichtigungen im Vollbildmodus aktivieren - To receive call notifications from your contacts and groups: + Um Anrufbenachrichtigungen von deinen Kontakten und Gruppen zu erhalten: - 2. %1$s Allow full screen notifications + 2. %1$s Benachrichtigungen im Vollbildmodus erlauben diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 1e28589a74..b0cda6d0ee 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -2099,9 +2099,9 @@ Αναβάθμιση Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Μια νέα έκδοση του Signal είναι διαθέσιμη. Πάτα για ενημέρωση. + Αποτυχία ενημέρωσης Signal + Θα προσπαθήσουμε ξανά αργότερα. Αποστολή μηνύματος; @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Αποχώρηση από το Signal για επιβεβαίωση πληρωμής; + Μόλις επιβεβαιωθεί αυτή η πληρωμή, έλα πάλι στο Signal για να ολοκληρώσεις την επεξεργασία της δωρεάς σου. @@ -5892,7 +5892,7 @@ Συνέχεια - Failed to load mandate + Αποτυχία φόρτωσης εντολής @@ -5912,13 +5912,13 @@ Δωρεά %1$s - IBAN is too short + Το IBAN είναι πολύ μικρό - IBAN is too long + Το IBAN είναι πολύ μεγάλο Ο κωδικός χώρας IBAN δεν υποστηρίζεται - Invalid IBAN + Μη έγκυρο IBAN @@ -5941,7 +5941,7 @@ Βρες τα στοιχεία του λογαριασμού σου - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Αναζήτησε το ΙΒΑΝ στο επάνω μέρος του τραπεζικού λογαριασμού σου. Οι αριθμοί IBAN περιέχουν έως 34 χαρακτήρες. Το όνομα που γράφεις θα πρέπει να ταιριάζει με το πλήρες όνομά σου στον τραπεζικό σου λογαριασμό. Επικοινώνησε με την τράπεζά σου για περισσότερες πληροφορίες. Η δωρεά εκκρεμεί @@ -5957,9 +5957,9 @@ Τέλος - Donation couldn\'t be processed + Δεν ήταν δυνατή η επεξεργασία της δωρεάς - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Αντιμετωπίζουμε πρόβλημα με την επεξεργασία της τραπεζικής σου μεταφοράς. Δεν έχεις χρεωθεί. Δοκίμασε άλλο τρόπο πληρωμής ή επικοινώνησε με την τράπεζά σου για περισσότερες πληροφορίες. Ξαναπροσπάθησε @@ -6386,17 +6386,17 @@ Έγκριση - Turn on full screen notifications? + Ενεργοποίηση ειδοποιήσεων σε πλήρη οθόνη; - Never miss a call from your contacts and groups. + Μη χάσεις καμία κλήση από τις επαφές και τις ομάδες σου. Ενεργοποίηση - Turn on full screen notifications + Ενεργοποίησε τις ειδοποιήσεις σε πλήρη οθόνη - To receive call notifications from your contacts and groups: + Για να λαμβάνεις ειδοποιήσεις κλήσεων από τις επαφές και τις ομάδες σου: - 2. %1$s Allow full screen notifications + 2. %1$s Να επιτρέπονται οι ειδοποιήσεις σε πλήρη οθόνη diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 4733794017..05ba08d631 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -2099,9 +2099,9 @@ Actualizar Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Una nueva versión de Signal está disponible. Toca para actualizar. + Signal no se ha podido actualizar + Lo intentaremos de nuevo más tarde. ¿Enviar mensaje? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + ¿Salir de Signal para confirmar el pago? + Una vez confirmado este pago, regresa a Signal para terminar de procesar tu donación. @@ -5892,7 +5892,7 @@ Continuar - Failed to load mandate + No se pudo cargar el mandato @@ -5912,13 +5912,13 @@ Donar %1$s - IBAN is too short + El IBAN es demasiado corto - IBAN is too long + El IBAN es demasiado largo El código de país en el IBAN no es compatible - Invalid IBAN + IBAN no válido @@ -5941,7 +5941,7 @@ Buscar información de tu cuenta - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Busca tu IBAN en la parte superior de tu extracto bancario. Los IBAN tienen hasta 34 caracteres. El nombre que introduzcas debe coincidir con tu nombre completo en tu cuenta bancaria. Ponte en contacto con tu banco para obtener más información. Donación pendiente @@ -5957,9 +5957,9 @@ Hecho - Donation couldn\'t be processed + No se pudo procesar la donación - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Estamos teniendo problemas para procesar tu transferencia bancaria. No se te ha cobrado. Selecciona otro método de pago o contacta a tu banco para más información. Intentar de nuevo @@ -6386,17 +6386,17 @@ Aprobar - Turn on full screen notifications? + ¿Activar las notificaciones de pantalla completa? - Never miss a call from your contacts and groups. + Nunca te pierdas una llamada de tus contactos o grupos. Activar - Turn on full screen notifications + Activa las notificaciones de pantalla completa - To receive call notifications from your contacts and groups: + Para recibir notificaciones de llamadas de tus contactos y grupos: - 2. %1$s Allow full screen notifications + 2. %1$s Activa las notificaciones de pantalla completa diff --git a/app/src/main/res/values-eu/strings.xml b/app/src/main/res/values-eu/strings.xml index 35aab5f65c..9ecf5c828a 100644 --- a/app/src/main/res/values-eu/strings.xml +++ b/app/src/main/res/values-eu/strings.xml @@ -2099,9 +2099,9 @@ Signal eguneratu - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal-en bertsio berri bat dago. Eguneratzeko, sakatu hau. + Ezin izan da eguneratu Signal + Berriro saiatuko gara geroago. Mezua bidali? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Signal-etik irten nahi duzu ordainketa berresteko? + Ordainketa hau berretsitakoan, itzuli Signal-era dohaintza prozesatzen amaitzeko. @@ -5892,7 +5892,7 @@ Jarraitu - Failed to load mandate + Ezin izan da kargatu eskera @@ -5912,13 +5912,13 @@ Eman %1$s - IBAN is too short + IBANa laburregia da - IBAN is too long + IBANa luzeegia da IBANaren herrialde-kodea ez da onartzen - Invalid IBAN + IBANak ez du balio @@ -5941,7 +5941,7 @@ Bilatu zure kontuaren informazioa - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Bilatu IBAN zenbakia banku-laburpenaren goialdean. IBAN zenbakiek 34 karaktere dituzte gehienez. Sartzen duzun izenak zure banku-kontuan datorren izen osoarekin bat etorri behar du. Jarri harremanetan zure bankuarekin informazio gehiago lortzeko. Dohaintza zain @@ -5957,9 +5957,9 @@ Eginda - Donation couldn\'t be processed + Ezin izan da prozesatu dohaintza - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Arazoak izaten ari gara banku-transferentzia prozesatzeko. Ez zaizu ezer kobratu. Saiatu berriro beste ordainketa-metodo batekin edo jarri harremanetan zure bankuarekin informazio gehiago lortzeko. Saiatu berriro @@ -6386,17 +6386,17 @@ Onartu - Turn on full screen notifications? + Pantaila osoko jakinarazpenak aktibatu nahi dituzu? - Never miss a call from your contacts and groups. + Ez galdu zure kontaktu eta taldeen dei bat ere. Aktibatu - Turn on full screen notifications + Aktibatu pantaila osoko jakinarazpenak - To receive call notifications from your contacts and groups: + Zure kontaktu eta taldeen dei-jakinarazpenak jasotzeko: - 2. %1$s Allow full screen notifications + 2. %1$s Onartu pantaila osoko jakinarazpenak diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index 21ca0e5083..6d7bcea918 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -2099,9 +2099,9 @@ به‌روزرسانی سیگنال - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + نسخۀ جدیدی از سیگنال دردسترس است. برای به‌روزرسانی، ضربه بزنید. + سیگنال به‌روزرسانی نشد + بعداً دوباره امتحان خواهیم کرد. ارسال پیام؟ @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + برای تأیید پرداخت از سیگنال خارج می‌شوید؟ + وقتی پرداخت تأیید شد، برای تکمیل پردازش اهدای کمک مالی‌تان به سیگنال برگردید. @@ -5892,7 +5892,7 @@ ادامه - Failed to load mandate + فرمان بارگیری نشد @@ -5912,13 +5912,13 @@ اهدای مالی %1$s - IBAN is too short + شمارۀ IBAN زیاده کوتاه است - IBAN is too long + شمارۀ IBAN زیاده طولانی است کد کشور IBAN پشتیبانی نمی‌شود - Invalid IBAN + شمارۀ IBAN نامعتبر است @@ -5941,7 +5941,7 @@ اطلاعات حساب خود را پیدا کنید - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + شمارۀ IBAN خود را بالای صورتحساب بانکی‌تان پیدا کنید. شمارۀ IBAN حداکثر ۳۴ نویسه دارد. نامی که وارد می‌کنید باید با نام و نام خانوادگی کامل شما که در حساب بانکی‌تان ثبت شده مطابقت داشته باشد. برای اطلاعات بیشتر با بانک خود تماس بگیرید. کمک مالی در انتظار تأیید @@ -5957,9 +5957,9 @@ انجام شد - Donation couldn\'t be processed + اهدای کمک مالی پردازش نشد - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + در پردازش انتقال بانکی شما با مشکل روبرو هستیم. هزینه‌ای از شما کسر نشده است. یک روش پرداختی دیگر را امتحان کنید یا با بانک خود برای اطلاعات بیشتر تماس بگیرید. دوباره امتحان کنید @@ -6386,17 +6386,17 @@ موافقت - Turn on full screen notifications? + اعلان‌های تمام‌صفحه روشن شود؟ - Never miss a call from your contacts and groups. + هیچ‌وقت تماسی را از مخاطبان و گروه‌هایتان از دست ندهید. روشن کن - Turn on full screen notifications + روشن کردن اعلان‌های تمام‌صفحه - To receive call notifications from your contacts and groups: + برای دریافت اعلان تماس‌ها از مخاطبان و گروه‌هایتان: - 2. %1$s Allow full screen notifications + ۲. %1$s اجازه دادن به اعلان‌های تمام‌صفحه diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index c36e695e2e..3b319895f0 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -2099,9 +2099,9 @@ Signal-päivitys - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Uusi versio Signalista on saatavilla. Päivitä napauttamalla. + Signalin päivitys epäonnistui + Yritämme myöhemmin uudelleen. Lähetetäänkö viesti? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Siirrytäänkö pois Signalista maksun vahvistamiseksi? + Palaa Signaliin maksun vahvistamisen jälkeen, jotta lahjoitus voidaan käsitellä loppuun. @@ -5892,7 +5892,7 @@ Jatka - Failed to load mandate + Pankkivaltuutuksen lataaminen epäonnistui @@ -5912,13 +5912,13 @@ Lahjoita %1$s - IBAN is too short + IBAN-tilinumero on liian lyhyt - IBAN is too long + IBAN-tilinumero on liian pitkä IBAN-maakoodia ei tueta - Invalid IBAN + Virheellinen IBAN-tilinumero @@ -5941,7 +5941,7 @@ Etsi tilisi tiedot - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Löydät tilisi IBAN-tilinumeron tiliotteen yläosasta. IBAN-tilinumeroissa voi olla enintään 34 merkkiä. Antamasi nimen tulee vastata antamasi pankkitilin omistajan nimeä. Saat lisätietoja pankistasi. Lahjoitus on pankin käsittelyssä @@ -5957,9 +5957,9 @@ Valmis - Donation couldn\'t be processed + Lahjoitusta ei voitu käsitellä - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Pankkisiirron käsittelyssä on ongelma. Sinua ei veloitettu. Kokeile toista maksutapaa tai ole yhteydessä pankkiisi saadaksesi lisätietoja. Yritä uudelleen @@ -6386,17 +6386,17 @@ Hyväksy - Turn on full screen notifications? + Otetaanko koko näytön ilmoitukset käyttöön? - Never miss a call from your contacts and groups. + Varmista, että huomaat yhteystiedoilta tai ryhmiltä tulevat puhelut. Ota käyttöön - Turn on full screen notifications + Ota käyttöön koko näytön ilmoitukset - To receive call notifications from your contacts and groups: + Saat ilmoitukset yhteystietojen ja ryhmien puheluista seuraavasti: - 2. %1$s Allow full screen notifications + 2. %1$s Salli koko näytön ilmoitukset diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index a77eb7b77c..392c5ecd50 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -2099,9 +2099,9 @@ Mise à jour de Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Une nouvelle version de Signal est disponible. Appuyez pour lancer la mise à jour. + Signal n’a pas pu être mis à jour + Nous réessaierons plus tard. Envoyer le message ? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Quitter Signal pour confirmer le paiement ? + Une fois ce paiement confirmé, retournez sur Signal pour finaliser votre don. @@ -5892,7 +5892,7 @@ Poursuivre - Failed to load mandate + Échec du chargement @@ -5912,13 +5912,13 @@ Faire un don de %1$s - IBAN is too short + Votre numéro IBAN est trop court - IBAN is too long + Votre numéro IBAN est trop long Code pays de l’IBAN non pris en charge - Invalid IBAN + IBAN invalide @@ -5941,7 +5941,7 @@ Trouver les détails relatifs à votre compte - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Votre numéro IBAN se trouve généralement en haut de vos relevés bancaires. Les numéros IBAN contiennent jusqu’à 34 caractères. Le nom que vous saisissez doit correspondre au nom complet associé à votre compte bancaire. Veuillez contacter votre banque pour plus d’informations. Don en attente @@ -5957,9 +5957,9 @@ Terminé - Donation couldn\'t be processed + Le don n’a pas pu être traité - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Nous avons des difficultés à traiter votre virement bancaire. Vous n’avez pas été débité. Essayez un autre mode de paiement ou contactez votre banque pour plus d’informations. Réessayer @@ -6386,17 +6386,17 @@ Approuver - Turn on full screen notifications? + Activer les notifications en plein écran ? - Never miss a call from your contacts and groups. + Ne manquez jamais un appel de vos contacts ni de vos groupes. Activer - Turn on full screen notifications + Activer les notifications en plein écran - To receive call notifications from your contacts and groups: + Pour recevoir les notifications d’appel de vos contacts et groupes : - 2. %1$s Allow full screen notifications + 2. %1$s Activer les notifications en plein écran diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml index 525bd1f9b5..8cef2726b7 100644 --- a/app/src/main/res/values-gl/strings.xml +++ b/app/src/main/res/values-gl/strings.xml @@ -2099,9 +2099,9 @@ Actualizar Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Hai dispoñible unha nova versión de Signal. Preme para actualizar. + Signal non se puido actualizar + Volveremos intentalo de novo máis tarde. Enviar mensaxe? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Abandonar Signal para confirmar o pagamento? + Cando se confirme este pagamento, volve a Signal para rematar de procesar a túa doazón. @@ -5892,7 +5892,7 @@ Continuar - Failed to load mandate + Erro ao cargar a petición @@ -5912,13 +5912,13 @@ Doa %1$s - IBAN is too short + O IBAN é demasiado curto - IBAN is too long + O IBAN é demasiado longo O código de país do IBAN non se admite - Invalid IBAN + IBAN incorrecto @@ -5941,7 +5941,7 @@ Atopa a información da túa conta - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Busca o teu IBAN na parte superior do teu extracto bancario. O IBAN contén ata 34 caracteres. O nome que insiras debe coincidir co teu nome completo na túa conta bancaria. Contacta co teu banco se queres obter máis información. Doazón pendente @@ -5957,9 +5957,9 @@ Feito - Donation couldn\'t be processed + A doazón non se procesou - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Temos problemas para procesar a túa transferencia bancaria. Non se realizou o cobro. Proba outro método de pagamento ou contacta co teu banco para obter máis información. Volver tentar @@ -6386,17 +6386,17 @@ Aprobar - Turn on full screen notifications? + Activar as notificacións de pantalla completa? - Never miss a call from your contacts and groups. + Non perdas ningunha chamada dos teus contactos e grupos. Acender - Turn on full screen notifications + Activa as notificacións de pantalla completa - To receive call notifications from your contacts and groups: + Para recibir as notificacións de chamadas dos teus contactos e grupos: - 2. %1$s Allow full screen notifications + 2. %1$s Activa as notificacións de pantalla completa diff --git a/app/src/main/res/values-gu/strings.xml b/app/src/main/res/values-gu/strings.xml index 607d738517..ba37f9d7b6 100644 --- a/app/src/main/res/values-gu/strings.xml +++ b/app/src/main/res/values-gu/strings.xml @@ -2099,9 +2099,9 @@ Signal અપડેટ - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signalનું નવું વર્ઝન ઉપલબ્ધ છે. અપડેટ કરવા માટે ટૅપ કરો. + Signal અપડેટ થવામાં નિષ્ફળ રહ્યું + અમે પછીથી ફરી પ્રયાસ કરીશું. મેસેજ મોકલો? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + ચુકવણીની ખાતરી કરવા માટે Signal છોડવું છે? + એકવાર આ ચુકવણીની ખાતરી થઈ જાય, પછી તમારા દાનની પ્રક્રિયા પૂર્ણ કરવા માટે Signal પર પાછા આવો. @@ -5892,7 +5892,7 @@ ચાલુ રાખો - Failed to load mandate + મેન્ડેટ લોડ થવામાં નિષ્ફળ થયું @@ -5912,13 +5912,13 @@ %1$s દાન કરો - IBAN is too short + IBAN બહુ નાનો છે - IBAN is too long + IBAN બહુ લાંબો છે IBAN દેશ કોડ સપોર્ટેડ નથી - Invalid IBAN + અમાન્ય IBAN @@ -5941,7 +5941,7 @@ તમારી એકાઉન્ટ માહિતી શોધો - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + તમારા બેંક સ્ટેટમેન્ટની સૌથી ઉપર તમારો IBAN નંબર જુઓ. IBAN નંબરમાં 34 જેટલા અક્ષરો હોય છે. તમે જે નામ દાખલ કરો છો તે તમારા બેંક એકાઉન્ટ પરના તમારા પૂરા નામ સાથે મેળ ખાતું હોવું જોઈએ. વધુ માહિતી માટે તમારી બેંકનો સંપર્ક કરો. દાન બાકી છે @@ -5957,9 +5957,9 @@ થઈ ગયું - Donation couldn\'t be processed + દાનની પ્રક્રિયા કરી શકાઈ નથી - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + અમને તમારા બેંક ટ્રાન્સફરની પ્રક્રિયા કરવામાં મુશ્કેલી આવી રહી છે. તમારી પાસેથી પૈસા લેવામાં આવ્યા નથી. અન્ય ચુકવણી પદ્ધતિ અજમાવો અથવા વધુ માહિતી માટે તમારી બેંકનો સંપર્ક કરો. ફરીથી પ્રયત્ન કરો @@ -6386,17 +6386,17 @@ મંજૂર - Turn on full screen notifications? + ફૂલ સ્ક્રીન નોટિફિકેશન ચાલુ કરવા છે? - Never miss a call from your contacts and groups. + તમારા સંપર્કો અને ગ્રૂપ તરફથી ક્યારેય કૉલ ચૂકશો નહીં. ચાલુ કરો - Turn on full screen notifications + ફૂલ સ્ક્રીન નોટિફિકેશન ચાલુ કરો - To receive call notifications from your contacts and groups: + તમારા સંપર્કો અને ગ્રૂપમાંથી કૉલ નોટિફિકેશન પ્રાપ્ત કરવા માટે: - 2. %1$s Allow full screen notifications + 2. %1$s ફૂલ સ્ક્રીન નોટિફિકેશનને મંજૂરી આપો diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml index d78bddfef4..9b10749c34 100644 --- a/app/src/main/res/values-hi/strings.xml +++ b/app/src/main/res/values-hi/strings.xml @@ -2099,9 +2099,9 @@ Signal अपडेट - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal का नया संस्करण उपलब्ध है। अपडेट करने के लिए टैप करें। + Signal अपडेट करने में विफल रहे + हम बाद में पुनः प्रयास करेंगे। मेसेज भेजें? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + भुगतान की पुष्टि के लिए Signal छोड़ें? + इस भुगतान की पुष्टि हो जाने पर, अपने दान की प्रक्रिया पूरी करने के लिए Signal पर वापस लौटें। @@ -5892,7 +5892,7 @@ जारी रखें - Failed to load mandate + मैंडेट लोड करने में विफल @@ -5912,13 +5912,13 @@ %1$s का दान दें - IBAN is too short + IBAN बहुत छोटा है - IBAN is too long + IBAN बहुत लंबा है IBAN देश कोड समर्थित नहीं है - Invalid IBAN + अमान्य IBAN @@ -5941,7 +5941,7 @@ अपने अकाउंट की जानकारी ढूंढें - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + अपने बैंक स्टेटमेंट के शीर्ष पर अपना IBAN देखें। IBANs में अधिकतम 34 वर्ण होते हैं। आपके द्वारा दर्ज किया गया नाम आपके बैंक अकाउंट पर आपके पूरे नाम से मेल खाना चाहिए। अधिक जानकारी के लिए अपने बैंक से संपर्क करें। दान लंबित है @@ -5957,9 +5957,9 @@ पूर्ण - Donation couldn\'t be processed + दान संसाधित नहीं किया जा सका - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + हमें आपका बैंक हस्तांतरण संसाधित करने में दिक्कत आ रही है। आपसे शुल्क नहीं लिया गया है। किसी अन्य भुगतान विधि से प्रयास करें या फिर अधिक जानकारी के लिए अपने बैंक से संपर्क करें। फिर से कोशिश करो @@ -6386,17 +6386,17 @@ स्वीकार करें - Turn on full screen notifications? + फुल स्क्रीन अधिसूचना चालू करें? - Never miss a call from your contacts and groups. + अपने संपर्कों और ग्रुप्स से कभी भी कोई कॉल न छूट पाएँ। शुरु करें - Turn on full screen notifications + फुल स्क्रीन अधिसूचना चालू करें - To receive call notifications from your contacts and groups: + अपने संपर्कों और समूहों से कॉल अधिसूचना प्राप्त करने के लिए: - 2. %1$s Allow full screen notifications + 2. %1$s फुल स्क्रीन नोटिफिकेशन की अनुमति दें diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index a6574ad854..9065661cef 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -2245,9 +2245,9 @@ Signal ažuriranje - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Dostupna je nova verzija Signala. Dodirnite za ažuriranje. + Ažuriranje Signala nije uspjelo + Pokušat ćemo ponovno kasnije. Pošalji poruku? @@ -6111,8 +6111,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Napustiti Signal radi potvrde plaćanja? + Nakon što je uplata potvrđena, vratite se na Signal da bismo dovršili obradu vaše donacije. @@ -6152,7 +6152,7 @@ Nastavi - Failed to load mandate + Učitavanje naloga nije uspjelo @@ -6172,13 +6172,13 @@ Doniraj %1$s - IBAN is too short + IBAN je prekratak - IBAN is too long + IBAN je predug Navedeni državni kôd IBAN-a nije podržan - Invalid IBAN + Navedeni IBAN nije važeći @@ -6201,7 +6201,7 @@ Pronađite informacije o vašem računu - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Potražite svoj IBAN na vrhu bankovnog izvoda. IBAN se sastoji od maksimalno 34 znaka. Ime koje unesete mora odgovarati vašem punom imenu na vašem bankovnom računu. Za više informacija obratite se svojoj banci. Potvrda donacije u tijeku @@ -6217,9 +6217,9 @@ Gotovo - Donation couldn\'t be processed + Donaciju nije bilo moguće obraditi - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Imamo problema s obradom vašeg bankovnog transfera. Vaš račun nije terećen. Promijenite način plaćanja ili se obratite svojoj banci za više informacija. Pokušajte ponovno @@ -6658,17 +6658,17 @@ Odobri - Turn on full screen notifications? + Uključiti obavijesti preko cijelog zaslona? - Never miss a call from your contacts and groups. + Ne propustite pozive vaših kontakata i grupa. Uključi - Turn on full screen notifications + Uključite obavijesti preko cijelog zaslona - To receive call notifications from your contacts and groups: + Kako biste primili obavijesti o pozivima svojih kontakata i grupa: - 2. %1$s Allow full screen notifications + 2. %1$s Dopustite obavijesti preko cijelog zaslona diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 5652674c1c..04f4ae4509 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -2099,9 +2099,9 @@ Signal frissítés - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Megjelent a Signal új verziója. A frissítéshez koppints. + A Signal frissítése sikertelen + Később újra megpróbáljuk. Üzenet küldése? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Kilépsz a Signalból a fizetés megerősítéséhez? + A fizetés megerősítése után térj vissza a Signalra és fejezd be az adomány feldolgozását. @@ -5892,7 +5892,7 @@ Tovább - Failed to load mandate + Nem sikerült betölteni a megbízást @@ -5912,13 +5912,13 @@ %1$s adományozása - IBAN is too short + Az IBAN túl rövid - IBAN is too long + Az IBAN túl hosszú Az IBAN-országkód nem támogatott - Invalid IBAN + Érvénytelen IBAN @@ -5941,7 +5941,7 @@ Keresd meg a fiókadataidat - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Keresd meg az IBAN-számod a bankszámlakivonat tetején. Az IBAN-számok legfeljebb 34 karaktert tartalmazhatnak. A megadott névnek meg kell egyeznie a bankszámládon szereplő teljes névvel. További információért fordulj a bankodhoz. Adomány függőben @@ -5957,9 +5957,9 @@ Kész - Donation couldn\'t be processed + Az adományt nem sikerült feldolgozni - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Problémába ütköztünk a banki átutalás feldolgozása során. A számládat nem terhelték meg. Próbáld újra egy másik fizetési móddal, vagy keresd fel a bankodat további információért! Újrapróbálkozás @@ -6386,17 +6386,17 @@ Jóváhagyás - Turn on full screen notifications? + Bekapcsolod a teljes képernyős értesítéseket? - Never miss a call from your contacts and groups. + Soha ne maradj le a névjegyeid és csoportjaid hívásairól. Bekapcsolás - Turn on full screen notifications + Kapcsold be a teljes képernyős értesítéseket - To receive call notifications from your contacts and groups: + Hívásértesítések fogadásához a névjegyeidtől és a csoportjaidtól: - 2. %1$s Allow full screen notifications + 2. %1$s Teljes képernyős értesítések engedélyezése diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml index 95ca63f475..a74a020008 100644 --- a/app/src/main/res/values-in/strings.xml +++ b/app/src/main/res/values-in/strings.xml @@ -2026,9 +2026,9 @@ Pembaharuan Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal versi baru telah tersedia. Ketuk untuk memperbarui. + Signal gagal diperbarui + Kami akan coba lagi nanti. Kirim pesan? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Keluar dari Signal untuk mengonfirmasi pembayaran? + Setelah pembayaran dikonfirmasi, kembali ke Signal untuk selesaikan pemrosesan donasi Anda. @@ -5762,7 +5762,7 @@ Lanjutkan - Failed to load mandate + Gagal memuat permintaan @@ -5782,13 +5782,13 @@ Donasi %1$s - IBAN is too short + IBAN terlalu pendek - IBAN is too long + IBAN terlalu panjang Kode negara IBAN tidak didukung - Invalid IBAN + IBAN tidak valid @@ -5811,7 +5811,7 @@ Temukan informasi rekening Anda - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Temukan IBAN di bagian atas laporan bank Anda. IBAN memuat hingga 34 karakter. Nama yang dimasukkan harus sesuai dengan nama lengkap di rekening bank. Hubungi bank untuk informasi lebih lanjut. Donasi tertunda @@ -5827,9 +5827,9 @@ Selesai - Donation couldn\'t be processed + Donasi tidak dapat diproses - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Kami mengalami masalah saat memproses transfer bank. Anda belum dikenakan tagihan. Coba metode pembayaran lain atau hubungi bank Anda untuk informasi lebih lanjut. Coba lagi @@ -6250,17 +6250,17 @@ Terima - Turn on full screen notifications? + Aktifkan notifikasi layar penuh? - Never miss a call from your contacts and groups. + Jangan pernah melewatkan panggilan dari kontak dan grup Anda. Aktifkan - Turn on full screen notifications + Aktifkan notifikasi layar penuh - To receive call notifications from your contacts and groups: + Untuk menerima notifikasi panggilan dari kontak dan grup Anda: - 2. %1$s Allow full screen notifications + 2. %1$s Izinkan notifikasi layar penuh diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 12c87dc1aa..57848c94ac 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -2099,9 +2099,9 @@ Aggiornamento Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + È disponibile una nuova versione di Signal. Tocca qui per aggiornare. + Signal non è riuscito ad aggiornarsi + Proveremo di nuovo più tardi. Inviare messaggio? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Uscire da Signal per confermare il pagamento? + Dopo aver completato il pagamento, torna su Signal per completare l\'elaborazione della tua donazione. @@ -5892,7 +5892,7 @@ Continua - Failed to load mandate + Impossibile caricare la richiesta @@ -5912,13 +5912,13 @@ Dona %1$s - IBAN is too short + IBAN troppo corto - IBAN is too long + IBAN troppo lungo Codice identificazione Paese dell\'IBAN non supportato - Invalid IBAN + IBAN non valido @@ -5941,7 +5941,7 @@ Trova i dettagli del tuo conto - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Cerca il tuo IBAN nell\'home banking o su un estratto conto. L\'IBAN contiene fino a 34 caratteri. Il nome che inserisci deve corrispondere al nome presente sul tuo conto bancario. Contatta la tua banca per maggiori informazioni. Donazione in sospeso @@ -5957,9 +5957,9 @@ Fatto - Donation couldn\'t be processed + Impossibile elaborare la donazione - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Stiamo riscontrando dei problemi nell\'elaborazione del tuo bonifico. Non ti è stato addebitato alcun importo. Prova un altro metodo di pagamento o contatta la tua banca per maggiori informazioni. Riprova @@ -6386,17 +6386,17 @@ Approva - Turn on full screen notifications? + Attivare le notifiche a schermo intero? - Never miss a call from your contacts and groups. + Non perderti più una chiamata dai tuoi contatti o gruppi. Attiva - Turn on full screen notifications + Attiva le notifiche a schermo intero - To receive call notifications from your contacts and groups: + Per ricevere le notifiche di chiamata dai tuoi contatti e gruppi: - 2. %1$s Allow full screen notifications + 2. %1$s Consenti notifiche a schermo intero diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 99ac8ec24a..3426f5215b 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -2245,9 +2245,9 @@ עדכון Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + גרסה חדשה של Signal זמינה. יש ללחוץ כדי לעדכן. + עדכון Signal נכשל + ננסה שוב מאוחר יותר. לשלוח הודעה? @@ -6111,8 +6111,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + לעזוב את Signal כדי לאשר את התשלום הזה? + לאחר אישור התשלום הזה, יש לחזור אל Signal כדי לסיים את עיבוד התרומה שלך. @@ -6152,7 +6152,7 @@ המשך - Failed to load mandate + טעינת בקשה נכשלה @@ -6172,13 +6172,13 @@ תרומה של %1$s - IBAN is too short + מספר IBAN קצר מדי - IBAN is too long + מספר IBAN ארוך מדי קוד המדינה של ה‑IBAN אינו נתמך - Invalid IBAN + מספר IBAN לא תקין @@ -6201,7 +6201,7 @@ מציאת פרטי החשבון שלך - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + יש לחפש את מספר ה–IBAN שלך בחלק העליון של דף חשבון הבנק שלך. מספרי IBAN מכילים עד 34 תווים. יש להזין שם שתואם לשם המלא שלך בחשבון הבנק שלך. למידע נוסף, יש ליצור קשר עם הבנק. תרומה ממתינה @@ -6217,9 +6217,9 @@ סיום - Donation couldn\'t be processed + לא היה ניתן לעבד את התרומה - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + נתקלנו בבעיה בעיבוד ההעברה הבנקאית שלך. לא חויבת. יש לנסות שיטת תשלום אחרת או ליצור קשר עם הבנק שלך לקבלת מידע נוסף. נסה שוב @@ -6658,17 +6658,17 @@ אשר - Turn on full screen notifications? + להפעיל התראות במסך מלא? - Never miss a call from your contacts and groups. + ככה אף פעם לא מפספסים שיחה מאנשי הקשר והקבוצות שלך. הפעלה - Turn on full screen notifications + הפעלת התראות במסך מלא - To receive call notifications from your contacts and groups: + כדי לקבל התראות על שיחות מאנשי הקשר והקבוצות שלך: - 2. %1$s Allow full screen notifications + 2. %1$s מאפשרים התראות במסך מלא diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index e411565dc9..80c7cbec3a 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -2026,9 +2026,9 @@ Signalアップデート - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + 新バージョンのSignalが利用可能です。タップして更新します。 + Signalの更新に失敗しました + 後で再度試してみます。 メッセージを送信しますか? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + 決済を確認するためにSignalを離れますか? + 決済を確認したら、Signalに戻って寄付の手続きを完了させてください。 @@ -5762,7 +5762,7 @@ 続行 - Failed to load mandate + リクエストを読み込めませんでした @@ -5782,13 +5782,13 @@ %1$s を寄付する - IBAN is too short + IBANが短すぎます - IBAN is too long + IBANが長すぎます この国コードはIBANを採用していません - Invalid IBAN + IBANが無効です @@ -5811,7 +5811,7 @@ アカウント情報を確認する - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + 銀行取引明細書の上部に記載されたIBANをご確認ください。IBANは最大34文字で構成されています。銀行口座の名義と同一の氏名を入力してください。詳細については、銀行までお問い合わせください。 寄付の手続き中です @@ -5827,9 +5827,9 @@ 完了 - Donation couldn\'t be processed + 寄付を処理できませんでした - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + 銀行振込の処理に問題が発生しています。課金はされていません。別の決済方法をお試しいただくか、取引先の銀行にお問い合わせください。 もう一度試す @@ -6250,17 +6250,17 @@ 承認する - Turn on full screen notifications? + 全画面通知をオンにしますか? - Never miss a call from your contacts and groups. + 連絡先やグループからの着信を見逃しません。 有効にする - Turn on full screen notifications + 全画面通知をオンにする - To receive call notifications from your contacts and groups: + 連絡先やグループから通話通知を受け取る - 2. %1$s Allow full screen notifications + 2. %1$s 全画面通知を許可する diff --git a/app/src/main/res/values-ka/strings.xml b/app/src/main/res/values-ka/strings.xml index ae591efdc8..0cc292953e 100644 --- a/app/src/main/res/values-ka/strings.xml +++ b/app/src/main/res/values-ka/strings.xml @@ -2099,9 +2099,9 @@ Signal-ის განახლება - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal-ის ახალი ვერსია ხელმისაწვდომია. დააჭირე განახლებისთვის. + Signal-ის განახლება ვერ მოხერხდა + მოგვიანებით ისევ ვცდით. გავაგზავნოთ შეტყობინება? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + გსურს, დატოვო Signal-ი ტრანზაქციის დასადასტურებლად? + როგორც კი ეს ტრანზაქცია დადასტურდება, შენი დონაციის დამუშავების დასასრულებლად Signal-ის აპში დაბრუნდი. @@ -5892,7 +5892,7 @@ გაგრძელება - Failed to load mandate + დავალების ჩატვირთვა ვერ მოხერხდა @@ -5912,13 +5912,13 @@ გააკეთე დონაცია %1$s - IBAN is too short + IBAN ნომერი ზედმეტად მოკლეა - IBAN is too long + IBAN ნომერი ზედმეტად გრძელია IBAN-ის ქვეყნის კოდს მხარდაჭერა არ აქვს - Invalid IBAN + არასწორი IBAN ნომერი @@ -5941,7 +5941,7 @@ იპოვე ინფორმაცია შენს ანგარიშზე - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + მოძებნე შენი IBAN ნომერი შენი საბანკო ამონაწერის ზედა ნაწილში. IBAN ნომრები 34-მდე სიმბოლოს შეიცავს. შენ მიერ შეყვანილი სახელი უნდა ემთხვეოდეს შენს სრულ სახელს შენს საბანკო ანგარიშზე. დამატებითი ინფორმაციისთვის შენს ბანკს დაუკავშირდი. დონაცია მუშავდება @@ -5957,9 +5957,9 @@ შესრულებულია - Donation couldn\'t be processed + დონაციის დამუშავება ვერ მოხერხდა - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + შენს საბანკო გადარიცხვის დამუშავებისას ხარვეზს გადავაწყდით. საფასური არ ჩამოგჭრია. სცადე გადახდის სხვა მეთოდი ან დაუკავშირდი შენს ბანკს დამატებითი ინფორმაციისთვის. ახლიდან სცადე @@ -6386,17 +6386,17 @@ დადასტურება - Turn on full screen notifications? + გსურს შეტყობინებები სრულ ეკრანზე ჩართო? - Never miss a call from your contacts and groups. + არასდროს გამოტოვო შენი კონტაქტებისა და ჯგუფების ზარები. ჩართვა - Turn on full screen notifications + შეტყობინებების სრულ ეკრანზე ჩართვა - To receive call notifications from your contacts and groups: + შენი კონტაქტებისგან და ჯგუფებიდან ზარის შეტყობინებების მისაღებად: - 2. %1$s Allow full screen notifications + 2. %1$s სრულ ეკრანზე შეტყობინებების დაშვება diff --git a/app/src/main/res/values-km/strings.xml b/app/src/main/res/values-km/strings.xml index c03ce9b353..0ad0a428a2 100644 --- a/app/src/main/res/values-km/strings.xml +++ b/app/src/main/res/values-km/strings.xml @@ -2026,9 +2026,9 @@ បច្ចុប្បន្នភាព Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal មានកំណែថ្មីមួយ។ ចុចដើម្បីដំឡើងកំណែ។ + Signal មិនអាចដំឡើងកំណែបានទេ + យើងនឹងព្យាយាមម្តងទៀតនៅពេលក្រោយ។ ផ្ញើសារ? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + ចាកចេញពី Signal ដើម្បីបញ្ជាក់ការបង់ប្រាក់ឬ? + នៅពេលការបង់ប្រាក់នេះត្រូវបានបញ្ជាក់ សូមត្រឡប់ទៅ Signal វិញដើម្បីបញ្ចប់ដំណើរការការបរិច្ចាគរបស់អ្នក។ @@ -5762,7 +5762,7 @@ បន្ត - Failed to load mandate + មិនអាចផ្ទុកសំណើបានទេ @@ -5782,13 +5782,13 @@ បរិច្ចាគ %1$s - IBAN is too short + លេខ IBAN ខ្លីពេក - IBAN is too long + លេខ IBAN វែងពេក មិនស្គាល់លេខកូដប្រទេស IBAN - Invalid IBAN + លេខ IBAN មិនត្រឹមត្រូវ @@ -5811,7 +5811,7 @@ ស្វែងរកព័ត៌មានគណនីរបស់អ្នក - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + រកមើលលេខ IBAN របស់អ្នកនៅផ្នែកខាងលើបំផុតនៃរបាយការណ៍ធនាគាររបស់អ្នក។ លេខ IBAN មានរហូតដល់ 34 តួអក្សរ។ ឈ្មោះដែលអ្នកបញ្ចូលគួរតែដូចគ្នានឹងឈ្មោះពេញរបស់អ្នកនៅលើគណនីធនាគាររបស់អ្នក។ សូមទាក់ទងធនាគាររបស់អ្នកសម្រាប់ព័ត៌មានបន្ថែម។ ការបរិច្ចាគស្ថិតក្នុងការរង់ចាំ @@ -5827,9 +5827,9 @@ រួចរាល់ - Donation couldn\'t be processed + ការបរិច្ចាគមិនអាចដំណើរការបានទេ - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + យើងកំពុងមានបញ្ហាក្នុងដំណើរការនៃការផ្ទេរប្រាក់តាមធនាគាររបស់អ្នក។ អ្នកមិនត្រូវបានគិតប្រាក់ទេ។ សូមសាកល្បងវិធីបង់ប្រាក់មួយផ្សេងទៀត ឬទាក់ទងធនាគាររបស់អ្នកសម្រាប់ព័ត៌មានបន្ថែម។ ព្យាយាមម្តងទៀត @@ -6250,17 +6250,17 @@ អនុញាតិ - Turn on full screen notifications? + បើកការជូនដំណឹងពេញអេក្រង់ឬ? - Never miss a call from your contacts and groups. + លែងខកមិនបានទទួលការហៅពីឈ្មោះទំនាក់ទំនង និងក្រុមរបស់អ្នកទៀត។ បើក - Turn on full screen notifications + បើកការជូនដំណឹងពេញអេក្រង់ - To receive call notifications from your contacts and groups: + ដើម្បីទទួលការជូនដំណឹងអំពីការហៅទូរសព្ទពីឈ្មោះទំនាក់ទំនង និងក្រុមរបស់អ្នក៖ - 2. %1$s Allow full screen notifications + 2. %1$s អនុញ្ញាតការជូនដំណឹងពេញអេក្រង់ diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index f995189b21..1ed4df89c7 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -2026,9 +2026,9 @@ Signal 업데이트 - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + 새 Signal 버전을 이용할 수 있습니다. 탭하여 업데이트하세요. + Signal 업데이트 실패 + 나중에 다시 시도하겠습니다. 메시지를 보내시겠습니까? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + 송금 확인을 위해 Signal에서 나가시겠습니까? + 송금이 확인되면 Signal로 돌아가 기부 절차를 완료하세요. @@ -5762,7 +5762,7 @@ 계속 - Failed to load mandate + 명령 로드 실패 @@ -5782,13 +5782,13 @@ %1$s 기부 - IBAN is too short + IBAN이 너무 짧습니다 - IBAN is too long + IBAN이 너무 깁니다 IBAN 국가 코드가 지원되지 않습니다. - Invalid IBAN + 유효하지 않은 IBAN @@ -5811,7 +5811,7 @@ 계좌 정보를 찾으세요 - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + 은행 입출금 내역서 상단에 있는 IBAN을 찾으세요. IBAN은 최대 34자로 구성됩니다. 입력한 이름이 은행 계좌상의 전체 이름과 일치해야 합니다. 더 자세한 정보는 은행에 문의하세요. 기부 대기 중 @@ -5827,9 +5827,9 @@ 확인 - Donation couldn\'t be processed + 기부를 처리할 수 없습니다 - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + 은행 송금을 진행하는 중에 문제가 발생했습니다. 요금이 청구되지 않았습니다. 다른 결제 수단을 시도하거나 은행에 자세한 정보를 문의하세요. 다시 시도해 주세요. @@ -6250,17 +6250,17 @@ 승인 - Turn on full screen notifications? + 전체 화면 알림을 켜시겠습니까? - Never miss a call from your contacts and groups. + 내 연락처와 그룹의 전화를 놓치지 마세요. 사용 - Turn on full screen notifications + 전체 화면 알림 켜기 - To receive call notifications from your contacts and groups: + 연락처와 그룹으로부터 오는 전화 알림을 받으려면 다음과 같이 하세요. - 2. %1$s Allow full screen notifications + 2. %1$s 전체 화면 알림 허용 diff --git a/app/src/main/res/values-ky/strings.xml b/app/src/main/res/values-ky/strings.xml index 2143ead31a..923fe15136 100644 --- a/app/src/main/res/values-ky/strings.xml +++ b/app/src/main/res/values-ky/strings.xml @@ -2026,9 +2026,9 @@ Signal\'ды жаңыртуу - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal\'дын жаңы версиясы чыкты. Жаңыртуу үчүн басыңыз. + Signal жаңырбай калды + Бир аздан соң аракет кылып көрөбүз. Билдирүү жөнөтөсүзбү? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Төлөмдү ырастоо үчүн Signal\'дан чыгасызбы? + Бул төлөм ырасталгандан кийин, салымыңызды аягына чыгаруу үчүн Signal\'га кайтыңыз. @@ -5762,7 +5762,7 @@ Улантуу - Failed to load mandate + Сурам жүктөлбөй калды @@ -5782,13 +5782,13 @@ Колдоо көрсөтүү: %1$s - IBAN is too short + IBAN өтө кыска - IBAN is too long + IBAN өтө узун Өлкөнүн IBAN коду колдоого алынбайт - Invalid IBAN + IBAN туура эмес @@ -5811,7 +5811,7 @@ Эсебиңиздин маалыматын табасыз - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Банкыңыздын көчүрмөсүнүн өйдө жагынан IBAN кодун караңыз. IBAN 34 символдон турган код. Киргизип жаткан атыңыз банк эсебиңизде көрсөтүлгөн толук аты-жөнүңүзгө дал келиши керек. Кененирээк маалымат алгыңыз келсе, банкыңызга чалыңыз. Салымыңыз күтүлүүдө @@ -5827,9 +5827,9 @@ Бүттү - Donation couldn\'t be processed + Салым иштелген жок - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Банкыңызга которуу мүмкүн болбой жатат. Сизден акы алынган жок. Башка төлөм ыкмасын колдонуп көрүңүз же көбүрөөк маалымат алуу үчүн банкыңызга кайрылыңыз. Кайталап көрүңүз @@ -6250,17 +6250,17 @@ Ырастоо - Turn on full screen notifications? + Толук экран билдирмелерин күйгүзөсүзбү? - Never miss a call from your contacts and groups. + Байланыштарыңыздын жана топторуңуздун бир дагы чалуусун өткөрүп жибербейсиз. Күйгүзүү - Turn on full screen notifications + Толук экран билдирмелерин күйгүзүү - To receive call notifications from your contacts and groups: + Байланыштарыңыздан жана топторуңуздан чалуу билдирмелерин алуу үчүн: - 2. %1$s Allow full screen notifications + 2. %1$s Толук экран билдирмелерине уруксат бериңиз diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml index 56b2a89eca..b7ad84628e 100644 --- a/app/src/main/res/values-lv/strings.xml +++ b/app/src/main/res/values-lv/strings.xml @@ -2172,9 +2172,9 @@ Signal atjauninājums - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Ir pieejama jauna Signal versija. Pieskarieties, lai atjauninātu. + Signal atjaunināšana neizdevās + Vēlāk mēģināsim vēlreiz. Sūtīt ziņu? @@ -5981,8 +5981,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Vai pamest Signal, lai apstiprinātu maksājumu? + Kad šis maksājums tiks apstiprināts, atgriezieties lietotnē Signal, lai pabeigtu ziedojuma apstrādi. @@ -6022,7 +6022,7 @@ Turpināt - Failed to load mandate + Komandu neizdevās ielādēt @@ -6042,13 +6042,13 @@ Ziedot %1$s - IBAN is too short + IBAN kods ir pārāk īss - IBAN is too long + IBAN kods ir pārāk garš IBAN valsts kods netiek atbalstīts - Invalid IBAN + Nederīgs IBAN kods @@ -6071,7 +6071,7 @@ Atrodiet sava konta informāciju - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Savu IBAN kodu meklējiet bankas izraksta augšdaļā. IBAN kods satur līdz 34 rakstzīmēm. Ievadītajam vārdam, uzvārdam ir jāatbilst jūsu pilnajam vārdam un uzvārdam, kas redzams jūsu bankas kontā. Lai iegūtu vairāk informācijas, sazinieties ar savu banku. Ziedojums ir ceļā @@ -6087,9 +6087,9 @@ Gatavs - Donation couldn\'t be processed + Ziedojumu nebija iespējams apstrādāt - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Radās problēma ar jūsu bankas pārskaitījuma apstrādi. No jums netika ieturēta maksa. Mēģiniet citu maksājuma veidu vai sazinieties ar savu banku, lai iegūtu vairāk informācijas. Mēģiniet vēlreiz @@ -6522,17 +6522,17 @@ Apstiprināt - Turn on full screen notifications? + Vai ieslēgt pilnekrāna paziņojumus? - Never miss a call from your contacts and groups. + Nepalaidiet garām nevienu zvanu no savām kontaktpersonām un grupām. Ieslēgt - Turn on full screen notifications + Ieslēdziet pilnekrāna paziņojumus - To receive call notifications from your contacts and groups: + Lai saņemtu zvanu paziņojumus no kontaktpersonām un grupām, veiciet tālāk norādītās darbības. - 2. %1$s Allow full screen notifications + 2. %1$s Atļaut pilnekrāna paziņojumus diff --git a/app/src/main/res/values-mk/strings.xml b/app/src/main/res/values-mk/strings.xml index ce6004ee0f..d3475202f1 100644 --- a/app/src/main/res/values-mk/strings.xml +++ b/app/src/main/res/values-mk/strings.xml @@ -2099,9 +2099,9 @@ Signal ажурирање - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Достапна е нова верзија на Signal. Допрете за ажурирање. + Signal не успеа да се ажурира + Ќе се обидеме повторно подоцна. Да се испрати пораката? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Сакате да излезете од Signal апликацијата за да го потврдите плаќањето? + Откако ќе се потврди плаќањето, вратете се во Signal апликацијата за да се заврши обработката на вашата донација. @@ -5892,7 +5892,7 @@ Продолжи - Failed to load mandate + Барањето не е вчитано @@ -5912,13 +5912,13 @@ Донирајте %1$s - IBAN is too short + IBAN бројот е прекраток - IBAN is too long + IBAN бројот е предолг IBAN шифрата на земјата не е поддржана - Invalid IBAN + Неважечки IBAN број @@ -5941,7 +5941,7 @@ Пронајдете податоци за вашата сметка - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Побарајте го вашиот IBAN број на врвот од изводот на состојбата на трансакциската сметка. IBAN броевите содржат до 34 знаци. Името кое го наведувате треба да се совпаѓа со името и презимето на вашата трансакциска сметка. Контактирајте ја вашата банка за повеќе информации. Донацијата е во тек @@ -5957,9 +5957,9 @@ Готово - Donation couldn\'t be processed + Донацијата не можеше да се обработи - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Имаме проблем со обработување на овој трансфер на средства. Не ви е наплатено. Обидете се со друг начин на плаќање или контактирајте со вашата банка за повеќе информации. Обиди се повторно @@ -6386,17 +6386,17 @@ Дозволи - Turn on full screen notifications? + Сакате да се вклучат известувања на цел екран? - Never miss a call from your contacts and groups. + Не пропуштајте повик од вашите контакти и групи. Вклучи - Turn on full screen notifications + Вклучете ги известувањата на цел екран - To receive call notifications from your contacts and groups: + За да добивате известувања за повици од вашите контакти и групи: - 2. %1$s Allow full screen notifications + 2. %1$s Вклучете ги известувањата на цел екран diff --git a/app/src/main/res/values-ml/strings.xml b/app/src/main/res/values-ml/strings.xml index eb9f714cd6..6cdd3c732e 100644 --- a/app/src/main/res/values-ml/strings.xml +++ b/app/src/main/res/values-ml/strings.xml @@ -2099,9 +2099,9 @@ Signal അപ്‌ഡേറ്റ് - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal-ന്റെ ഒരു പുതിയ പതിപ്പ് ലഭ്യമാണ്. അപ്ഡേറ്റ് ചെയ്യാൻ ടാപ്പ് ചെയ്യുക. + Signal അപ്ഡേറ്റ് ചെയ്യാനായില്ല + ഞങ്ങൾ പിന്നീട് വീണ്ടും ശ്രമിക്കും. സന്ദേശം അയക്കണോ? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + പേയ്മെന്റ് സ്ഥിരീകരിക്കാൻ Signal-ൽ നിന്ന് പുറത്ത് കടക്കണോ? + ഈ പേയ്മെന്റ് സ്ഥിരീകരിച്ചുകഴിഞ്ഞാൽ, നിങ്ങളുടെ സംഭാവന പ്രോസസ്സ് ചെയ്യുന്നത് പൂർത്തിയാക്കാൻ Signal-ലേക്ക് മടങ്ങുക. @@ -5892,7 +5892,7 @@ തുടരുക - Failed to load mandate + അഭ്യർത്ഥന ലോഡ് ചെയ്യാനായില്ല @@ -5912,13 +5912,13 @@ %1$s -ന് സംഭാവന നൽകുക - IBAN is too short + IBAN വളരെ ചെറുതാണ് - IBAN is too long + IBAN വളരെ വലുതാണ് IBAN രാജ്യ കോഡ് പിന്തുണയ്ക്കുന്നില്ല - Invalid IBAN + IBAN അസാധുവാണ് @@ -5941,7 +5941,7 @@ നിങ്ങളുടെ അക്കൗണ്ട് വിവരങ്ങൾ കണ്ടെത്തുക - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + നിങ്ങളുടെ ബാങ്ക് സ്റ്റേറ്റ്‍മെന്‍റിന്‍റെ മുകളിലായി നിങ്ങളുടെ IBAN നമ്പർ നോക്കുക. IBAN നമ്പറിൽ 34 ക്യാരക്ടറുകൾ വരെയുണ്ട്. നിങ്ങൾ നൽകുന്ന പേര് നിങ്ങളുടെ ബാങ്ക് അക്കൗണ്ടിലെ പൂർണ്ണമായ പേരുമായി പൊരുത്തപ്പെടണം. കൂടുതൽ വിവരങ്ങൾക്ക് നിങ്ങളുടെ ബാങ്കുമായി ബന്ധപ്പെടുക. സംഭാവന തീർപ്പാക്കപ്പെട്ടിട്ടില്ല @@ -5957,9 +5957,9 @@ പൂർത്തിയായി - Donation couldn\'t be processed + സംഭാവന പ്രോസസ് ചെയ്യാനായില്ല - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + നിങ്ങളുടെ ബാങ്ക് ട്രാൻസ്ഫർ പ്രോസസ്സ് ചെയ്യുന്നതിൽ ഞങ്ങൾ പ്രശ്നം നേരിടുന്നു. നിങ്ങളിൽ നിന്ന് നിരക്ക് ഈടാക്കിയിട്ടില്ല. മറ്റൊരു പേയ്മെന്റ് രീതി പരീക്ഷിക്കുക അല്ലെങ്കിൽ കൂടുതൽ വിവരങ്ങൾക്ക് നിങ്ങളുടെ ബാങ്കുമായി ബന്ധപ്പെടുക. വീണ്ടും ശ്രമിക്കുക @@ -6386,17 +6386,17 @@ അംഗീകരിക്കുക - Turn on full screen notifications? + പൂർണ്ണ സ്ക്രീൻ അറിയിപ്പുകൾ ഓണാക്കണോ? - Never miss a call from your contacts and groups. + നിങ്ങളുടെ കോൺടാക്റ്റുകളിൽ നിന്നും ഗ്രൂപ്പുകളിൽ നിന്നുമുള്ള ഒരു കോൾ പോലും കാണാതെ പോകരുത്. ഓൺ ചെയ്യുക - Turn on full screen notifications + പൂർണ്ണ സ്ക്രീൻ അറിയിപ്പുകൾ ഓണാക്കുക - To receive call notifications from your contacts and groups: + നിങ്ങളുടെ കോൺടാക്റ്റുകളിൽ നിന്നും ഗ്രൂപ്പുകളിൽ നിന്നും കോൾ അറിയിപ്പുകൾ ലഭിക്കുന്നതിന്: - 2. %1$s Allow full screen notifications + 2. %1$s പൂർണ്ണ സ്ക്രീൻ അറിയിപ്പുകൾ അനുവദിക്കുക diff --git a/app/src/main/res/values-mr/strings.xml b/app/src/main/res/values-mr/strings.xml index 3da3fa440e..fbccb7eeb0 100644 --- a/app/src/main/res/values-mr/strings.xml +++ b/app/src/main/res/values-mr/strings.xml @@ -2099,9 +2099,9 @@ Signal अद्यतन - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal ची नवीन आवृत्ती उपलब्ध आहे. अपडेट करण्यास टॅप करा. + Signal अपडेट होण्यात अयशस्वी झाला + आपण नंतर पुन्हा प्रयत्न करू. संदेश पाठवायचा? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + पेमेंटची पुष्टी करण्यासाठी Signal सोडायचे? + एकदा का या पेमेंटची पुष्टी झाली, आपली देणगीची प्रक्रिया समाप्त करण्यासाठी Signal वर परत या. @@ -5892,7 +5892,7 @@ सुरू ठेवा - Failed to load mandate + विनंती लोड करण्यात अपयशी झालो @@ -5912,13 +5912,13 @@ %1$s देणगी द्या - IBAN is too short + IBAN अतिशय लहान आहे - IBAN is too long + IBAN फार मोठा आहे IBAN देश कोड समर्थित नाही - Invalid IBAN + अवैध IBAN @@ -5941,7 +5941,7 @@ आपली अकाऊंट माहिती शोधा - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + आपल्या बँक स्टेटमेंटच्या शीर्षावर आपल्या IBAN चा शोध घ्या. IBAN मध्ये 34 पर्यंत वर्णांचा समावेश असतो. आपण प्रविष्ट करत असलेले नाव आपल्या बँक अकाऊंटवरील पूर्ण नावाशी जुळणे आवश्यक आहे. अधिक माहितीसाठी आपल्या बँकेशी संपर्क साधा. देणगी प्रलंबित @@ -5957,9 +5957,9 @@ झाले - Donation couldn\'t be processed + देणगी वर प्रक्रिया केली जाऊ शकत नाही - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + आम्हाला आपल्या बँक हस्तांतरणावर प्रक्रिया करण्यामध्ये समस्या येत आहे. आपणाला आकारणी करण्यात आली नाही. दुसरी पेमेंट पद्धत वापरून पहा किंवा अधिक माहितीसाठी आपल्या बँकेशी संपर्क साधा. पुन्हा प्रयत्न करा @@ -6386,17 +6386,17 @@ स्वीकार करा - Turn on full screen notifications? + पूर्ण स्क्रिन अधिसूचना सुरू करावयाची? - Never miss a call from your contacts and groups. + आपल्या संपर्कामधून आणि गटांमधून कॉल कधीही चुकवू नका. चालू करा - Turn on full screen notifications + पूर्ण स्क्रिन अधिसूचना सुरू करा - To receive call notifications from your contacts and groups: + आपल्या संपर्कामधून आणि गटामधून कॉल अधिसूचना प्राप्त करण्यासाठी: - 2. %1$s Allow full screen notifications + 2. %1$s पूर्ण स्क्रिन अधिसूचनांना अनुमती द्या diff --git a/app/src/main/res/values-ms/strings.xml b/app/src/main/res/values-ms/strings.xml index b696c3ea34..aac8f37cde 100644 --- a/app/src/main/res/values-ms/strings.xml +++ b/app/src/main/res/values-ms/strings.xml @@ -2026,9 +2026,9 @@ Kemas kini Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Versi baharu Signal tersedia. Ketik untuk mengemas kini. + Signal gagal dikemas kini + Kita akan cuba lagi nanti. Hantar mesej? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Keluar Signal untuk mengesahkan pembayaran? + Setelah pembayaran ini disahkan, kembali ke Signal untuk menyelesaikan pemprosesan derma anda. @@ -5762,7 +5762,7 @@ Teruskan - Failed to load mandate + Gagal memuatkan mandat @@ -5782,13 +5782,13 @@ Derma %1$s - IBAN is too short + IBAN terlalu pendek - IBAN is too long + IBAN terlalu panjang Kod negara IBAN tidak disokong - Invalid IBAN + IBAN tidak sah @@ -5811,7 +5811,7 @@ Cari maklumat akaun anda - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Cari IBAN anda di bahagian atas penyata bank anda. IBAN mengandungi sehingga 34 aksara. Nama yang anda masukkan mestilah sepadan dengan nama penuh anda pada akaun bank anda. Hubungi bank anda untuk maklumat lanjut. Derma belum selesai @@ -5827,9 +5827,9 @@ Selesai - Donation couldn\'t be processed + Derma tidak dapat diproses - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Kami menghadapi masalah memproses pindahan bank anda. Anda belum dicaj. Cuba kaedah pembayaran lain atau hubungi bank anda untuk maklumat lanjut. Cuba lagi @@ -6250,17 +6250,17 @@ Luluskan - Turn on full screen notifications? + Hidupkan pemberitahuan skrin penuh? - Never miss a call from your contacts and groups. + Jangan sesekali terlepas panggilan daripada kenalan dan kumpulan anda. Hidupkan - Turn on full screen notifications + Hidupkan pemberitahuan skrin penuh - To receive call notifications from your contacts and groups: + Untuk menerima pemberitahuan panggilan daripada kenalan dan kumpulan anda: - 2. %1$s Allow full screen notifications + 2. %1$s Benarkan pemberitahuan skrin penuh diff --git a/app/src/main/res/values-my/strings.xml b/app/src/main/res/values-my/strings.xml index 7e87ffdbb4..d242636032 100644 --- a/app/src/main/res/values-my/strings.xml +++ b/app/src/main/res/values-my/strings.xml @@ -2026,9 +2026,9 @@ Signal ဗားရှင်းအသစ် - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal ဗားရှင်းအသစ် ရနိုင်ပါပြီ။ အပ်ဒိတ်လုပ်ရန် နှိပ်ပါ။ + Signal ကို အပ်ဒိတ်လုပ်ခြင်း မအောင်မြင်ပါ + နောက်မှ ထပ်ကြိုးစားပါမည်။ စာပို့မလား? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + ငွေပေးချေမှုကို အတည်ပြုရန် Signal မှ ထွက်ပါမည်လား။ + ဤငွေပေးချေမှုကို အတည်ပြုပြီးသောအခါ သင်၏လှူဒါန်းမှုကို အပြီးသတ်ဆောင်ရွက်ရန် Signal သို့ ပြန်သွားပါ။ @@ -5762,7 +5762,7 @@ ဆက်လုပ်ရန် - Failed to load mandate + ညွှန်ကြားမှုကို ဖွင့်၍မရပါ @@ -5782,13 +5782,13 @@ %1$s လှူရန် - IBAN is too short + IBAN တိုလွန်းပါသည် - IBAN is too long + IBAN ရှည်လွန်းပါသည် IBAN နိုင်ငံကုဒ်ကို ပံ့ပိုးပေးခြင်းမရှိပါ - Invalid IBAN + IBAN မမှန်ကန်ပါ @@ -5811,7 +5811,7 @@ သင့်အကောင့်အချက်အလက်ကို ရှာဖွေခြင်း - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + သင်၏ ဘဏ်စာရင်းရှင်းတမ်း ထိပ်ဆုံးတွင် သင့် IBAN ကို ရှာဖွေပါ။ IBAN များတွင် စာလုံး 34 လုံးအထိ ပါဝင်ပါသည်။ သင် ရိုက်ထည့်လိုက်သော အမည်သည် သင့်ဘဏ်အကောင့်ရှိ အမည်အပြည့်အစုံနှင့် ကိုက်ညီသင့်ပါသည်။ နောက်ထပ်အချက်အလက်များအတွက် သင်၏ဘဏ်သို့ ဆက်သွယ်ပါ။ လှူဒါန်းမှု လုပ်ဆောင်နေဆဲ @@ -5827,9 +5827,9 @@ ပြီးပါပြီ - Donation couldn\'t be processed + လှူဒါန်းမှုကို စီမံဆောင်ရွက်၍မရနိုင်ပါ - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + သင်၏ ဘဏ်ငွေလွှဲပြောင်းမှုကို စီမံဆောင်ရွက်ရာတွင် ပြဿနာရှိနေပါသည်။ သင့်ထံမှ ငွေကောက်ခံခြင်း မရှိခဲ့ပါ။ အခြားသော ငွေပေးချေနည်းကို သုံးကြည့်ပါ သို့မဟုတ် နောက်ထပ်အချက်အလက်များအတွက် သင့်ဘဏ်ကို ဆက်သွယ်ပါ။ ထပ်မံကြိုးစားမည် @@ -6250,17 +6250,17 @@ ခွင့်ပြုမယ် - Turn on full screen notifications? + မျက်နှာပြင်အပြည့် အသိပေးချက်များကို ဖွင့်မည်လား။ - Never miss a call from your contacts and groups. + သင်၏ အဆက်အသွယ်များနှင့် အဖွဲ့များထံမှ ကောလ်ကို လုံးဝမလွတ်ပါစေနှင့်။ ဖွင့်မည် - Turn on full screen notifications + မျက်နှာပြင်အပြည့် အသိပေးချက်များကို ဖွင့်ခြင်း - To receive call notifications from your contacts and groups: + သင့်အဆက်အသွယ်များနှင့် အဖွဲ့များထံမှ ကောလ်အသိပေးချက်များကို လက်ခံရရှိရန်- - 2. %1$s Allow full screen notifications + 2. %1$s မျက်နှာပြင်အပြည့် အသိပေးချက်များကို ခွင့်ပြုပါ diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml index d6c276c0e6..3bfb79f295 100644 --- a/app/src/main/res/values-nb/strings.xml +++ b/app/src/main/res/values-nb/strings.xml @@ -2099,9 +2099,9 @@ Signal oppdatering - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + En ny versjon av Signal er tilgjengelig. Trykk for å oppdatere appen. + Signal kunne ikke oppdateres + Vi gir det et nytt forsøk senere. Send melding? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Vil du forlate Signal for å bekrefte betalingen? + Når betalingen er bekreftet, kan du gå tilbake til Signal for å fullføre behandlingen av pengegaven. @@ -5892,7 +5892,7 @@ Fortsett - Failed to load mandate + Kunne ikke laste inn forespørselen @@ -5912,13 +5912,13 @@ Gi %1$s - IBAN is too short + IBAN-nummeret er for kort - IBAN is too long + IBAN-nummeret er for langt Landskoden støttes ikke - Invalid IBAN + Ugyldig IBAN-nummer @@ -5941,7 +5941,7 @@ Finn bankopplysningene dine - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Du finner IBAN-nummeret øverst på kontoutskriften din. IBAN-nummeret består av opptil 34 tegn. Skriv inn hele navnet som kontoen din er registrert på. Ta kontakt med banken for å få mer informasjon. Pengegaven venter @@ -5957,9 +5957,9 @@ Ferdig - Donation couldn\'t be processed + Pengegaven kunne ikke behandles - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Vi kunne ikke behandle bankoverføringen. Ingenting har blitt trukket fra kontoen. Prøv en annen betalingsmåte, eller ta kontakt med banken din for å få mer informasjon. Prøv igjen @@ -6386,17 +6386,17 @@ Godkjenn - Turn on full screen notifications? + Vil du slå på varsler i fullskjerm? - Never miss a call from your contacts and groups. + Gå aldri glipp av anrop fra kontaktene og gruppene dine. Slå på varsler - Turn on full screen notifications + Slå på varsler i fullskjerm - To receive call notifications from your contacts and groups: + Slik aktiverer du anropsvarsler for kontakter og grupper: - 2. %1$s Allow full screen notifications + 2. %1$s Slå på varsler i fullskjerm diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 76d8c5a1e2..655bdc7202 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -436,7 +436,7 @@ Onversleuteld opslaan? - Als je dit bestand opslaat op de telefoonopslag worden ze onversleuteld opgeslagen waardoor alle apps op je apparaat toegang krijgen tot deze bestanden.\n\nToch doorgaan? + Als je dit bestand opslaat op de telefoonopslag wordt het onversleuteld opgeslagen waardoor alle apps op je apparaat toegang krijgen tot dit bestand.\n\nToch doorgaan? Als je deze %1$d bestanden opslaat op de telefoonopslag worden ze onversleuteld opgeslagen waardoor alle apps op je apparaat toegang krijgen tot deze bestanden.\n\nToch doorgaan? @@ -600,7 +600,7 @@ Iedereen die jouw telefoonnummer in zijn contacten heeft staan, zal je kunnen zien als een contact op Signal. Anderen kunnen je vinden via jouw telefoonnummer als ze daarop zoeken. - Niemand op Signal kan je vinden met jou telefoonnummer. + Niemand op Signal kan je vinden met jouw telefoonnummer. Back-upgegevens terugzetten? @@ -680,9 +680,9 @@ Berichtplanning opnieuw aanzetten: - Selecteer datum + Kies datum - Selecteer tijd + Kies tijd Plan bericht @@ -744,7 +744,7 @@ Pertinente Signal-communicatiefout! - Signal was niet in staat zich bij de Google Play services op je telefoon te registreren. Signal-berichten en -oproepen zijn nu uitgeschakeld, probeer opnieuw te registreren via Instellingen > Privacy > Geavanceerd. + Signal was niet in staat zich bij Google Play services op je telefoon te registreren. Signal-berichten en -oproepen zijn nu uitgeschakeld, probeer opnieuw te registreren via Instellingen > Privacy > Geavanceerd. @@ -1876,11 +1876,11 @@ Er wordt een verificatiecode naar dit nummer gestuurd. Providertarieven kunnen van toepassing zijn. Je zal gebeld worden om dit telefoonnummer te verifiëren. Telefoonnummer bewerken - De Google Play Services zijn niet aanwezig + Google Play Services is niet aanwezig Dit apparaat bevat geen Google Play Services. Je kunt Signal nog steeds gebruiken, maar deze configuratie kan de betrouwbaarheid en prestaties verslechteren.\n\nAls je geen gevorderde gebruiker bent, geen aangepaste ROM gebruikt of denkt dat dit bericht onterecht wordt weergegeven, neem dan contact op met support@signal.org voor hulp met probleemoplossen. Ik begrijp het Google Play Services-fout - De Google Play Services wordt momenteel bijgewerkt of is tijdelijk niet beschikbaar. Probeer het nog eens. + Google Play Services wordt momenteel bijgewerkt of is tijdelijk niet beschikbaar. Probeer het nog eens. Gebruiksvoorwaarden & privacybeleid Signal zal een aantal toestemmingen vragen: 1. Je contactenlijst lezen om personen weer te geven naar wie je berichten kunt verzenden. Je contactenlijst blijft altijd onleesbaar voor Signals servers. 2. Bestanden lezen van en schrijven naar de externe opslag, om bestanden bij te voegen als bijlagen en om ontvangen bijlagen op te kunnen slaan. 3. De telefoonstatus lezen om te voorkomen dat Signal-oproepen je andere oproepen verstoren. Signal moet je contactenlijst lezen om personen weer te geven naar wie je berichten kunt sturen en met wie je oproepen kunt beginnen. Je contactenlijst blijft altijd onleesbaar voor Signals servers. @@ -2028,7 +2028,7 @@ Succesvol geüpload! Kopieer deze URL en voeg die toe aan je foutrapport of aan een e-mail naar ondersteuning:\n\n%1$s Delen via andere app - Dit log bevat geen persoonlijke details zoals telefoonnummers. Als je op uploaden klikt dan wordt dit log 30 dagen lang online beschikbaar gesteld op een unieke nergens onthulde URL. Die URL kun je zelf naar de ontwikkelaars sturen. + Dit log bevat geen persoonlijke details zoals telefoonnummers. Als je op uploaden tikt dan wordt dit log 30 dagen lang online beschikbaar gesteld op een unieke nergens onthulde URL. Die URL kun je zelf naar de ontwikkelaars sturen. @@ -2099,9 +2099,9 @@ Nieuwe versie van Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Een nieuwe versie van Signal is beschikbaar. Tik om bij te werken. + Signal kan niet worden bijgewerkt + We proberen het later opnieuw. Bericht verzenden? @@ -2426,8 +2426,8 @@ Het aanbevolen ledenlimiet is bereikt Signal-groepen presteren het best met %1$d of minder leden. Het toevoegen van extra leden zal vertragingen veroorzaken in het verzenden en ontvangen van berichten. - %1$d persoon - %1$d personen + %1$d lid + %1$d leden @@ -2436,8 +2436,8 @@ - %1$d persoon - %1$d personen + %1$d lid + %1$d leden @@ -2679,7 +2679,7 @@ Over mij - Schijf een paar woorden over jezelf… + Schrijf een paar woorden over jezelf… %1$d/%2$d Voel je vrij om een berichtje te sturen Versleuteld @@ -2756,7 +2756,7 @@ Verzenden mislukt Nieuw veiligheidsnummer - Bekijk bewerkingsgeschiedenis + Bewerkingsgeschiedenis bekijken Wachtwoord aanmaken @@ -3238,7 +3238,7 @@ Ga na dat het portemonnee-adres waarnaar je probeert over te schrijven juist is en probeer het opnieuw. Je kunt niet vanuit Signal overschrijven naar je eigen Signal portemonnee-adres. Vul het portemonnee-adres van je account bij de beurs in. Signal heeft toegang nodig tot de camera om een QR-code the kunnen scannen. - Signal heeft toegang nodig tot je camera om QR-codes te scannen, maar deze toestemming is pertinent geweigerd. Ga naar het menu voor instellingen voor apps, tik op \"App-machtigingen\" en schakel \"Camera\" in. + Signal heeft toegang nodig tot je camera om QR-codes te scannen, maar deze toestemming is pertinent geweigerd. Ga naar het menu voor instellingen voor apps, tik op \'App-machtigingen\' en schakel \'Camera\' in. Signal heeft toegang nodig tot de camera om een QR-code the kunnen scannen. Instellingen @@ -3991,7 +3991,7 @@ Verzend , %1$s - Kon geen gedeelde data met opzet ontvangen. + Kon data uit Android-intent niet ophalen. Het verzenden is naar sommige personen mislukt @@ -4811,7 +4811,7 @@ Je maandelijkse donaties zijn stopgezet omdat Signal je betaling niet kon verwerken. Je badge is niet langer op je profiel zichtbaar. - Je terugkerende maandelijkse donatie werd geannuleerd. %1$s Je %2$s badge is niet langer zichtbaar op je profiel. + Je terugkerende maandelijkse donatie is geannuleerd. %1$s Je %2$s badge is niet langer zichtbaar op je profiel. Je kunt Signal gewoon blijven gebruiken, maar als je Signal wilt ondersteunen en je badge weer wilt weergeven dan moet je je donaties vernieuwen. Maandelijkse donaties vernieuwen @@ -4848,7 +4848,7 @@ Je betaling wordt nog verwerkt. Dit kan een paar minuten duren afhankelijk van je internetverbinding. Het annuleren van je maandelijkse donaties is mislukt Om je maandelijkse donaties te annuleren moet je toegang hebben tot internet. - Je apparaat biedt geen ondersteuning voor Google Play, daarom kun je via de app geen maandelijkse donaties maken en kun je geen badge verdienen. Je kunt nog wel doneren via Signals website. + Je apparaat biedt geen ondersteuning voor Google Pay, daarom kun je via de app geen maandelijkse donaties maken en kun je geen badge verdienen. Je kunt nog wel doneren via Signals website. Netwerkfout. Ga na dat je apparaat met het internet is verbonden en probeer het opnieuw. Opnieuw proberen @@ -4977,7 +4977,7 @@ Meldingsprofielen - Nieuw meldingsprofiel aanmaken + Nieuw meldingsprofiel Ingeschakeld @@ -5061,7 +5061,7 @@ Je meldingsprofiel wordt automatisch geactiveerd en gedeactiveerd volgens je tijdsplanning. - Nieuw meldingsprofiel aanmaken + Nieuw meldingsprofiel Een uur lang @@ -5155,7 +5155,7 @@ Verhaal verbergen? - Nieuwe verhaalupdates van %1$s zullen niet langer bovenaan je lijst met verhalen worden weergegeven. + Nieuwe verhaaldelen van %1$s zullen niet langer bovenaan je lijst met verhalen worden weergegeven. Verbergen @@ -5226,7 +5226,7 @@ Reageerde op dit verhaal - Aantal weergaven + Gezien door Reacties @@ -5256,7 +5256,7 @@ Iedereen behalve… - Verberg je verhaal voor specifieke mensen + Verberg je verhaal voor specifieke personen Voor %1$d persoon verborgen @@ -5505,8 +5505,8 @@ - %1$d persoon - %1$d personen + %1$d lid + %1$d leden @@ -5581,7 +5581,7 @@ Alle contacten zijn beoordeeld, tik op versturen om verder te gaan. - Je hebt %1$d contacten die Signal misschien opnieuw geïnstalleerd hebben of van toestel veranderd zijn. Bekijk voordat je je verhaal met hen deelt hun veiligheidsnummers of overweeg om ze uit je verhaal te verwijderen. + Je hebt %1$d contacten die Signal misschien opnieuw geïnstalleerd hebben of van toestel zijn veranderd. Bekijk voordat je je verhaal met hen deelt hun veiligheidsnummers of overweeg om je verhaal niet met hen te delen. Veiligheidsnummer verifiëren @@ -5632,7 +5632,7 @@ - Verhalen verdwijnen automatisch na 24 uur. Kies wie jouw verhalen kan zien of maak nieuwe verhalen voor specifieke personen of groepen. + Verhaaldelen verdwijnen automatisch na 24 uur. Kies wie jouw verhalen kan zien of maak nieuwe verhalen voor specifieke personen of groepen. Verhalen uitzetten @@ -5664,7 +5664,7 @@ "Leden van de groep “%1$s” kunnen dit verhaal bekijken en erop antwoorden. Je kunt het lidmaatschap voor deze chat updaten in de groep." - Verwijder groepsverhaal + Groepsverhaal verwijderen Overflow menu @@ -5673,7 +5673,7 @@ Sms\'jes exporteren… - Signal sms-export compleet + Exporteren sms voltooid Tik om terug te keren naar Signal @@ -5764,7 +5764,7 @@ Kan geen back-up maken van chats - Van je chats wordt niet langer automatisch een back-up gemaakt. + Er wordt niet langer automatisch een back-up van je chats gemaakt. Maak back-up van chats @@ -5788,7 +5788,7 @@ - Export compleet + Exporteren voltooid Volgende @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Signal verlaten om de betaling te bevestigen? + Ga zodra deze betaling is bevestigd terug naar Signal om de verwerking van je donatie te voltooien. @@ -5892,7 +5892,7 @@ Doorgaan - Failed to load mandate + Kan verzoek niet laden @@ -5912,13 +5912,13 @@ %1$s doneren - IBAN is too short + IBAN-nummer is te kort - IBAN is too long + IBAN-nummer is te lang IBAN-landcode wordt niet ondersteund - Invalid IBAN + Ongeldig IBAN-nummer @@ -5941,7 +5941,7 @@ Vind je rekeninginformatie - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Je IBAN-nummer vind je bovenaan je bankafschrift. IBAN-nummers bevatten maximaal 34 tekens. De naam die je invoert, moet overeenkomen met de volledige naam op je bankrekening. Neem contact op met je bank voor meer informatie. Donatie is in behandeling @@ -5957,9 +5957,9 @@ Klaar - Donation couldn\'t be processed + Donatie kan niet worden verwerkt - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Er zijn problemen met het verwerken van je bankoverschrijving. Er is geen geld afgeschreven. Probeer het via een andere betalingsmethode of neem contact op met je bank voor meer informatie. Opnieuw proberen @@ -6015,7 +6015,7 @@ Nieuw: groepsverhalen - Deel verhaalupdates in een groepschat waar je al in zit. + Deel verhaaldelen in een groepschat waar je al in zit. Iedereen in de groepschat kan een verhaal toevoegen. @@ -6047,7 +6047,7 @@ Signal heeft de ondersteuning voor het versturen van sms-berichten verwijderd. - Exporteer sms + Sms exporteren @@ -6386,17 +6386,17 @@ Toestaan - Turn on full screen notifications? + Meldingen op volledig scherm inschakelen? - Never miss a call from your contacts and groups. + Mis nooit een oproep van je contacten en groepen. Inschakelen - Turn on full screen notifications + Meldingen op volledig scherm inschakelen - To receive call notifications from your contacts and groups: + Om oproepmeldingen te ontvangen van je contacten en groepen: - 2. %1$s Allow full screen notifications + 2. %1$s Sta meldingen op volledig scherm toe diff --git a/app/src/main/res/values-pa/strings.xml b/app/src/main/res/values-pa/strings.xml index 0c3ef45cab..685b71ce9a 100644 --- a/app/src/main/res/values-pa/strings.xml +++ b/app/src/main/res/values-pa/strings.xml @@ -2099,9 +2099,9 @@ Signal ਅੱਪਡੇਟ - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal ਦਾ ਨਵਾਂ ਵਰਜ਼ਨ ਉਪਲਬਧ ਹੈ। ਅੱਪਡੇਟ ਕਰਨ ਲਈ ਟੈਪ ਕਰੋ। + Signal ਨੂੰ ਅੱਪਡੇਟ ਕਰਨਾ ਅਸਫਲ ਰਿਹਾ + ਅਸੀਂ ਬਾਅਦ ਵਿੱਚ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰਾਂਗੇ। ਸੁਨੇਹਾ ਭੇਜਣਾ ਹੈ? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + ਕੀ ਭੁਗਤਾਨ ਦੀ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ Signal ਤੋਂ ਬਾਹਰ ਜਾਣਾ ਚਾਹੁੰਦੇ ਹੋ? + ਇੱਕ ਵਾਰ ਜਦੋਂ ਇਸ ਭੁਗਤਾਨ ਦੀ ਪੁਸ਼ਟੀ ਹੋ ਜਾਂਦੀ ਹੈ, ਤਾਂ ਆਪਣੇ ਦਾਨ ਉੱਤੇ ਕਾਰਵਾਈ ਪੂਰੀ ਕਰਨ ਲਈ Signal \'ਤੇ ਵਾਪਸ ਆਓ। @@ -5892,7 +5892,7 @@ ਜਾਰੀ ਰੱਖੋ - Failed to load mandate + ਮੈਨਡੇਟ ਲੋਡ ਕਰਨਾ ਅਸਫਲ ਰਿਹਾ @@ -5912,13 +5912,13 @@ %1$s ਦਾਨ ਦਿਓ - IBAN is too short + IBAN ਨੰਬਰ ਬਹੁਤ ਛੋਟਾ ਹੈ - IBAN is too long + IBAN ਨੰਬਰ ਬਹੁਤ ਲੰਮਾ ਹੈ IBAN ਦੇਸ਼ ਕੋਡ ਸਮਰਥਿਤ ਨਹੀਂ ਹੈ - Invalid IBAN + ਅਵੈਧ IBAN @@ -5941,7 +5941,7 @@ ਆਪਣੀ ਖਾਤੇ ਦੀ ਜਾਣਕਾਰੀ ਲੱਭੋ - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + ਆਪਣੇ ਬੈਂਕ ਸਟੇਟਮੈਂਟ ਦੇ ਸਿਖਰ \'ਤੇ ਆਪਣਾ IBAN ਦੇਖੋ। IBAN ਵਿੱਚ ਅਧਿਕਤਮ 34 ਅੱਖਰ ਹੁੰਦੇ ਹਨ। ਤੁਹਾਡੇ ਦੁਆਰਾ ਦਰਜ ਕੀਤਾ ਗਿਆ ਨਾਮ ਤੁਹਾਡੇ ਬੈਂਕ ਖਾਤੇ ਵਿੱਚ ਮੌਜੂਦ ਤੁਹਾਡੇ ਪੂਰੇ ਨਾਮ ਨਾਲ ਮੇਲ ਖਾਣਾ ਚਾਹੀਦਾ ਹੈ। ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਆਪਣੇ ਬੈਂਕ ਨਾਲ ਸੰਪਰਕ ਕਰੋ। ਦਾਨ ਦੇਣਾ ਬਾਕੀ ਹੈ @@ -5957,9 +5957,9 @@ ਮੁਕੰਮਲ - Donation couldn\'t be processed + ਦਾਨ ਉੱਤੇ ਕਾਰਵਾਈ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + ਸਾਨੂੰ ਤੁਹਾਡੇ ਬੈਂਕ ਟ੍ਰਾਂਸਫਰ ਉੱਤੇ ਕਰਵਾਈ ਕਰਨ ਵਿੱਚ ਸਮੱਸਿਆ ਪੇਸ਼ ਆ ਰਹੀ ਹੈ। ਤੁਹਾਡੇ ਤੋਂ ਕੋਈ ਖਰਚਾ ਨਹੀਂ ਲਿਆ ਗਿਆ ਹੈ। ਕਿਸੇ ਹੋਰ ਭੁਗਤਾਨ ਵਿਧੀ ਦੀ ਵਰਤੋਂ ਕਰੋ ਜਾਂ ਹੋਰ ਜਾਣਕਾਰੀ ਲੈਣ ਲਈ ਆਪਣੇ ਬੈਂਕ ਨਾਲ ਸੰਪਰਕ ਕਰੋ। ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ @@ -6386,17 +6386,17 @@ ਮਨਜ਼ੂਰ ਕਰੋ - Turn on full screen notifications? + ਕੀ ਪੂਰੀ ਸਕ੍ਰੀਨ ਉੱਤੇ ਦਿਖਣ ਵਾਲੀਆਂ ਸੂਚਨਾਵਾਂ ਨੂੰ ਚਾਲੂ ਕਰਨਾ ਹੈ? - Never miss a call from your contacts and groups. + ਕਦੇ ਵੀ ਆਪਣੇ ਸੰਪਰਕਾਂ ਅਤੇ ਗਰੁੱਪਾਂ ਦੀ ਕਾਲ ਨੂੰ ਮਿਸ ਨਾ ਹੋਣ ਦਿਓ। ਚਾਲੂ ਕਰੋ - Turn on full screen notifications + ਪੂਰੀ ਸਕ੍ਰੀਨ ਉੱਤੇ ਦਿਖਣ ਵਾਲੀਆਂ ਸੂਚਨਾਵਾਂ ਨੂੰ ਚਾਲੂ ਕਰੋ - To receive call notifications from your contacts and groups: + ਆਪਣੇ ਸੰਪਰਕਾਂ ਅਤੇ ਗਰੁੱਪਾਂ ਦੀਆਂ ਕਾਲਾਂ ਦੀਆਂ ਸੂਚਨਾਵਾਂ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ: - 2. %1$s Allow full screen notifications + 2. %1$s ਪੂਰੀ ਸਕ੍ਰੀਨ ਉੱਤੇ ਦਿਖਣ ਵਾਲੀਆਂ ਸੂਚਨਾਵਾਂ ਨੂੰ ਚਾਲੂ ਕਰੋ diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 24ce430b85..8ac14dae29 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -2099,9 +2099,9 @@ Atualização do Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Uma nova versão do Signal está disponível. Toque para atualizar. + Falha ao atualizar o Signal + Tentaremos novamente mais tarde. Enviar mensagem? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Sair do Signal para confirmar pagamento? + Assim que o pagamento for confirmado, volte ao Signal para finalizar o processamento da sua doação. @@ -5892,7 +5892,7 @@ Continuar - Failed to load mandate + Falha ao carregar o mandato @@ -5912,13 +5912,13 @@ Doar %1$s - IBAN is too short + O IBAN é muito curto - IBAN is too long + O IBAN é muito longo O código do país do IBAN não é aceito - Invalid IBAN + IBAN inválido @@ -5941,7 +5941,7 @@ Encontre as informações da sua conta - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Procure o seu IBAN na parte superior do seu extrato bancário. Os números de IBAN contêm até 34 caracteres. O nome inserido deve corresponder ao nome completo da sua conta bancária. Entre em contato com seu banco para obter mais informações. Doação pendente @@ -5957,9 +5957,9 @@ Pronto - Donation couldn\'t be processed + Não foi possível processar a doação - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Estamos com problemas para processar sua transferência bancária. Não foi realizada nenhuma cobrança. Tente outra forma de pagamento ou entre em contato com seu banco para obter informações sobre o erro. Tentar de novo @@ -6386,17 +6386,17 @@ Aprovar - Turn on full screen notifications? + Ativar notificações em tela cheia? - Never miss a call from your contacts and groups. + Nunca perca mensagens de seus contatos e grupos. Ativar - Turn on full screen notifications + Ativar notificações em tela cheia - To receive call notifications from your contacts and groups: + Para receber notificações de chamadas de seus contatos e grupos: - 2. %1$s Allow full screen notifications + 2. %1$s Permitir notificações em tela cheia diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 637c9afce8..bc98128b08 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -2172,9 +2172,9 @@ Actualizare Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + O nouă versiune de Signal este disponibilă. Apasă pentru actualizare. + Signal nu a putut fi actualizat + Vom încerca din nou mai târziu. Trimit mesajul? @@ -5981,8 +5981,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Ieși din Signal ca să confirmi plata? + Odată ce această plată este confirmată, revino la Signal pentru a finaliza procesarea donației. @@ -6022,7 +6022,7 @@ Continuă - Failed to load mandate + Nu s-a putut încărca solicitarea @@ -6042,13 +6042,13 @@ Donează %1$s - IBAN is too short + IBAN-ul este prea scurt - IBAN is too long + IBAN-ul este prea lung Codul țării IBAN nu este acceptat - Invalid IBAN + IBAN nevalid @@ -6071,7 +6071,7 @@ Găsește informațiile despre contul tău - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Caută IBAN-ul contului tău în partea de sus a extrasului bancar. Codul IBAN conține până la 34 de caractere. Numele pe care îl introduci trebuie să corespundă cu numele tău complet aferent contului tău bancar. Contactează banca pentru mai multe informații. Donație în așteptare @@ -6087,9 +6087,9 @@ Gata - Donation couldn\'t be processed + Donația nu a putut fi procesată - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Întâmpinăm probleme la procesarea transferului tău bancar. Nu ai fost taxat/ă. Încearcă o altă metodă de plată sau ia legătura cu banca ta pentru mai multe informații. Încearcă din nou @@ -6522,17 +6522,17 @@ Aprobă - Turn on full screen notifications? + Activezi notificările pe ecran complet? - Never miss a call from your contacts and groups. + Nu rata niciodată un apel de la contactele și grupurile tale. Activare - Turn on full screen notifications + Activează notificările pe ecran complet - To receive call notifications from your contacts and groups: + Pentru a primi notificări de apel de la persoanele de contact și grupurile tale: - 2. %1$s Allow full screen notifications + 2. %1$s Permite notificări pe ecran complet diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 145a6a614e..fc1bc40e3a 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -2245,9 +2245,9 @@ Обновление Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Доступна новая версия Signal. Нажмите, чтобы обновить. + Не удалось обновить Signal + Мы попробуем ещё раз позже. Отправить сообщение? @@ -6111,8 +6111,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Покинуть Signal для подтверждения оплаты? + После подтверждения платежа вернитесь в Signal для завершения обработки вашего пожертвования. @@ -6152,7 +6152,7 @@ Продолжить - Failed to load mandate + Не удалось загрузить мандат @@ -6172,13 +6172,13 @@ Пожертвовать %1$s - IBAN is too short + IBAN слишком короткий - IBAN is too long + IBAN слишком длинный Код страны IBAN не поддерживается - Invalid IBAN + Неверный IBAN @@ -6201,7 +6201,7 @@ Найти информацию о вашем счёте - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Найдите номер IBAN в верхней части банковской выписки. Номера IBAN содержат до 34 символов. Введённое вами имя должно совпадать с полным именем, указанным в вашем банковском счёте. Свяжитесь со своим банком для получения дополнительной информации. Пожертвование на рассмотрении @@ -6217,9 +6217,9 @@ Готово - Donation couldn\'t be processed + Не удалось обработать пожертвование - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + У нас возникли проблемы с обработкой вашего банковского перевода. Средства не были списаны. Попробуйте другой способ оплаты или свяжитесь со своим банком для получения дополнительной информации. Попробовать ещё раз @@ -6658,17 +6658,17 @@ Принять - Turn on full screen notifications? + Включить уведомления во весь экран? - Never miss a call from your contacts and groups. + Чтобы не пропускать звонки от ваших контактов и групп. Включить - Turn on full screen notifications + Включите уведомления во весь экран - To receive call notifications from your contacts and groups: + Для получения уведомлений о звонках от ваших контактов и групп: - 2. %1$s Allow full screen notifications + 2. %1$s Включите уведомления во весь экран diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index 54747678a7..4da67b49f0 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -2245,9 +2245,9 @@ Aktualizácia Signalu - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + K dispozícii je nová verzia Signalu. Ťuknutím aktualizujte. + Signal sa nepodarilo aktualizovať + Skúsime to znova neskôr. Odoslať správu? @@ -6111,8 +6111,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Opustiť Signal za účelom potvrdenia platby? + Po potvrdení platby sa vráťte do aplikácie a dokončite spracovanie svojho príspevku. @@ -6152,7 +6152,7 @@ Pokračovať - Failed to load mandate + Nepodarilo sa načítať príkaz @@ -6172,13 +6172,13 @@ Prispieť %1$s - IBAN is too short + Číslo IBAN je príliš krátke - IBAN is too long + Číslo IBAN je príliš dlhé Kód krajiny pre IBAN nie je podporovaný - Invalid IBAN + Neplatné číslo IBAN @@ -6201,7 +6201,7 @@ Nájdite informácie o svojom účte - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Vyhľadajte svoje číslo IBAN v hornej časti bankového výpisu. Čísla IBAN obsahujú až 34 znakov. Zadané meno by sa malo zhodovať s celým menom uvedeným na vašom bankovom účte. Ak chcete získať ďalšie informácie, kontaktujte svoju banku. Čaká sa na príspevok @@ -6217,9 +6217,9 @@ Hotovo - Donation couldn\'t be processed + Príspevok sa nepodarilo spracovať - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Pri spracovaní vášho bankového prevodu sa vyskytol problém. Neboli vám účtované žiadne poplatky. Skúste iný spôsob platby alebo kontaktujte svoju banku a požiadajte o viac informácií. Skúsiť znova @@ -6658,17 +6658,17 @@ Prijať - Turn on full screen notifications? + Chcete zapnúť upozornenia na celú obrazovku? - Never miss a call from your contacts and groups. + Nikdy nezmeškajte hovor od vašich kontaktov a skupín. Zapnúť - Turn on full screen notifications + Zapnite upozornenia na celú obrazovku - To receive call notifications from your contacts and groups: + Ak chcete dostávať upozornenia na hovory od vašich kontaktov a skupín: - 2. %1$s Allow full screen notifications + 2. %1$s Povoľte upozornenia na celú obrazovku diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml index b305c208d8..354ac5082d 100644 --- a/app/src/main/res/values-sl/strings.xml +++ b/app/src/main/res/values-sl/strings.xml @@ -2245,9 +2245,9 @@ Nadgradnja aplikacije Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Na voljo je nova različica Signala. Tapnite za posodobitev. + Posodobitev Signala ni uspela + Znova bomo poskusili pozneje. Pošljem sporočilo? @@ -6111,8 +6111,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Želite zapustiti Signal za potrditev plačila? + Ko je to plačilo potrjeno, se vrnite v Signal, da dokončate obdelavo svoje donacije. @@ -6152,7 +6152,7 @@ Nadaljuj - Failed to load mandate + Pooblastila ni bilo mogoče naložiti @@ -6172,13 +6172,13 @@ Donirajte %1$s - IBAN is too short + IBAN je prekratek - IBAN is too long + IBAN je predolg Koda države IBAN ni podprta - Invalid IBAN + Neveljaven IBAN @@ -6201,7 +6201,7 @@ Poiščite podatke o svojem računu - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Poiščite svoj IBAN na vrhu bančnega izpiska. IBAN vsebuje do 34 znakov. Ime, ki ga vnesete, se mora ujemati s polnim imenom na vašem bančnem računu. Za več informacij se obrnite na svojo banko. Donacija v teku @@ -6217,9 +6217,9 @@ OK - Donation couldn\'t be processed + Donacije ni bilo mogoče obdelati - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Imamo težave pri obdelavi vašega bančnega nakazila. Nismo vam zaračunali. Poskusite z drugo plačilno metodo ali preverite pri vaši banki. Poskusite znova @@ -6658,17 +6658,17 @@ Potrdi - Turn on full screen notifications? + Želite vklopiti celozaslonska obvestila? - Never miss a call from your contacts and groups. + Nikdar ne spreglejte klica svojih stikov in skupin. Vklopi - Turn on full screen notifications + Vklopite celozaslonska obvestila - To receive call notifications from your contacts and groups: + Če želite prejemati obvestila o klicih svojih stikov in skupin: - 2. %1$s Allow full screen notifications + 2. %1$s Dovolite celozaslonska obvestila diff --git a/app/src/main/res/values-sq/strings.xml b/app/src/main/res/values-sq/strings.xml index ea5207d1a3..fce0bbaabf 100644 --- a/app/src/main/res/values-sq/strings.xml +++ b/app/src/main/res/values-sq/strings.xml @@ -2099,9 +2099,9 @@ Përditësim i Signal-it - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Një version i ri i Signal është i disponueshëm. Kliko për ta përditësuar. + Signal nuk u përditësua + Do të provojmë përsëri më vonë. Të dërgohet mesazhi? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Do të largohesh nga Signal për të konfirmuar pagesën? + Pasi të konfirmohet kjo pagesë, kthehu te Signal për të përfunduar përpunimin e dhurimit. @@ -5892,7 +5892,7 @@ Vazhdo - Failed to load mandate + Ngarkimi i mandatit dështoi @@ -5912,13 +5912,13 @@ Dhuro %1$s - IBAN is too short + IBAN është shumë i shkurtër - IBAN is too long + IBAN është shumë i gjatë Kodi i shtetit IBAN nuk mbështetet - Invalid IBAN + IBAN i pavlefshëm @@ -5941,7 +5941,7 @@ Gjej të dhënat e llogarisë tënde - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Kërko IBAN-in tënd në krye të pasqyrës tënde bankare. Numrat IBAN përmbajnë deri në 34 karaktere. Emri që vendos duhet të përputhet me emrin tënd të plotë në llogarinë bankare. Kontakto bankën për më shumë informacion. Dhurimi në pritje @@ -5957,9 +5957,9 @@ U bë - Donation couldn\'t be processed + Dhurimi nuk mund të përpunohej - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Kemi probleme me përpunimin e transfertës tënde bankare. Nuk të është mbajtur shuma. Provo një metodë tjetër pagese ose lidhu me bankën për më shumë informacion. Riprovo @@ -6386,17 +6386,17 @@ Miratoje - Turn on full screen notifications? + Të aktivizohen njoftimet me ekran të plotë? - Never miss a call from your contacts and groups. + Mos humb kurrë një thirrje nga kontaktet dhe grupet e tua. Aktivizo - Turn on full screen notifications + Aktivizo njoftimet me ekran të plotë - To receive call notifications from your contacts and groups: + Për të marrë njoftimet e thirrjeve nga kontaktet dhe grupet e tua: - 2. %1$s Allow full screen notifications + 2. %1$s Lejo njoftimet në ekran të plotë diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 8e5be7f07d..7f172b2f96 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -2099,9 +2099,9 @@ Signal-uppdatering - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + En ny version av Signal är tillgänglig. Tryck för att uppdatera. + Det gick inte att uppdatera Signal + Vi försöker igen senare. Skicka meddelande? @@ -5472,7 +5472,7 @@ %1$s har gjort en donation till Signal för din räkning. Visa ditt stöd för Signal på din profil. - %1$s har gjort en donation till Signal för din räkning. De får möjlighet att visa sitt stöd på sin profil. + Du har gjort en donation till Signal till förmån för %1$s. De får möjlighet att visa sitt stöd på sin profil. Lös in @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Lämna Signal för att bekräfta betalning? + Återgå till Signal för att slutföra behandlingen av din donation när denna betalning har bekräftats. @@ -5892,7 +5892,7 @@ Fortsätt - Failed to load mandate + Det gick inte att ladda begäran @@ -5912,13 +5912,13 @@ Donera %1$s - IBAN is too short + IBAN är för kort - IBAN is too long + IBAN är för långt IBAN-landskod stöds inte - Invalid IBAN + Ogiltigt IBAN @@ -5941,7 +5941,7 @@ Hitta din kontoinformation - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Leta efter ditt IBAN högst upp på ditt kontoutdrag. IBAN innehåller upp till 34 tecken. Namnet du anger ska matcha ditt fullständiga namn i ditt bankkonto. Kontakta din bank för mer information. Donation väntar @@ -5957,9 +5957,9 @@ Klar - Donation couldn\'t be processed + Donationen kunde inte bearbetas - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Vi har problem med att bearbeta din banköverföring. Ingen betalning har dragits. Försök med en annan betalningsmetod eller kontakta din bank för mer information. Försök igen @@ -6386,17 +6386,17 @@ Godkänn - Turn on full screen notifications? + Aktivera helskärmsaviseringar? - Never miss a call from your contacts and groups. + Missa aldrig ett samtal från dina kontakter och grupper. Aktivera - Turn on full screen notifications + Aktivera helskärmsaviseringar - To receive call notifications from your contacts and groups: + Så här tar du emot samtalsaviseringar från dina kontakter och grupper: - 2. %1$s Allow full screen notifications + 2. %1$s Tillåt helskärmsaviseringar diff --git a/app/src/main/res/values-sw/strings.xml b/app/src/main/res/values-sw/strings.xml index 3f81b0ddac..3f20767c76 100644 --- a/app/src/main/res/values-sw/strings.xml +++ b/app/src/main/res/values-sw/strings.xml @@ -2099,9 +2099,9 @@ Sasisho ya Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Toleo jipya la Signal linapatikana. Gusa ili kusasisha. + Signal imeshindwa kusasisha + Tutajaribu tena baadae. Tuma ujumbe? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Ondoka Signal ili kuthibitisha malipo? + Mara tu malipo haya yatakapothibitishwa, rudi kwenye Signal ili kumaliza kuchakata mchango wako. @@ -5892,7 +5892,7 @@ Endelea - Failed to load mandate + Imeshindwa kupakua jukumu @@ -5912,13 +5912,13 @@ Changia %1$s - IBAN is too short + Nambari ya IBAN ni fupi sana - IBAN is too long + Nambari ya IBAN ni ndefu sana Msimbo wa nchi wa IBAN hautumiki - Invalid IBAN + Nambari ya IBAN isiyo halali @@ -5941,7 +5941,7 @@ Tafuta taarifa za akaunti yako - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Tafuta nambari yako ya IBAN juu ya taarifa yako ya benki. Nambari za IBAN zina hadi herufi 34. Jina utakaloingiza lazima lilingane na jina lako kamili lililo kwenye akaunti yako ya benki. Wasiliana na benki yako kwa maelezo zaidi. Mchango unasubiri @@ -5957,9 +5957,9 @@ Imekamilika - Donation couldn\'t be processed + Mchango hauwezi kuchakatwa - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Tunapata shida kuchakata hamisho lako la benki. Hujatozwa. Jaribu njia nyingine ya malipo au wasiliana na benki yako kwa habari zaidi. Jaribu tena @@ -6386,17 +6386,17 @@ Idhinisha - Turn on full screen notifications? + Washa arifa za skrini nzima? - Never miss a call from your contacts and groups. + Usikose tena simu kutoka kwa wawasiliani na vikundi vyako. Washa - Turn on full screen notifications + Washa arifa za skrini nzima - To receive call notifications from your contacts and groups: + Ili kupokea arifa za simu kutoka kwa wawasiliani wako na vikundi: - 2. %1$s Allow full screen notifications + 2. %1$s Ruhusu arifa za skrini nzima diff --git a/app/src/main/res/values-ta/strings.xml b/app/src/main/res/values-ta/strings.xml index 66a1acba97..29183687a6 100644 --- a/app/src/main/res/values-ta/strings.xml +++ b/app/src/main/res/values-ta/strings.xml @@ -2099,9 +2099,9 @@ Signal புதுப்பிப்பு - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal இன் புதிய பதிப்பு கிடைக்கப்பெறுகிறது. புதுப்பிக்க அழுத்தவும். + Signalஐப் புதுப்பிக்க முடியவில்லை + பின்னர் மீண்டும் முயல்வோம். செய்தி அனுப்ப? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + பேமெண்ட்டை உறுதிப்படுத்த, Signalஐ விட்டு வெளியேற வேண்டுமா? + இந்த பேமெண்ட் உறுதிசெய்யப்பட்டதும், உங்கள் நன்கொடை செயல்படுத்துதலை முடிக்க Signalக்குத் திரும்பவும். @@ -5892,7 +5892,7 @@ தொடர்க - Failed to load mandate + ஆணையை ஏற்ற இயலவில்லை @@ -5912,13 +5912,13 @@ %1$s நன்கொடையளி - IBAN is too short + IBAN மிகவும் சுருக்கமாக உள்ளது - IBAN is too long + IBAN மிக நீளமாக உள்ளது IBAN நாட்டுக் குறியீடு ஆதரிக்கப்படவில்லை - Invalid IBAN + தவறான IBAN @@ -5941,7 +5941,7 @@ உங்கள் கணக்குத் தகவலைக் கண்டறியவும் - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + உங்கள் வங்கி அறிக்கையின் மேலே உங்கள் IBANஐக் கண்டறியவும். IBAN 34 எழுத்துகள் கொண்டதாகும். நீங்கள் உள்ளிடும் பெயர் உங்கள் வங்கிக் கணக்கில் உள்ள உங்கள் முழுப் பெயருடன் பொருந்த வேண்டும். மேலும் தகவலுக்கு உங்கள் வங்கியைத் தொடர்பு கொள்ளவும். நன்கொடை நிலுவையில் உள்ளது @@ -5957,9 +5957,9 @@ முடிந்தது - Donation couldn\'t be processed + நன்கொடையைச் செயல்படுத்த முடியவில்லை - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + உங்கள் வங்கிப் பரிமாற்றத்தைச் செயல்படுத்துவதில் சிக்கல் ஏற்பட்டது. உங்களிடம் பணம் எடுக்கப்படவில்லை. மற்றொரு பேமெண்ட் முறையை முயலவும் அல்லது மேலும் தகவலுக்கு உங்கள் வங்கியைத் தொடர்பு கொள்ளவும். மீண்டும் முயற்சிக்கவும் @@ -6386,17 +6386,17 @@ ஒப்புதல் - Turn on full screen notifications? + முழுத் திரை அறிவிப்புகளை இயக்க வேண்டுமா? - Never miss a call from your contacts and groups. + உங்கள் தொடர்புகள் மற்றும் குழுக்களின் அழைப்பைத் தவறவிடாதீர்கள். இயக்கு - Turn on full screen notifications + முழுத் திரை அறிவிப்புகளை இயக்கவும் - To receive call notifications from your contacts and groups: + உங்கள் தொடர்புகள் மற்றும் குழுக்களிடமிருந்து அழைப்பு அறிவிப்புகளைப் பெற: - 2. %1$s Allow full screen notifications + 2. %1$s முழுத் திரை அறிவிப்புகளை அனுமதிக்கவும் diff --git a/app/src/main/res/values-te/strings.xml b/app/src/main/res/values-te/strings.xml index b91c68ca20..8667129bdc 100644 --- a/app/src/main/res/values-te/strings.xml +++ b/app/src/main/res/values-te/strings.xml @@ -2099,9 +2099,9 @@ Signal నవీకరణ - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal యొక్క కొత్త వెర్షన్ అందుబాటులో ఉంది. అప్‌డేట్ చేయడానికి తట్టండి. + అప్‌డేట్ చేసేందుకు Signal విఫలమైంది + మేము తర్వాత మళ్ళీ ప్రయత్నిస్తాము. సందేశం పంపాల? @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + చెల్లింపును నిర్ధారించడానికి Signal నుండి నిష్క్రమించేదా? + ఒకసారి ఈ చెల్లింపు నిర్ధారించబడిన తర్వాత, మీ విరాళాన్ని ప్రక్రియ చేయడం పూర్తి చేయడానికి Signal కు తిరిగి వెళ్ళండి. @@ -5892,7 +5892,7 @@ కొనసాగండి - Failed to load mandate + ఆదేశాన్ని లోడ్ చేసేందుకు విఫలమైంది @@ -5912,13 +5912,13 @@ %1$s విరాళం ఇవ్వండి - IBAN is too short + IBAN చాలా చిన్నదిగా ఉంది - IBAN is too long + IBAN చాలా పెద్దదిగా ఉంది IBAN దేశం కోడ్ మద్దతు ఇవ్వబడలేదు - Invalid IBAN + చెల్లని IBAN @@ -5941,7 +5941,7 @@ మీ ఖాతా సమాచారాన్ని కనుగొనండి - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + మీ బ్యాంక్ స్టేట్‌మెంట్ పై భాగాన మీ IBAN కోసం చూడండి. IBANలు 34 అక్షరాల వరకు కలిగి ఉంటాయి. మీరు ఎంటర్ చేసే పేరు మీ బ్యాంక్ ఖాతాలోని మీ పూర్తి పేరుతో సరిపోలాలి. మరింత సమాచారం కొరకు మీ బ్యాంక్‌ను సంప్రదించండి. విరాళం పెండింగ్‌లో ఉంది @@ -5957,9 +5957,9 @@ పూర్తయింది - Donation couldn\'t be processed + విరాళం ప్రక్రియ చేయబడలేదు - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + మీ బ్యాంక్ బదిలీని ప్రక్రియ చేయడంలో మాకు సమస్య ఉంది. మీకు ఛార్జీ విధించబడలేదు. మరో చెల్లింపు విధానం ప్రయత్నించండి లేదా మరింత సమాచారం కొరకు మీ బ్యాంక్‌ను సంప్రదించండి. మళ్ళీ ప్రయత్నించండి @@ -6386,17 +6386,17 @@ ఆమోదించడానికి - Turn on full screen notifications? + పూర్తి స్క్రీన్ నోటిఫికేషన్లను ఆన్ చేసేదా? - Never miss a call from your contacts and groups. + మీ కాంటాక్టులు మరియు గ్రూపుల నుండి కాల్‌ను ఎప్పటికీ మిస్ అవకండి. ఆన్ చేయండి - Turn on full screen notifications + పూర్తి స్క్రీన్ నోటిఫికేషన్లను ఆన్ చేయండి - To receive call notifications from your contacts and groups: + మీ కాంటాక్టులు మరియు గ్రూపుల నుండి కాల్ నోటిఫికేషన్లను అందుకోవడానికి: - 2. %1$s Allow full screen notifications + 2. %1$s పూర్తి స్క్రీన్ నోటిఫికేషన్లను అనుమతించండి diff --git a/app/src/main/res/values-th/strings.xml b/app/src/main/res/values-th/strings.xml index de4fb78c72..45e7112a97 100644 --- a/app/src/main/res/values-th/strings.xml +++ b/app/src/main/res/values-th/strings.xml @@ -2026,9 +2026,9 @@ ปรับรุ่น Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal เวอร์ชันใหม่พร้อมให้บริการแล้ว แตะเพื่ออัปเดต + อัปเดต Signal ไม่สำเร็จ + เราจะลองใหม่อีกครั้งในภายหลัง ส่งข้อความหรือไม่? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + ออกจากแอป Signal เพื่อยืนยันการชำระเงินหรือไม่ + เมื่อการชำระเงินนี้ได้รับการยืนยันเรียบร้อยแล้ว โปรดเปิดแอป Signal อีกครั้งเพื่อดำเนินการบริจาคของคุณให้เสร็จสิ้น @@ -5762,7 +5762,7 @@ ดำเนินการต่อ - Failed to load mandate + โหลดคำขอไม่สำเร็จ @@ -5782,13 +5782,13 @@ บริจาค %1$s - IBAN is too short + หมายเลข IBAN สั้นเกินไป - IBAN is too long + หมายเลข IBAN ยาวเกินไป ไม่รองรับรหัสประเทศของหมายเลข IBAN ที่ระบุ - Invalid IBAN + หมายเลข IBAN ไม่ถูกต้อง @@ -5811,7 +5811,7 @@ ค้นหาข้อมูลบัญชีของคุณ - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + ตรวจสอบหมายเลข IBAN ซึ่งจะระบุอยู่ที่ด้านบนของรายการเดินบัญชี (Bank Statement) โดยหมายเลข IBAN จะมีอักขระไม่เกิน 34 ตัว ชื่อที่กรอกควรตรงกับชื่อเต็มของคุณตามที่ระบุในบัญชีธนาคาร โปรดติดต่อธนาคารของคุณสำหรับข้อมูลเพิ่มเติม การบริจาคอยู่ในสถานะรออนุมัติ @@ -5827,9 +5827,9 @@ เสร็จสิ้น - Donation couldn\'t be processed + ไม่สามารถดำเนินการบริจาคได้ - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + เราประสบปัญหาในการดำเนินการโอนเงินผ่านระบบธนาคารของคุณ โดยคุณยังไม่ถูกเรียกเก็บเงินในกรณีนี้ ลองชำระเงินด้วยวิธีอื่น หรือติดต่อธนาคารเพื่อขอข้อมูลเพิ่มเติม ลองอีกครั้ง @@ -6250,17 +6250,17 @@ อนุมัติ - Turn on full screen notifications? + เปิดการแจ้งเตือนแบบเต็มหน้าจอหรือไม่ - Never miss a call from your contacts and groups. + ไม่พลาดการโทรจากผู้ติดต่อและกลุ่มของคุณอีกต่อไป เปิดใช้งาน - Turn on full screen notifications + เปิดการแจ้งเตือนแบบเต็มหน้าจอ - To receive call notifications from your contacts and groups: + วิธีเปิดใช้งานเพื่อรับการแจ้งเตือนการโทรจากผู้ติดต่อและกลุ่มของคุณ: - 2. %1$s Allow full screen notifications + 2. %1$s อนุญาตสิทธิ์การแจ้งเตือนแบบเต็มหน้าจอ diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index 84b66e7de6..c1e144c3bd 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -2245,9 +2245,9 @@ Оновлення Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Доступна нова версія Signal. Торкніться, щоб оновити. + Не вдалося оновити Signal + Ми спробуємо знову пізніше. Надіслати повідомлення? @@ -6111,8 +6111,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Покинути Signal для підтвердження платежу? + Після підтвердження платежу поверніться до Signal, щоб завершити обробку внеску. @@ -6152,7 +6152,7 @@ Продовжити - Failed to load mandate + Не вдалося завантажити запит @@ -6172,13 +6172,13 @@ Задонатити %1$s - IBAN is too short + IBAN закороткий - IBAN is too long + IBAN задовгий Код країни IBAN не підтримується - Invalid IBAN + Недійсний IBAN @@ -6201,7 +6201,7 @@ Як знайти дані свого рахунку - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Знайдіть IBAN у верхній частині виписки за рахунком. IBAN містить до 34 символів. Введене ім\'я має збігатися з повним ім\'ям, що вказано у вашому банківському рахунку. Щоб отримати додаткову інформацію, зв\'яжіться зі своїм банком. Донат очікує на розгляд @@ -6217,9 +6217,9 @@ Готово - Donation couldn\'t be processed + Не вдалося обробити донат - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + З обробкою банківського переказу викникла проблема. Кошти не було стягнуто. Спробуйте інший спосіб оплати або зв\'яжіться зі своїм банком для додаткової інформації. Спробуйте ще @@ -6658,17 +6658,17 @@ Прийняти - Turn on full screen notifications? + Увімкнути повноекранні сповіщення? - Never miss a call from your contacts and groups. + Щоб ніколи не пропускати викликів від ваших контактів і груп. Увімкнути - Turn on full screen notifications + Увімкнення повноекранних сповіщень - To receive call notifications from your contacts and groups: + Щоб отримувати сповіщення про виклики від ваших контактів і груп: - 2. %1$s Allow full screen notifications + 2. %1$s Увімкніть повноекранні сповіщення diff --git a/app/src/main/res/values-ur/strings.xml b/app/src/main/res/values-ur/strings.xml index a938b9f784..ef9b078f52 100644 --- a/app/src/main/res/values-ur/strings.xml +++ b/app/src/main/res/values-ur/strings.xml @@ -2099,9 +2099,9 @@ Signal اپ ڈیٹ - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal کا نیا ورژن دستیاب ہے۔ اپ ڈیٹ کرنے کے لیے ٹیپ کریں۔ + Signal اپ ڈیٹ ہونے میں ناکامی + ہم کچھ دیر بعد دوبارہ کوشش کریں گے۔ پیغام بھیجیں؟ @@ -5851,8 +5851,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + پیمنٹ کی تصدیق کرنے کے لیے Signal کو چھوڑ دیں؟ + اس پیمنٹ کی تصدیق ہونے کے بعد، عطیہ کی کارروائی مکمل کرنے کے لیے Signal پر واپس جائیں۔ @@ -5892,7 +5892,7 @@ جاری رکھیں - Failed to load mandate + مینڈیٹ کو لوڈ کرنے میں ناکامی @@ -5912,13 +5912,13 @@ %1$s عطیہ کریں - IBAN is too short + IBAN کافی مختصر ہے - IBAN is too long + IBAN کافی طویل ہے IBAN ملکی کوڈ سپورٹ کردہ نہیں ہے - Invalid IBAN + غلط IBAN @@ -5941,7 +5941,7 @@ اپنے اکاؤنٹ کی معلومات تلاش کریں - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + اپنی بینک اسٹیٹمنٹ کی بالائی سطح پر اپنا IBAN تلاش کریں۔ IBANs زیادہ سے زیادہ 34 حروف پر مشتمل ہوتے ہیں۔ آپ جو نام درج کرتے ہیں وہ بینک اکاؤنٹ پر موجود آپ کے مکمل نام سے مماثل ہونا چاہیئے۔ مزید معلومات کے لیے اپنے بینک سے رابطہ کریں۔ عطیہ زیر التواء ہے @@ -5957,9 +5957,9 @@ ہو گیا - Donation couldn\'t be processed + عطیہ پر کارروائی نہیں کی جا سکی - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + ہمیں آپ کے بینک ٹرانسفر پر کارروائی کرنے میں مشکلات کا سامنا ہے۔ آپ پر چارجز عائد نہیں کیے گئے۔ پیمنٹ کا کوئی دوسرا طریقہ آزمائیں یا مزید معلومات کے لیے اپنے بینک سے رابطہ کریں۔ دوبارہ کوشش کریں @@ -6386,17 +6386,17 @@ منظور کریں - Turn on full screen notifications? + پوری اسکرین کی اطلاعات کو آن کریں؟ - Never miss a call from your contacts and groups. + اپنے رابطوں اور گروپس کی کال سے کبھی بھی محروم نہ ہوں۔ آن کریں - Turn on full screen notifications + پوری اسکرین کی اطلاعات کو آن کریں - To receive call notifications from your contacts and groups: + اپنے رابطوں اور گروپس کی طرف سے کال کی اطلاعات موصول کرنے کے لیے: - 2. %1$s Allow full screen notifications + 2. %1$s پوری اسکرین کی اطلاعات کو فعال کریں diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index 480bef9795..f303fbfdee 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -2026,9 +2026,9 @@ Cập nhật Signal - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Đã có phiên bản mới của Signal. Nhấn để cập nhật. + Cập nhật Signal không thành công + Chúng tôi sẽ thử lại sau. Gửi tin nhắn? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + Rời khỏi Signal để xác nhận thanh toán? + Khi việc thanh toán đã được xác nhận, quay lại Signal để hoàn tất xử lý khoản ủng hộ của bạn. @@ -5762,7 +5762,7 @@ Tiếp tục - Failed to load mandate + Không thể xử lý yêu cầu ủy quyền @@ -5782,13 +5782,13 @@ Ủng hộ %1$s - IBAN is too short + IBAN quá ngắn - IBAN is too long + IBAN quá dài Mã quốc gia của số IBAN không được hỗ trợ - Invalid IBAN + IBAN không hợp lệ @@ -5811,7 +5811,7 @@ Tìm thông tin tài khoản của bạn - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + Tìm mã IBAN của bạn ở phần phía trên của sao kê ngân hàng của bạn. IBAN có thể có đến 34 ký tự. Tên bạn nhập cần khớp với họ và tên đầy đủ của tài khoản ngân hàng. Liên hệ ngân hàng của bạn để biết thêm thông tin. Đang chờ xử lý khoản ủng hộ @@ -5827,9 +5827,9 @@ Xong - Donation couldn\'t be processed + Không thể xử lý khoản ủng hộ - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + Chúng tôi gặp vấn đề ở bước xử lý giao dịch chuyển khoản ngân hàng của bạn. Bạn chưa bị trừ tiền. Hãy thử một phương thức thanh toán khác hoặc liên hệ với ngân hàng của bạn để biết thêm thông tin. Thử lại @@ -6250,17 +6250,17 @@ Đồng ý - Turn on full screen notifications? + Bật thông báo toàn màn hình? - Never miss a call from your contacts and groups. + Không bao giờ bỏ lỡ cuộc gọi từ liên hệ và nhóm của bạn. Bật - Turn on full screen notifications + Bật thông báo toàn màn hình - To receive call notifications from your contacts and groups: + Để nhận thông báo toàn màn hình từ các liên hệ và nhóm: - 2. %1$s Allow full screen notifications + 2. %1$s Cho phép thông báo toàn màn hình diff --git a/app/src/main/res/values-yue/strings.xml b/app/src/main/res/values-yue/strings.xml index 1ad9b9a73f..5ad8c9e696 100644 --- a/app/src/main/res/values-yue/strings.xml +++ b/app/src/main/res/values-yue/strings.xml @@ -2026,9 +2026,9 @@ Signal 更新 - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + Signal 出咗新版本喇。 㩒一下就可以更新。 + Signal 更新失敗 + 我哋遲啲再試過啦。 係咪要傳送訊息? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + 係咪想離開 Signal 去確認付款呀? + 確認付款之後,請返返去 Signal 完成埋你嘅捐款。 @@ -5762,7 +5762,7 @@ 繼續 - Failed to load mandate + 載入唔到授權 @@ -5782,13 +5782,13 @@ 捐款 %1$s - IBAN is too short + IBAN 太短 - IBAN is too long + IBAN 太長 未支援 IBAN 國家/地區代碼 - Invalid IBAN + IBAN 無效 @@ -5811,7 +5811,7 @@ 搵返你嘅帳戶資料 - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + 喺銀行結算單頂部搵返你嘅 IBAN。 IBAN 包含最多 34 個字元。 你輸入嘅名要同你銀行帳戶嘅全名吻合。詳情請聯絡你嘅銀行查詢。 捐款待處理 @@ -5827,9 +5827,9 @@ 完成 - Donation couldn\'t be processed + 處理唔到捐款 - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + 我哋喺處理你嘅銀行轉賬時遇到問題。 你冇被扣款。 試下轉用另一個付款方式,又或者聯絡返您間銀行問清楚。 再試一次 @@ -6250,17 +6250,17 @@ 批准 - Turn on full screen notifications? + 係咪要開啟全螢幕通知? - Never miss a call from your contacts and groups. + 唔再錯過聯絡人同群組打嚟嘅電話。 開啟 - Turn on full screen notifications + 開啟全螢幕通知 - To receive call notifications from your contacts and groups: + 如果想收到聯絡人同群組嘅通話通知: - 2. %1$s Allow full screen notifications + 2. %1$s 允許全螢幕通知 diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index edb2bf32c4..2f299b3a9d 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -2026,9 +2026,9 @@ Signal 更新 - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + 我们推出了 Signal 的新版本。点击更新。 + Signal 更新失败 + 我们稍后会再试一次。 发送消息? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + 要离开 Signal 以确认付款吗? + 确认付款后,请返回 Signal 以完成捐款处理。 @@ -5762,7 +5762,7 @@ 继续 - Failed to load mandate + 指令加载失败 @@ -5782,13 +5782,13 @@ 捐款 %1$s - IBAN is too short + IBAN 太短 - IBAN is too long + IBAN 太长 不支持 IBAN 国家/地区代码 - Invalid IBAN + IBAN 无效 @@ -5811,7 +5811,7 @@ 查找您的账户信息 - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + 您可以在您的银行对账单顶部查看您的 IBAN。IBAN 至多包含 34 个字符。您输入的名称须与您银行账户上的名称一致。如需了解更多信息,请联系您的银行。 捐款待处理 @@ -5827,9 +5827,9 @@ 完成 - Donation couldn\'t be processed + 捐款无法处理 - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + 我们在处理您的银行转账时遇到了问题。您尚未被扣款。请尝试另一种付款方式或联系您的银行了解详情。 重试 @@ -6250,17 +6250,17 @@ 批准 - Turn on full screen notifications? + 要开启全屏通知吗? - Never miss a call from your contacts and groups. + 不错过联系人和群组的任何通话。 开启 - Turn on full screen notifications + 开启全屏通知 - To receive call notifications from your contacts and groups: + 如要接收来自联系人和群组的通话通知: - 2. %1$s Allow full screen notifications + 2. %1$s 允许全屏通知 diff --git a/app/src/main/res/values-zh-rHK/strings.xml b/app/src/main/res/values-zh-rHK/strings.xml index 36537440cb..5731c776f5 100644 --- a/app/src/main/res/values-zh-rHK/strings.xml +++ b/app/src/main/res/values-zh-rHK/strings.xml @@ -2026,9 +2026,9 @@ Signal 更新 - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + 新版本的 Signal 現已提供。 輕觸以更新。 + Signal 無法更新 + 我們將稍後再試。 要傳送訊息嗎? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + 離開 Signal 以確認付款? + 確認付款後,請返回 Signal 以完成你的捐款處理。 @@ -5762,7 +5762,7 @@ 繼續 - Failed to load mandate + 無法載入授權 @@ -5782,13 +5782,13 @@ 捐款 %1$s - IBAN is too short + IBAN 太短 - IBAN is too long + IBAN 太長 未支援 IBAN 國家代碼 - Invalid IBAN + IBAN 無效 @@ -5811,7 +5811,7 @@ 搜尋你的帳戶資料 - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + 在銀行結帳單頂端查找你的 IBAN。IBAN 包含最多 34 個字元。你輸入的姓名應與你銀行帳戶上的全名相符。請聯絡你的銀行了解詳情。 捐款正待處理 @@ -5827,9 +5827,9 @@ 完成 - Donation couldn\'t be processed + 捐款無法處理 - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + 我們在處理你的銀行轉帳時遇到問題。 你尚未被扣款。 請嘗試其他付款方式,或聯絡你的銀行取得更多資訊。 再試一次 @@ -6250,17 +6250,17 @@ 核准 - Turn on full screen notifications? + 要開啟全螢幕通知? - Never miss a call from your contacts and groups. + 不再錯過任何來自你聯絡人或群組中的來電。 開啟 - Turn on full screen notifications + 開啟全螢幕通知 - To receive call notifications from your contacts and groups: + 如要接收來自聯絡人和群組的來電通知: - 2. %1$s Allow full screen notifications + 2. %1$s 允許全螢幕通知 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 3784b88093..2a691c855a 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -2026,9 +2026,9 @@ Signal 更新 - A new version of Signal is available. Tap to update. - Signal failed to update - We will try again later. + 新版本的 Signal 現已提供。 輕觸以更新。 + Signal 無法更新 + 我們將稍後再試。 傳送訊息? @@ -5721,8 +5721,8 @@ iDEAL - Leave Signal to confirm payment? - Once this payment is confirmed, return to Signal to finish processing your donation. + 離開 Signal 以確認付款? + 確認付款後,請返回 Signal 以完成你的捐款處理。 @@ -5762,7 +5762,7 @@ 繼續 - Failed to load mandate + 無法載入授權 @@ -5782,13 +5782,13 @@ 捐款 %1$s - IBAN is too short + IBAN 太短 - IBAN is too long + IBAN 太長 未支援 IBAN 國家代碼 - Invalid IBAN + IBAN 無效 @@ -5811,7 +5811,7 @@ 搜尋你的帳戶資料 - Look for your IBAN at the top of your bank statement. IBANs contain up to 34 characters. The name you enter should match your full name on your bank account. Contact your bank for more information. + 在銀行結帳單頂端查找你的 IBAN。IBAN 包含最多 34 個字元。你輸入的姓名應與你銀行帳戶上的全名相符。請聯絡你的銀行了解詳情。 捐款正待處理 @@ -5827,9 +5827,9 @@ 完成 - Donation couldn\'t be processed + 捐款無法處理 - We\'re having trouble processing your bank transfer. You have not been charged. Try another payment method or contact your bank for more information. + 我們在處理你的銀行轉帳時遇到問題。 你尚未被扣款。 請嘗試其他付款方式,或聯絡你的銀行取得更多資訊。 再試一次 @@ -6250,17 +6250,17 @@ 核准 - Turn on full screen notifications? + 要開啟全螢幕通知? - Never miss a call from your contacts and groups. + 不再錯過任何來自你聯絡人或群組中的來電。 開啟 - Turn on full screen notifications + 開啟全螢幕通知 - To receive call notifications from your contacts and groups: + 如要接收來自聯絡人和群組的來電通知: - 2. %1$s Allow full screen notifications + 2. %1$s 允許全螢幕通知 diff --git a/app/static-ips.gradle b/app/static-ips.gradle index a511292f2d..00de1483cb 100644 --- a/app/static-ips.gradle +++ b/app/static-ips.gradle @@ -1,5 +1,5 @@ ext.service_ips='new String[]{"13.248.212.111","76.223.92.165"}' -ext.storage_ips='new String[]{"142.251.40.115"}' +ext.storage_ips='new String[]{"142.251.40.179"}' ext.cdn_ips='new String[]{"18.238.49.106","18.238.49.6","18.238.49.66","18.238.49.90"}' ext.cdn2_ips='new String[]{"104.18.37.148","172.64.150.108"}' ext.cdn3_ips='new String[]{"104.18.37.148","172.64.150.108"}' From 23783465371b7230ce0651c66dc3db9293931f94 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Mon, 30 Oct 2023 17:54:17 -0400 Subject: [PATCH 4/4] Bump version to 6.38.2 --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index c996c8ccbe..7b58b1428c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -33,8 +33,8 @@ ktlint { version = "0.49.1" } -def canonicalVersionCode = 1352 -def canonicalVersionName = "6.38.1" +def canonicalVersionCode = 1353 +def canonicalVersionName = "6.38.2" def postFixSize = 100 def abiPostFix = ['universal' : 0,