Skip to content

Commit a909450

Browse files
committed
edit: files
1 parent 32878bb commit a909450

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.idea/.idea.Language_Change_Tools/.idea/AndroidProjectSystem.xml

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

Assets/Code/Localization/Editor/LocalizationEditorWindow.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class LocalizationEditorWindow : OdinEditorWindow
1616
{
1717
private const string LocalizationFolder = "Assets/Code/Localization/Intro/Resources/Localization";
1818

19-
[MenuItem("Tools/Localization Editor 🈺")]
19+
[MenuItem("Tools/Localization Editor Window")]
2020
private static void OpenWindow()
2121
{
2222
LocalizationEditorWindow window = GetWindow<LocalizationEditorWindow>();
@@ -291,7 +291,8 @@ private void LoadLocalizationFile()
291291
string[] lines = File.ReadAllLines(path);
292292
foreach (var line in lines)
293293
{
294-
if (string.IsNullOrWhiteSpace(line) || line.StartsWith("#")) continue;
294+
if (string.IsNullOrWhiteSpace(line) || line.StartsWith("#"))
295+
continue;
295296

296297
string[] pair = line.Split(new[] { '=' }, 2);
297298
if (pair.Length == 2)

0 commit comments

Comments
 (0)