Hardcode strings for debug options

these weren't supposed to be put in community translations
This commit is contained in:
pizzaboxer 2024-06-29 22:57:25 +04:00
parent 8fd3fd7737
commit b3a8691b29
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8
3 changed files with 8 additions and 94 deletions

View File

@ -1950,7 +1950,7 @@ namespace Bloxstrap.Resources {
}
/// <summary>
/// Looks up a localized string similar to Selecting this will prevent anything configured here from being applied to Roblox..
/// Looks up a localized string similar to Disabling this will prevent anything configured here from being applied to Roblox..
/// </summary>
public static string Menu_FastFlags_ManagerEnabled_Description {
get {
@ -2012,69 +2012,6 @@ namespace Bloxstrap.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Show values of specified flags during runtime. Each flag is comma separated..
/// </summary>
public static string Menu_FastFlags_Presets_Debug_FlagStateOverlay_Description {
get {
return ResourceManager.GetString("Menu.FastFlags.Presets.Debug.FlagStateOverlay.Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Flag state overlay.
/// </summary>
public static string Menu_FastFlags_Presets_Debug_FlagStateOverlay_Title {
get {
return ResourceManager.GetString("Menu.FastFlags.Presets.Debug.FlagStateOverlay.Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Set blank if not using a proxy. Don&apos;t forget to add cacert.pem as a mod..
/// </summary>
public static string Menu_FastFlags_Presets_Debug_HttpProxyAddress_Description {
get {
return ResourceManager.GetString("Menu.FastFlags.Presets.Debug.HttpProxyAddress.Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HTTP proxy address.
/// </summary>
public static string Menu_FastFlags_Presets_Debug_HttpProxyAddress_Title {
get {
return ResourceManager.GetString("Menu.FastFlags.Presets.Debug.HttpProxyAddress.Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enables logging of HTTP requests (DFLogHttpTraceLight=12)..
/// </summary>
public static string Menu_FastFlags_Presets_Debug_HttpRequestLogging_Description {
get {
return ResourceManager.GetString("Menu.FastFlags.Presets.Debug.HttpRequestLogging.Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HTTP request logging.
/// </summary>
public static string Menu_FastFlags_Presets_Debug_HttpRequestLogging_Title {
get {
return ResourceManager.GetString("Menu.FastFlags.Presets.Debug.HttpRequestLogging.Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Debug.
/// </summary>
public static string Menu_FastFlags_Presets_Debug_Title {
get {
return ResourceManager.GetString("Menu.FastFlags.Presets.Debug.Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable player shadows.
/// </summary>

View File

@ -735,29 +735,6 @@ Do NOT use this to import large "flag lists" made by other people that promise t
<data name="Menu.FastFlags.Presets.D3DExclusiveFullscreenInfo" xml:space="preserve">
<value>Direct3D [exclusive fullscreen]({0}) using Alt+Enter is enabled by default.</value>
</data>
<data name="Menu.FastFlags.Presets.Debug.FlagStateOverlay.Description" xml:space="preserve">
<value>Show values of specified flags during runtime. Each flag is comma separated.</value>
</data>
<data name="Menu.FastFlags.Presets.Debug.FlagStateOverlay.Title" xml:space="preserve">
<value>Flag state overlay</value>
</data>
<data name="Menu.FastFlags.Presets.Debug.HttpProxyAddress.Description" xml:space="preserve">
<value>Set blank if not using a proxy. Don't forget to add cacert.pem as a mod.</value>
<comment>Do not translate "cacert.pem"</comment>
</data>
<data name="Menu.FastFlags.Presets.Debug.HttpProxyAddress.Title" xml:space="preserve">
<value>HTTP proxy address</value>
</data>
<data name="Menu.FastFlags.Presets.Debug.HttpRequestLogging.Description" xml:space="preserve">
<value>Enables logging of HTTP requests (DFLogHttpTraceLight=12).</value>
<comment>Do not translate "DFLogHttpTraceLight"</comment>
</data>
<data name="Menu.FastFlags.Presets.Debug.HttpRequestLogging.Title" xml:space="preserve">
<value>HTTP request logging</value>
</data>
<data name="Menu.FastFlags.Presets.Debug.Title" xml:space="preserve">
<value>Debug</value>
</data>
<data name="Menu.FastFlags.Presets.EscapeMenuVersion.Title" xml:space="preserve">
<value>Preferred escape menu version</value>
</data>

View File

@ -29,23 +29,23 @@
</controls:OptionControl>
<StackPanel Visibility="{Binding ShowDebugFlags, Mode=OneTime}">
<TextBlock Text="{x:Static resources:Strings.Menu_FastFlags_Presets_Debug_Title}" FontSize="20" FontWeight="Medium" Margin="0,16,0,0" />
<TextBlock Text="Debug" FontSize="20" FontWeight="Medium" Margin="0,16,0,0" />
<controls:OptionControl
Header="{x:Static resources:Strings.Menu_FastFlags_Presets_Debug_HttpRequestLogging_Title}"
Description="{x:Static resources:Strings.Menu_FastFlags_Presets_Debug_HttpRequestLogging_Description}">
Header="HTTP request logging"
Description="Enables logging of HTTP requests (DFLogHttpTraceLight=12).">
<ui:ToggleSwitch IsChecked="{Binding HttpRequestLogging, Mode=TwoWay}" />
</controls:OptionControl>
<controls:OptionControl
Header="{x:Static resources:Strings.Menu_FastFlags_Presets_Debug_HttpProxyAddress_Title}"
Description="{x:Static resources:Strings.Menu_FastFlags_Presets_Debug_HttpProxyAddress_Description}">
Header="HTTP proxy address"
Description="Set blank if not using a proxy. Don't forget to add cacert.pem as a mod.">
<ui:TextBox Margin="5,0,0,0" Padding="10,5,10,5" Width="200" Text="{Binding HttpRequestProxy, Mode=TwoWay}" />
</controls:OptionControl>
<controls:OptionControl
Header="{x:Static resources:Strings.Menu_FastFlags_Presets_Debug_FlagStateOverlay_Title}"
Description="{x:Static resources:Strings.Menu_FastFlags_Presets_Debug_FlagStateOverlay_Description}">
Header="Flag state overlay"
Description="Show values of specified flags during runtime. Each flag is comma separated.">
<ui:TextBox Margin="5,0,0,0" Padding="10,5,10,5" Width="200" Text="{Binding StateOverlayFlags, Mode=TwoWay}" />
</controls:OptionControl>
</StackPanel>