diff --git a/app-k9mail/src/main/res/values/constants.xml b/app-k9mail/src/main/res/values/constants.xml index 4f40021e88c..9d43a6e6100 100644 --- a/app-k9mail/src/main/res/values/constants.xml +++ b/app-k9mail/src/main/res/values/constants.xml @@ -4,4 +4,6 @@ https://forum.k9mail.app/ https://www.thunderbird.net/donate/mobile/?form=k9mail&utm_source=%s&utm_medium=android_app&utm_campaign=inapp_appeal_v2 K-9 Mail for Android + www.thunderbird.net + https://www.thunderbird.net diff --git a/app-k9mail/src/main/res/values/funding_strings.xml b/app-k9mail/src/main/res/values/funding_strings.xml index 9b68cfad472..2a85fc252d3 100644 --- a/app-k9mail/src/main/res/values/funding_strings.xml +++ b/app-k9mail/src/main/res/values/funding_strings.xml @@ -5,7 +5,7 @@ Support K-9 Mail We never show ads or sell your data. We are entirely funded by individual contributions from users like you. If you’re enjoying K-9 Mail, please help support it. We can’t do this without you! Your contribution furthers the development of secure, private and open-source email. We are truly grateful to have you with us! - K-9 Mail is developed by Thunderbird.\nVisit www.thunderbird.net for more ways to support our work. + K-9 Mail is developed by Thunderbird.\nVisit %s for more ways to support our work. Support K-9 Mail K-9 Mail is free and open source. diff --git a/feature/funding/googleplay/src/main/kotlin/app/k9mail/feature/funding/googleplay/ui/contribution/ContributionList.kt b/feature/funding/googleplay/src/main/kotlin/app/k9mail/feature/funding/googleplay/ui/contribution/ContributionList.kt index 142f5774baa..bc0b6e3fcb3 100644 --- a/feature/funding/googleplay/src/main/kotlin/app/k9mail/feature/funding/googleplay/ui/contribution/ContributionList.kt +++ b/feature/funding/googleplay/src/main/kotlin/app/k9mail/feature/funding/googleplay/ui/contribution/ContributionList.kt @@ -15,10 +15,14 @@ import androidx.compose.runtime.remember import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.res.stringResource +import androidx.compose.ui.text.LinkAnnotation import androidx.compose.ui.text.SpanStyle import androidx.compose.ui.text.buildAnnotatedString import androidx.compose.ui.text.font.FontStyle +import androidx.compose.ui.text.style.TextDecoration +import androidx.compose.ui.text.withLink import androidx.compose.ui.text.withStyle +import app.k9mail.core.ui.compose.common.resources.annotatedStringResource import app.k9mail.core.ui.compose.designsystem.atom.Surface import app.k9mail.core.ui.compose.designsystem.atom.button.ButtonText import app.k9mail.core.ui.compose.designsystem.atom.icon.Icon @@ -205,13 +209,32 @@ private fun ListEmptyView( verticalArrangement = Arrangement.spacedBy(MainTheme.spacings.double), modifier = modifier.padding(vertical = MainTheme.spacings.double), ) { + val annotatedString = annotatedStringResource( + id = R.string.funding_googleplay_contribution_list_empty_message, + argument = buildAnnotatedString { + withStyle( + style = SpanStyle( + color = MainTheme.colors.primary, + textDecoration = TextDecoration.Underline, + ), + ) { + withLink( + LinkAnnotation.Url( + url = stringResource(R.string.funding_googleplay_thunderbird_website_url), + ), + ) { + append(stringResource(R.string.funding_googleplay_thunderbird_website_domain)) + } + } + }, + ) + TextBodyMedium( text = stringResource(R.string.funding_googleplay_contribution_list_empty_title), ) - // TODO The link needs to be clickable TextBodyMedium( - text = stringResource(R.string.funding_googleplay_contribution_list_empty_message), + text = annotatedString, ) } } diff --git a/feature/funding/googleplay/src/main/res/values-ca/strings.xml b/feature/funding/googleplay/src/main/res/values-ca/strings.xml index a49a57c0113..d9233d0ba89 100644 --- a/feature/funding/googleplay/src/main/res/values-ca/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-ca/strings.xml @@ -1,5 +1,5 @@ - + Contribució segura Dóna suport a Thunderbird Donació única @@ -11,7 +11,7 @@ Cap disponible Les contribucions no són deduïbles fiscalment com a donacions benèfiques. Modifica el pagament mensual - Visiteu www.thunderbird.net per obtenir més maneres de donar suport al Thunderbird + Visiteu %s per obtenir més maneres de donar suport al Thunderbird. Actualment, les contribucions des de l\'aplicació no estan disponibles. Mostra més detalls Error desconegut @@ -28,4 +28,4 @@ El pagament no està disponible en aquests moments Ignora l\'error El vostre suport ens fa avançar! Fins i tot les contribucions més petites generen un canvi, i estem molt agraïts de tenir-vos a bord. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-co/strings.xml b/feature/funding/googleplay/src/main/res/values-co/strings.xml index e36ce1df06e..738491f26b2 100644 --- a/feature/funding/googleplay/src/main/res/values-co/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-co/strings.xml @@ -1,5 +1,5 @@ - + Sustene Thunderbird Cuntribuzione assicurata Dà una volta @@ -8,7 +8,7 @@ Cuntinuà u pagamentu Sustene Thunderbird Ora, e cuntribuzioni ùn sò micca dispunibule via l’appiecazione. - Visitate u situ www.thunderbird.net per cunnosce parechje manere di sustene Thunderbird + Visitate u situ %s per cunnosce parechje manere di sustene Thunderbird. Pruvà torna Pagamentu indispunibule attualmente Mudificà u pagamentu misincu @@ -20,4 +20,4 @@ Ora, e cuntribuzioni ùn sò micca dispunibule. Ùn affissemu alcuna publicità è un vindemu mai i vostri dati. Simu finanziati sanu sanu grazia à e cuntribuzioni da i nostri utilizatori. S’è Thunderbird vi piace, aiutateci à sustenelu. Ùn pudemu fà què senza voi ! E cuntribuzioni ùn ponu micca esse scuntate da l’impositi cum’è e dunazioni. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-cs/strings.xml b/feature/funding/googleplay/src/main/res/values-cs/strings.xml index d3f0f2c148e..b2beba180fb 100644 --- a/feature/funding/googleplay/src/main/res/values-cs/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-cs/strings.xml @@ -1,5 +1,5 @@ - + Bezpečné přispění Jednou Pokračovat k platbě @@ -17,7 +17,7 @@ Zobrazit další podrobnosti Zavřít chybu Výjimečný měsíční dar - Navštivte www.thunderbird.net pro další způsoby, jak podpořit Thunderbird + Navštivte %s pro další způsoby, jak podpořit Thunderbird. Nákup se nezdařil. Podstatný dar Dary nejsou v tuto chvíli dostupné. @@ -54,4 +54,4 @@ Thunderbird je zdarma a open-source. Nezobrazujeme reklamy. Neprodáváme vaše data. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-de/strings.xml b/feature/funding/googleplay/src/main/res/values-de/strings.xml index 1b3f2dda6a6..8b905eae82d 100644 --- a/feature/funding/googleplay/src/main/res/values-de/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-de/strings.xml @@ -1,5 +1,5 @@ - + Sicher spenden Thunderbird unterstützen Monatlich @@ -31,7 +31,7 @@ Du hilfst uns, große Träume zu verwirklichen! Deine Unterstützung befähigt uns, außergewöhnliche Dinge zu erreichen. Wir zeigen keine Werbung und verkaufen deine Daten nicht. Wir finanzieren uns vollständig durch finanzielle Beiträge unserer Nutzer. Wenn dir Thunderbird gefällt, hilf uns bitte, es zu unterhalten. Wir können das nicht ohne dich tun! In-App-Spenden sind derzeit nicht verfügbar. - Besuche www.thunderbird.net für weitere Möglichkeiten zur Unterstützung von Thunderbird + Besuche %s für weitere Möglichkeiten zur Unterstützung von Thunderbird. Spenden sind derzeit nicht verfügbar. Grundlegende Spende Wertvolle Spende @@ -49,4 +49,4 @@ Unser Ziel ist es, eine sichere, private und kostenlose Open-Source-E-Mail-App für Nutzer auf der ganzen Welt bereitzustellen. Deine Spende unterstützt diese Arbeit. Möchtest du heute spenden? Jetzt nicht Vielen Dank für deine großzügige Spende! Deine Unterstützung stärkt Thunderbird direkt, und wir sind dankbar, dich auf diesem Weg an unserer Seite zu haben. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-es/strings.xml b/feature/funding/googleplay/src/main/res/values-es/strings.xml index 22f1103b7b6..1a973861921 100644 --- a/feature/funding/googleplay/src/main/res/values-es/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-es/strings.xml @@ -1,5 +1,5 @@ - + Nunca mostramos anuncios ni vendemos tus datos. Nos financiamos completamente con contribuciones financieras de nuestros usuarios. Si disfrutas de Thunderbird, por favor, ayúdanos a mantenerlo. ¡No podemos hacer esto sin ti! Continuar con el pago Mensual @@ -19,7 +19,7 @@ Compra fallida. Actualmente, las colaboraciones no están disponibles. Las colaboraciones dentro de la aplicación no están disponibles actualmente. - Visite www.thunderbird.net para conocer más formas de apoyar a Thunderbird + Visite %s para conocer más formas de apoyar a Thunderbird. Gran contribución Aporte excepcional ¡Tu colaboración realmente brilla! Está desempeñando un papel importante en el avance de nuestra misión, ayudándonos a alcanzar hitos importantes y lograr un mayor impacto. @@ -53,4 +53,4 @@ No vendemos tus datos. Thunderbird es gratuito y de código abierto. No mostramos anuncios. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-et/strings.xml b/feature/funding/googleplay/src/main/res/values-et/strings.xml index 87f7f8090c7..28aeb88cd8b 100644 --- a/feature/funding/googleplay/src/main/res/values-et/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-et/strings.xml @@ -1,5 +1,5 @@ - + Toeta Thunderbirdi Turvaline rahaline toetus Iga kuu @@ -12,7 +12,7 @@ Anna veel üks mõjus panus Muuda igakuist makset Rakenduse-sisene annetamise võimalus hetkel puudub. - Meie saidist www.thunderbird.net leiad veel võimalusi Thunderbirdi toetamiseks + Meie saidist %s leiad veel võimalusi Thunderbirdi toetamiseks. Proovi uuesti Maksmisvõimalus pole hetkel saadaval Näita lisateavet @@ -49,4 +49,4 @@ Toeta Thunderbirdi Meie eesmärgiks on pakkuda avatud lähtekoodil põhinevat e-postiklienti, mis on turvaline, privaatne ja vaba kõikidele kasutajatele üle maailma. Sinu rahaline toetus aitab seda tööd korraldada. Mis summaga sina täna lööd kaasa? Täname sind suuremeelse annetuse eest! Sinu toetus tugevdab otseselt Thunderbirdi ja me oleme tänulikud, et oled meie kõrval sellel teekonnal. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-eu/strings.xml b/feature/funding/googleplay/src/main/res/values-eu/strings.xml index 39ce5016b42..0b95f23f79d 100644 --- a/feature/funding/googleplay/src/main/res/values-eu/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-eu/strings.xml @@ -9,4 +9,4 @@ Baztertu errorea Bai Orain ez - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-fa/strings.xml b/feature/funding/googleplay/src/main/res/values-fa/strings.xml index 3b55e5d5ee7..01dfff9bebb 100644 --- a/feature/funding/googleplay/src/main/res/values-fa/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-fa/strings.xml @@ -1,5 +1,5 @@ - + پرداخت یک باره حمایت از تاندربرد مشارکت امن @@ -26,7 +26,7 @@ آری اکنون خیر مشارکت درون‌برنامه‌ای در حال حاضر در دسترس نیست. - جهت راه‌های دیگر حمایت از تاندربرد، از www.thunderbird.net بازدید نمایید + جهت راه‌های دیگر حمایت از تاندربرد، از %s بازدید نمایید پرداخت در حال حاضر در دسترس نیست نمایش جزییات بیشتر نادیده گرفتن خطا @@ -49,4 +49,4 @@ حمایت از تاندربرد ماموریت ما ارائه یک برنامه رایانامه متن‌باز است که امن، خصوصی و آزاد برای کاربران در سراسر جهان است. کمک مالی شما از این کار حمایت می‌کند. امروز کمک می‌کنی؟ از کمک سخاوتمندانه شما متشکریم! حمایت شما به طور مستقیم، تاندربرد را تقویت می‌کند و ما از اینکه در این ماجراجویی در کنارمان هستید سپاسگزاریم. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-fi/strings.xml b/feature/funding/googleplay/src/main/res/values-fi/strings.xml index fc9938d567a..325a8401e87 100644 --- a/feature/funding/googleplay/src/main/res/values-fi/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-fi/strings.xml @@ -1,5 +1,5 @@ - + Jatka maksuun Hylkää virhe Tuntematon virhe @@ -12,9 +12,9 @@ Yritä uudelleen Näytä enemmän tietoja Sovelluksen sisäiset lahjoitukset eivät ole tällä hetkellä saatavilla. - Käy osoitteessa www.thunderbird.net nähdäksesi lisää tapoja tukea Thunderbirdiä + Käy osoitteessa %s nähdäksesi lisää tapoja tukea Thunderbirdiä. Tue Thunderbirdiä Tavoitteemme on tarjota avoimen lähdekoodin sähköpostisovellus, joka on turvallinen, yksityinen ja ilmainen kaikille. Taloudellinen tukesi auttaa työtämme. Lahjoitatko tänään? Kyllä Ei nyt - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-fr/strings.xml b/feature/funding/googleplay/src/main/res/values-fr/strings.xml index 2a3ab1d8b25..a6309785850 100644 --- a/feature/funding/googleplay/src/main/res/values-fr/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-fr/strings.xml @@ -1,5 +1,5 @@ - + Don unique Tous les mois Les contributions ne sont pas déductibles fiscalement en tant que dons de bienfaisance. @@ -9,7 +9,7 @@ Poursuivre vers le paiement Modifier les mensualités Soutenir Thunderbird - Rendez-vous sur www.thunderbird.net pour découvrir d’autres façons de soutenir Thunderbird + Rendez-vous sur %s pour découvrir d’autres façons de soutenir Thunderbird. Réessayer Le paiement n’est pas accessible actuellement Faites un autre don remarqué @@ -54,4 +54,4 @@ Nous n’affichons pas de publicités. Nous ne vendons pas vos données. Nous sommes entièrement financés par des utilisatrices et des utilisateurs tels que vous. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-fy/strings.xml b/feature/funding/googleplay/src/main/res/values-fy/strings.xml index df08d192713..5868ed9c470 100644 --- a/feature/funding/googleplay/src/main/res/values-fy/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-fy/strings.xml @@ -1,5 +1,5 @@ - + Trochgean nei ôfrekkenjen Moanliks Bydragen binne net ôflûkber as donaasjes foar goede doelen. @@ -19,7 +19,7 @@ Bûtengewoane moanlikse bydrage Betelling op dit stuit beskikber Bydragen yn de app binne op dit stuit net beskikber. - Besykje www.thunderbird.net foar mear manieren om Thunderbird te stypjen + Besykje %s foar mear manieren om Thunderbird te stypjen. Grutte moanlikse bydrage Opnij probearje Bydragen binne op dit stuit beskikber. @@ -54,4 +54,4 @@ Wy wurde allinnich finansiere troch brûkers lykas jo. Us oprjochte tank oan jo! Thunderbird is fergees en iepen boarne. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-ga/strings.xml b/feature/funding/googleplay/src/main/res/values-ga/strings.xml index 69da7920478..4ea0d1bfa81 100644 --- a/feature/funding/googleplay/src/main/res/values-ga/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-ga/strings.xml @@ -1,5 +1,5 @@ - + Tacaigh le Thunderbird Athraigh íocaíocht mhíosúil Déan cion tairbhe eile @@ -12,7 +12,7 @@ Níl ranníocaíochtaí inasbhainte ó thaobh cánach mar thabhartais charthanachta. Lean ar aghaidh chuig an íocaíocht Níl ranníocaíochtaí in-aip ar fáil faoi láthair. - Tabhair cuairt ar www.thunderbird.net le haghaidh tuilleadh bealaí chun tacaíocht a thabhairt do Thunderbird + Tabhair cuairt ar %s le haghaidh tuilleadh bealaí chun tacaíocht a thabhairt do Thunderbird. Earráid anaithnid Ranníocaíocht Mhíosúil Suntasach Bain triail eile as @@ -54,4 +54,5 @@ Ní thaispeánaimid fógraí. Ní dhíolaimid do shonraí. Tá muid maoinithe ag úsáideoirí cosúil leatsa amháin. - \ No newline at end of file + + diff --git a/feature/funding/googleplay/src/main/res/values-in/strings.xml b/feature/funding/googleplay/src/main/res/values-in/strings.xml index d6545088c7b..c0378a4b143 100644 --- a/feature/funding/googleplay/src/main/res/values-in/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-in/strings.xml @@ -1,5 +1,5 @@ - + Dukung Thunderbird Berikan sekali saja Kontribusi aman @@ -11,7 +11,7 @@ Kami tidak pernah menayangkan iklan atau menjual data Anda. Kami sepenuhnya didanai oleh kontribusi finansial dari para pengguna kami. Jika Anda menyukai Thunderbird, mohon bantu dukung. Kami tidak dapat melakukan ini tanpa Anda! Ulangi Kontribusi dalam aplikasi saat ini tidak tersedia. - Kunjungi www.thunderbird.net untuk mengetahui lebih banyak cara mendukung Thunderbird + Kunjungi %s untuk mengetahui lebih banyak cara mendukung Thunderbird. Lanjutkan ke pembayaran Pembayaran saat ini tidak tersedia Ubah pembayaran bulanan diff --git a/feature/funding/googleplay/src/main/res/values-it/strings.xml b/feature/funding/googleplay/src/main/res/values-it/strings.xml index 6df2b3caa19..b8ea125f037 100644 --- a/feature/funding/googleplay/src/main/res/values-it/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-it/strings.xml @@ -1,5 +1,5 @@ - + Mensile Non mostriamo mai pubblicità né vendiamo i tuoi dati. Siamo finanziati dalle donazioni dei nostri utenti. Se Thunderbird ti piace, allora supportaci. Non potremmo farlo senza di te! Donazione sicura @@ -9,7 +9,7 @@ Dai un altro contributo significativo Pagamento al momento non disponibile Mostra maggiori dettagli - Visita www.thunderbird.net per altre modalità di supporto a Thunderbird + Visita %s per altre modalità di supporto a Thunderbird. Acquisto non andato a buon fine Riprova Errore sconosciuto @@ -49,4 +49,4 @@ Contributo notevole Contributo mensile importante Contributo essenziale - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-iw/strings.xml b/feature/funding/googleplay/src/main/res/values-iw/strings.xml index ec2d2f2d558..51120cf88a3 100644 --- a/feature/funding/googleplay/src/main/res/values-iw/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-iw/strings.xml @@ -1,5 +1,5 @@ - + תמוך בת\'אנדרבירד אנחנו לעולם לא נראה פרסומות או נמכור את הנתונים שלך. אנחנו ממומנים ע\"י תרומות מהמשתמשים שלנו. אם אתה נהנה מת\'אנדרבירד, אנא עזור לתמוך ביישום. אנחנו לא יכולים לעשות זאת בלעדיך! תרומה מאובטחת @@ -19,7 +19,7 @@ אתה עוזר לנו לגרום לדברים גדולים לקרות! תרומה בגובה כזה עוזרת לנו לקחת צעדים משמעותיים קדימה ומאפשרת לנו להמשיך לגדול. בזכותך אנחנו יכולים לעשות את מה שאנחנו עושים! תודות לנדיבותך, אנחנו יכולים לקחת פרוייקטים גדולים יותר ולהגיע לאבני דרך חדשות ביחד. תרומות מתוך היישום לא זמינות כרגע. - בקר ב: www.thunderbird.net לדרכים נוספות בהן תוכל לתמוך בת\'אנדרבירד + בקר ב: %s לדרכים נוספות בהן תוכל לתמוך בת\'אנדרבירד נסה שוב תשלום לא זמין כרגע הצג פרטים נוספים @@ -31,4 +31,4 @@ תרומה ניכרת תודה לכם על תרומתכם הנדיבה! התרומה שלכם מחזרת באופן ישיר את ת\'אנדרבירד, ואנחנו מלאי הכרת תודה על זה שאתם לצידנו במסע הזה. לדחות את השגיאה - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-ja/strings.xml b/feature/funding/googleplay/src/main/res/values-ja/strings.xml index 967dc16fa0a..84e33574615 100644 --- a/feature/funding/googleplay/src/main/res/values-ja/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-ja/strings.xml @@ -1,5 +1,5 @@ - + Thunderbird を支援する 一度だけ 毎月 @@ -11,7 +11,7 @@ Thunderbird を支援する 利用できません 更なる進化に向けてもう一度貢献する - Thunderbird を支援するさまざまな方法は www.thunderbird.net で確認できます + Thunderbird を支援するさまざまな方法は %s で確認できます。 再試行 現在、アプリ内寄付ができません。 詳細を表示 @@ -49,4 +49,4 @@ Significant Contribution Essential Monthly Contribution Valued Monthly Contribution - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-nl/strings.xml b/feature/funding/googleplay/src/main/res/values-nl/strings.xml index 2e711a6cc01..0ecb69b1dcf 100644 --- a/feature/funding/googleplay/src/main/res/values-nl/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-nl/strings.xml @@ -1,5 +1,5 @@ - + Steun Thunderbird Veilige bijdrage Doneer eenmalig @@ -11,7 +11,7 @@ Niets beschikbaar Maandelijkse betaling aanpassen Doe nog een bijdrage met impact - Bezoek www.thunderbird.net voor meer manieren om Thunderbird te steunen + Bezoek %s voor meer manieren om Thunderbird te steunen. Meer details tonen Foutmelding sluiten Onbekende fout @@ -54,4 +54,4 @@ We verkopen uw gegevens niet. We worden alleen gefinancierd door gebruikers zoals u. We tonen geen advertenties. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-nn/strings.xml b/feature/funding/googleplay/src/main/res/values-nn/strings.xml index c28c2a0a5aa..1878a0a4537 100644 --- a/feature/funding/googleplay/src/main/res/values-nn/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-nn/strings.xml @@ -1,5 +1,5 @@ - + Støtt Thunderbird Me viser aldri reklamar eller sel dataen din. Me er fullstendig finansiert av økonomiske bidrag frå brukarane våre. Om du likar Thunderbird, ver vennleg og støtt det. Me kan ikkje gjere dette utan deg! Gå vidare til betaling @@ -11,7 +11,7 @@ Endre månadleg betaling Støtt Thunderbird Gje eit til verknadsfullt bidrag - Besøk www.thunderbird.net for fleire måtar å støtte Thunderbird på + Besøk %s for fleire måtar å støtte Thunderbird på. Lukk feilmelding Ukjend feil Kjøp feila. @@ -49,4 +49,4 @@ Ikkje no Støtt Thunderbird Takk for din generøse donasjon! Din stønad er direkte med på å styrke Thunderbird, og me er glade for å ha deg på sida vår, på denne reisa. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-pl/strings.xml b/feature/funding/googleplay/src/main/res/values-pl/strings.xml index 230db3d6169..09ca57f123b 100644 --- a/feature/funding/googleplay/src/main/res/values-pl/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-pl/strings.xml @@ -1,5 +1,5 @@ - + Bezpieczna wpłata Wpłaty nie podlegają odliczeniu od podatku jako darowizny na cele charytatywne. Przekaż raz @@ -12,7 +12,7 @@ Brak dostępnych Dokonaj kolejnego znaczącego wkładu Możliwość dokonywania wpłat w aplikacji jest obecnie niedostępna. - Odwiedź www.thunderbird.net, aby poznać więcej sposobów na wsparcie Thunderbirda + Odwiedź %s, aby poznać więcej sposobów na wsparcie Thunderbirda. Spróbuj ponownie Płatność obecnie niedostępna Odrzuć błąd @@ -54,4 +54,4 @@ Nie wyświetlamy reklam. Nie sprzedajemy Twoich danych. Jesteśmy finansowani wyłącznie przez użytkowników takich jak Ty. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-pt-rBR/strings.xml b/feature/funding/googleplay/src/main/res/values-pt-rBR/strings.xml index 92033244d24..0d699926dbb 100644 --- a/feature/funding/googleplay/src/main/res/values-pt-rBR/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-pt-rBR/strings.xml @@ -1,5 +1,5 @@ - + Apoie o Thunderbird Contribuições não são deduzíveis em impostos como doações de caridade. Continuar para o pagamento @@ -18,7 +18,7 @@ Compra falhou. Contribuição Essencial Contribuição de Valor - Visite www.thunderbird.net para mais metódos de apoiar o Thunderbird + Visite %s para mais metódos de apoiar o Thunderbird. Ignorar erro Contribuição Significante Pagamento atualmente não disponível @@ -35,4 +35,4 @@ Você é um grande motivo pelo qual nos podemos fazer o que fazemos! Graças a sua generosidade, podemos trabalhar em projetos maiores e chegar em conquistas novas juntos. Seu apoio é realmente inspirador! Graças à sua contribuição substancial, podemos avançar novas barreiras, inovar, e promover grandes passos em direção aos nossos objetivos. Sua contribuição realmente brilha! Você desempenha uma grande parte na nossa missão, nos ajudando a chegar a passos importantes e causar um grande impacto. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-ro/strings.xml b/feature/funding/googleplay/src/main/res/values-ro/strings.xml index fbd3c676c21..37b9fdbf59e 100644 --- a/feature/funding/googleplay/src/main/res/values-ro/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-ro/strings.xml @@ -1,5 +1,5 @@ - + Contribuție securizată Sprijină Thunderbird Plată unică @@ -12,7 +12,7 @@ Contribuțiile nu sunt deductibile fiscal ca donații caritabile. Lunară Contribuțiile în aplicație nu sunt disponibile în prezent. - Vizitați www.thunderbird.net pentru a descoperi mai multe modalități de a sprijini Thunderbird + Vizitați %s pentru a descoperi mai multe modalități de a sprijini Thunderbird. Reîncearcă Plata nu este disponibilă în prezent Afișează mai multe detalii @@ -49,4 +49,4 @@ Nu acum Da Vă mulțumim pentru donația dvs. generoasă! Sprijinul dvs. întărește în mod direct Thunderbird și suntem recunoscători să vă avem alături în această călătorie. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-ru/strings.xml b/feature/funding/googleplay/src/main/res/values-ru/strings.xml index 7717bd8e0fe..0d13e1ed8c7 100644 --- a/feature/funding/googleplay/src/main/res/values-ru/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-ru/strings.xml @@ -1,5 +1,5 @@ - + Поддержка Thunderbird Разово Поддержка Thunderbird @@ -11,7 +11,7 @@ Пожертвования не подлежат налогообложению как благотворительность. Изменить ежемесячный платёж Сделать ещё один важный вклад - Посетите www.thunderbird.net, чтобы узнать о других способах поддержки Thunderbird + Посетите %s, чтобы узнать о других способах поддержки Thunderbird. Повторить Платёж временно недоступен Игнорировать ошибку @@ -54,4 +54,4 @@ Мы финансируемся исключительно такими же пользователями, как вы. Искренняя благодарность от всех нас! Мы не показываем рекламу. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-sq/strings.xml b/feature/funding/googleplay/src/main/res/values-sq/strings.xml index a58ba00ff78..890c8d5273e 100644 --- a/feature/funding/googleplay/src/main/res/values-sq/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-sq/strings.xml @@ -1,5 +1,5 @@ - + Përkrahni Thunderbird-in Përkrahni Thunderbird-in Mujor @@ -13,7 +13,7 @@ Thunderbird-i financohet tërësisht nga kontribute prej përdoruesish si ju. S’shfaqim kurrë reklama, apo të shesim të dhënat tuaja. Nëse ju pëlqen Thunderbird-i, ju lutemi, ndihmoni të përkrahet. Këtë s’e bëjmë dot pa ju! Riprovoni Përkrahja juaj është frymëzuese! Kontributi juaj na ndihmon të shtyhemi më tej dhe të arrijmë synimet tona. - Për më tepër rrugë se si të përkrahet Thunderbird-i, vizitoni www.thunderbird.net + Për më tepër rrugë se si të përkrahet Thunderbird-i, vizitoni %s. Aktualisht s’mund të bëhet pagesa Shfaq më shumë hollësi Hidhe tej gabimin @@ -54,4 +54,4 @@ Financohemi vetëm nga përdorues si ju. S’shesim të dhëna tuajat. Thunderbird është i lirë dhe me burim të hapët. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-sv/strings.xml b/feature/funding/googleplay/src/main/res/values-sv/strings.xml index 7b363604366..ac248df14f9 100644 --- a/feature/funding/googleplay/src/main/res/values-sv/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-sv/strings.xml @@ -1,5 +1,5 @@ - + Stöd Thunderbird Månadsvis Bidrag är inte avdragsgilla som donationer till välgörande ändamål. @@ -14,7 +14,7 @@ Försök igen Köpet misslyckades. Bidrag i appen är för närvarande inte tillgängliga. - Besök www.thunderbird.net för fler sätt att stödja Thunderbird + Besök %s för fler sätt att stödja Thunderbird. Visa fler detaljer Betalning är inte tillgänglig för närvarande Ignorera felet @@ -49,4 +49,4 @@ Ja Vårt uppdrag är att tillhandahålla en e-postapp med öppen källkod som är säker, privat och gratis för användare över hela världen. Ditt ekonomiska bidrag stödjer detta arbete. Kommer du att ge idag? Tack för din generösa donation! Ditt stöd stärker Thunderbird och vi är tacksamma över att ha dig vid vår sida på denna resa. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-tr/strings.xml b/feature/funding/googleplay/src/main/res/values-tr/strings.xml index db2510f9f76..03e657fde24 100644 --- a/feature/funding/googleplay/src/main/res/values-tr/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-tr/strings.xml @@ -1,5 +1,5 @@ - + Thunderbird\'ü Destekleyin Reklam göstermiyoruz veya verilerinizi satmıyoruz. Tamamen kullanıcılarımızın bağışlarıyla finanse ediliyoruz. Thunderbird\'ü beğeniyorsanız lütfen siz de bağış yapın. Siz olmadan başaramayız! Güvenli bağış @@ -12,11 +12,11 @@ Thunderbird’ü yaşatmamıza yardım edin Bağışlarınız vergiden düşülemez. Şu anda uygulama içi bağış yapılamıyor. - Thunderbird\'ü nasıl destekleyebileceğinizi öğrenmek için www.thunderbird.net\'i ziyaret edin + Thunderbird\'ü nasıl destekleyebileceğinizi öğrenmek için %s\'i ziyaret edin. Şu anda ödeme yapılamıyor Yeniden dene Ayrıntıları göster Hatayı kapat Bilinmeyen hata Satın alma başarısız oldu. - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values-zh-rCN/strings.xml b/feature/funding/googleplay/src/main/res/values-zh-rCN/strings.xml index acad389c7dc..93bb021b525 100644 --- a/feature/funding/googleplay/src/main/res/values-zh-rCN/strings.xml +++ b/feature/funding/googleplay/src/main/res/values-zh-rCN/strings.xml @@ -1,5 +1,5 @@ - + 捐款一次 捐款不能作为慈善捐款免税。 继续捐款 @@ -11,7 +11,7 @@ 修改每月捐款 不可用 做出另一项有影响力的贡献 - 访问 www.thunderbird.net 了解更多支持 Thunderbird 的方法 + 访问 %s 了解更多支持 Thunderbird 的方法。 重试 显示更多详情 当前无法捐款 @@ -54,4 +54,4 @@ 我们不会显示广告。 我们不会出售您的数据。 我们的资金完全来自像您这样的用户。 - \ No newline at end of file + diff --git a/feature/funding/googleplay/src/main/res/values/constants.xml b/feature/funding/googleplay/src/main/res/values/constants.xml new file mode 100644 index 00000000000..3ae62bdd6a5 --- /dev/null +++ b/feature/funding/googleplay/src/main/res/values/constants.xml @@ -0,0 +1,5 @@ + + + www.thunderbird.net + https://www.thunderbird.net + diff --git a/feature/funding/googleplay/src/main/res/values/strings.xml b/feature/funding/googleplay/src/main/res/values/strings.xml index e36c251bccd..92285cf5295 100644 --- a/feature/funding/googleplay/src/main/res/values/strings.xml +++ b/feature/funding/googleplay/src/main/res/values/strings.xml @@ -1,5 +1,6 @@ - + + Support Thunderbird Support Thunderbird @@ -14,7 +15,7 @@ Contributions are not tax-deductible as charitable donations. In-app contributions are currently unavailable. - Visit www.thunderbird.net for more ways to support Thunderbird + Visit %s for more ways to support Thunderbird. Retry Continue to payment