Skip to content

Commit 4d50381

Browse files
fix string not being localised
1 parent 950277d commit 4d50381

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

Bloxstrap/Resources/Strings.Designer.cs

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Bloxstrap/Resources/Strings.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,4 +1493,7 @@ Defaulting to {1}.</value>
14931493
<data name="Menu.Integrations.MultiInstanceLaunching.Description" xml:space="preserve">
14941494
<value>Allows for having more than one Roblox game client instance open simultaneously.</value>
14951495
</data>
1496+
<data name="CustomTheme.Editor.Save.Success.Description" xml:space="preserve">
1497+
<value>Your theme has been saved!</value>
1498+
</data>
14961499
</root>

Bloxstrap/UI/ViewModels/Editor/BootstrapperEditorWindowViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private void Save()
6464
{
6565
File.WriteAllText(path, Code);
6666
CodeChanged = false;
67-
ThemeSavedCallback.Invoke(true, "Your theme has been saved!");
67+
ThemeSavedCallback.Invoke(true, Strings.CustomTheme_Editor_Save_Success_Description);
6868
}
6969
catch (Exception ex)
7070
{

0 commit comments

Comments
 (0)