We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05fc589 commit b1f25faCopy full SHA for b1f25fa
TranslateXML/MainWindow.xaml.cs
@@ -73,6 +73,9 @@ public MainWindow()
73
item = new ListBoxItem();
74
item.Content = SBpath + "Strings.es.resx";
75
comboBoxInput.Items.Add(item);
76
+ item = new ListBoxItem();
77
+ item.Content = "C:\\Users\\steve\\Documents\\Visual Studio 2019\\Projects\\SmallBasic\\SB-Prime\\SB-Prime\\Properties\\Strings.resx";
78
+ comboBoxInput.Items.Add(item);
79
80
string[] files = Directory.GetFiles(SBpath + "\\lib");
81
foreach (string file in files)
@@ -175,7 +178,7 @@ private void Parse(XmlNode node)
175
178
});
176
179
}
177
180
- Parse(child);
181
+ if (child.Name != "resheader") Parse(child);
182
183
184
0 commit comments