remove ko-fi links

This commit is contained in:
bluepilledgreat 2024-12-08 12:10:50 +00:00
parent a39fc65ec9
commit 59c85da405
4 changed files with 5 additions and 19 deletions

View File

@ -70,7 +70,7 @@ namespace Bloxstrap.Resources {
}
/// <summary>
/// Looks up a localized string similar to These are the people who&apos;ve supported Bloxstrap through [Ko-fi]({0}). A massive thank you to everyone here!
/// Looks up a localized string similar to These are the people who&apos;ve supported Bloxstrap through Ko-fi. A massive thank you to everyone here!
///Every person here is ranked by their overall pledge..
/// </summary>
public static string About_Supporters_Description {
@ -316,7 +316,7 @@ namespace Bloxstrap.Resources {
}
/// <summary>
/// Looks up a localized string similar to Roblox is currently running, but must be closed before uninstalling Bloxstrap. Would you like close Roblox now?.
/// Looks up a localized string similar to Roblox is currently running, but must be closed before uninstalling Bloxstrap. Would you like to close Roblox now?.
/// </summary>
public static string Bootstrapper_Uninstall_RobloxRunning {
get {
@ -1626,15 +1626,6 @@ namespace Bloxstrap.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Support us on Ko-fi!.
/// </summary>
public static string LaunchMenu_Donate {
get {
return ResourceManager.GetString("LaunchMenu.Donate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Launch Roblox.
/// </summary>

View File

@ -1116,7 +1116,7 @@ Check if Roblox works with [the original launcher]({1}). If it doesn't, then thi
<value>Supporters</value>
</data>
<data name="About.Supporters.Description" xml:space="preserve">
<value>These are the people who've supported Bloxstrap through [Ko-fi]({0}). A massive thank you to everyone here!
<value>These are the people who've supported Bloxstrap through Ko-fi. A massive thank you to everyone here!
Every person here is ranked by their overall pledge.</value>
</data>
<data name="JsonManager.SettingsLoadFailed" xml:space="preserve">
@ -1229,10 +1229,6 @@ Would you like to enable test mode?</value>
<value>Install</value>
<comment>The word "Install" is being used as a verb in this instance, like the other navigation button texts of "Next" and "Back"</comment>
</data>
<data name="LaunchMenu.Donate" xml:space="preserve">
<value>Support us on Ko-fi!</value>
<comment>Call-to-action button</comment>
</data>
<data name="Paths.Icons" xml:space="preserve">
<value>Icons</value>
<comment>Name of the folder that gets created according to the "create shortcut icons" option. Ensure that it is a valid folder name.</comment>

View File

@ -15,7 +15,7 @@
Scrollable="True">
<StackPanel Margin="0,0,14,14">
<TextBlock Text="{x:Static resources:Strings.About_Supporters_Title}" FontWeight="Medium" FontSize="24" />
<controls:MarkdownTextBlock MarkdownText="{Binding Source={x:Static resources:Strings.About_Supporters_Description}, Converter={StaticResource StringFormatConverter}, ConverterParameter='https://ko-fi.com/boxerpizza'}" TextWrapping="Wrap" Foreground="{DynamicResource TextFillColorTertiaryBrush}" />
<controls:MarkdownTextBlock MarkdownText="{x:Static resources:Strings.About_Supporters_Description}" TextWrapping="Wrap" Foreground="{DynamicResource TextFillColorTertiaryBrush}" />
<Grid Margin="0,8,0,0">
<Grid.Style>

View File

@ -52,8 +52,7 @@
</Grid>
<StackPanel Grid.Row="1" HorizontalAlignment="Center">
<ui:Hyperlink Icon="QuestionCircle48" Content="{x:Static resources:Strings.About_Title}" Margin="0,0,0,8" Command="{Binding LaunchAboutCommand, Mode=OneTime}" HorizontalAlignment="Center" />
<ui:Hyperlink Icon="Heart48" Content="{x:Static resources:Strings.LaunchMenu_Donate}" NavigateUri="https://ko-fi.com/boxerpizza" HorizontalAlignment="Center" />
<ui:Hyperlink Icon="QuestionCircle48" Content="{x:Static resources:Strings.About_Title}" Command="{Binding LaunchAboutCommand, Mode=OneTime}" HorizontalAlignment="Center" />
</StackPanel>
</Grid>