Skip to content

Commit bf2dc02

Browse files
committed
Patch
1 parent eb714f6 commit bf2dc02

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/Files.App/Strings/en-US/Resources.resw

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2021,6 +2021,9 @@
20212021
<data name="SponsorSubtitle" xml:space="preserve">
20222022
<value>Enjoying Files? Please consider supporting the project on GitHub.</value>
20232023
</data>
2024+
<data name="Sponsor" xml:space="preserve">
2025+
<value>Sponsor</value>
2026+
</data>
20242027
<data name="RateUs" xml:space="preserve">
20252028
<value>Rate us</value>
20262029
</data>

src/Files.App/ViewModels/MainPageViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ private void ExecuteDismissReviewPromptCommand()
357357
private async void ExecuteSponsorCommand()
358358
{
359359
UserSettingsService.ApplicationSettingsService.HasClickedSponsorPrompt = true;
360-
OnPropertyChanged(nameof(ShowReviewPrompt));
360+
OnPropertyChanged(nameof(ShowSponsorPrompt));
361361
await Launcher.LaunchUriAsync(new Uri(Constants.ExternalUrl.SupportUsUrl)).AsTask();
362362
}
363363

src/Files.App/Views/MainPage.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@
386386
HorizontalAlignment="Center"
387387
VerticalAlignment="Bottom"
388388
ActionButtonCommand="{x:Bind ViewModel.SponsorCommand}"
389-
ActionButtonContent="{helpers:ResourceString Name=SponsorUsOnGitHub}"
389+
ActionButtonContent="{helpers:ResourceString Name=Sponsor}"
390390
CloseButtonCommand="{x:Bind ViewModel.DismissSponsorPromptCommand}"
391391
CloseButtonContent="{helpers:ResourceString Name=Dismiss}"
392392
IsOpen="{x:Bind ViewModel.ShowSponsorPrompt, Mode=OneWay}"

0 commit comments

Comments
 (0)