Skip to content

Commit

Permalink
Include app source in funding URL
Browse files Browse the repository at this point in the history
  • Loading branch information
kewisch committed Oct 24, 2024
1 parent 1bf4fe5 commit be733aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app-thunderbird/src/main/res/values/constants.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>
<string name="app_webpage_url" translatable="false">https://www.thunderbird.net/mobile</string>
<string name="user_forum_url" translatable="false">https://support.mozilla.org/products/thunderbird-android</string>
<string name="funding_url" translatable="false">https://www.thunderbird.net/donate/mobile/?form=tfa</string>
<string name="funding_url" translatable="false">https://www.thunderbird.net/donate/mobile/?form=tfa&amp;utm_source=%s&amp;utm_medium=android_app&amp;utm_campaign=inapp_appeal_v1</string>
<string name="message_header_mua" translatable="false">Thunderbird for Android</string>
<string name="app_authors_url" translatable="false">https://github.com/thunderbird/thunderbird-android/graphs/contributors</string>
<string name="app_source_url" translatable="false">https://github.com/thunderbird/thunderbird-android</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class SettingsListFragment : Fragment(), ItemTouchCallback {
FundingType.LINK -> {
addUrlAction(
text = getString(R.string.settings_list_action_support, brandNameProvider.brandName),
url = getString(R.string.funding_url),
url = getString(R.string.funding_url, requireContext().getPackageName()),
icon = Icons.Outlined.Favorite,
)
}
Expand Down
2 changes: 1 addition & 1 deletion legacy/ui/legacy/src/main/res/values/constants.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>
<string name="app_webpage_url" translatable="false">https://k9mail.app/</string>
<string name="user_forum_url" translatable="false">https://forum.k9mail.app/</string>
<string name="funding_url" translatable="false">https://www.thunderbird.net/donate/mobile/?form=tfa</string>
<string name="funding_url" translatable="false">https://www.thunderbird.net/donate/mobile/?form=tfa&amp;utm_source=%s&amp;utm_medium=android_app&amp;utm_campaign=inapp_appeal_v1</string>
<string name="message_header_mua" translatable="false">K-9 Mail for Android</string>
<string name="app_authors_url" translatable="false">https://github.com/thunderbird/thunderbird-android/graphs/contributors</string>
<string name="app_source_url" translatable="false">https://github.com/thunderbird/thunderbird-android</string>
Expand Down

0 comments on commit be733aa

Please sign in to comment.