Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c92ce0c1 authored by Wolf-Martell Montwé's avatar Wolf-Martell Montwé Committed by Philipp Kewisch
Browse files

Change funding strings for K-9

parent 737d9708
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <!-- These are the funding feature overwrites that are K-9 specific -->
    <string name="funding_googleplay_contribution_title">Support K-9 Mail</string>
    <string name="funding_googleplay_contribution_header_title">Support K-9 Mail</string>
    <string name="funding_googleplay_contribution_header_description">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!</string>
    <string name="funding_googleplay_contribution_header_thank_you_message">Your contribution furthers the development of secure, private and open-source email. We are truly grateful to have you with us!</string>
    <string name="funding_googleplay_contribution_list_empty_message">K-9 Mail is developed by Thunderbird.\nVisit www.thunderbird.net for more ways to support our work.</string>
    <string name="funding_googleplay_contribution_reminder_title">Support K-9 Mail</string>
</resources>
+7 −4
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ internal fun ContributionHeader(
                    logo = GoldenHearthSunburst,
                    title = ContributionIdStringMapper.mapToContributionTitle(contribution.id),
                    description = ContributionIdStringMapper.mapToContributionDescription(contribution.id),
                    thankYou = stringResource(R.string.funding_googleplay_contribution_header_thank_you_message),
                    showThankYou = true,
                    benefits = ContributionIdStringMapper.mapToContributionBenefits(contribution.id),
                    modifier = modifier,
                )
@@ -68,7 +68,7 @@ private fun ContributionHeaderView(
    title: String,
    description: String,
    modifier: Modifier = Modifier,
    thankYou: String? = null,
    showThankYou: Boolean = false,
    benefits: ImmutableList<String> = persistentListOf(),
) {
    Column(
@@ -96,9 +96,12 @@ private fun ContributionHeaderView(
            textAlign = TextAlign.Center,
        )

        if (thankYou != null) {
        if (showThankYou) {
            TextBodyMedium(
                text = thankYou,
                text = stringResource(R.string.funding_googleplay_contribution_header_thank_you),
            )
            TextBodyMedium(
                text = stringResource(R.string.funding_googleplay_contribution_header_thank_you_message),
            )
        }

+3 −2
Original line number Diff line number Diff line
@@ -3,8 +3,9 @@
    <string name="funding_googleplay_contribution_title">Support Thunderbird</string>

    <string name="funding_googleplay_contribution_header_title">Support Thunderbird</string>
    <string name="funding_googleplay_contribution_header_description">We never show advertisements or sell your data. We are fully funded by financial contributions from our users. If you’re enjoying Thunderbird, please help support it.  We can’t do this without you!</string>
    <string name="funding_googleplay_contribution_header_thank_you_message">Thank you for your generous donation! Your support directly strengthens Thunderbird, and we’re grateful to have you by our side on this journey.</string>
    <string name="funding_googleplay_contribution_header_description">Thunderbird is funded entirely by contributions from users like you. We never show ads or sell your data.  If you’re enjoying Thunderbird, please help support it.  We can’t do this without you!</string>
    <string name="funding_googleplay_contribution_header_thank_you">A sincere thank you from all of us!</string>
    <string name="funding_googleplay_contribution_header_thank_you_message">Your contribution furthers the development of Thunderbird and we are truly grateful for your support.</string>

    <string name="funding_googleplay_contribution_list_title">Secure contribution</string>
    <string name="funding_googleplay_contribution_list_type_one_time">Give once</string>