Skip to content

Commit b1f25fa

Browse files
committed
updates for sb-prime
1 parent 05fc589 commit b1f25fa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

TranslateXML/MainWindow.xaml.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ public MainWindow()
7373
item = new ListBoxItem();
7474
item.Content = SBpath + "Strings.es.resx";
7575
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);
7679

7780
string[] files = Directory.GetFiles(SBpath + "\\lib");
7881
foreach (string file in files)
@@ -175,7 +178,7 @@ private void Parse(XmlNode node)
175178
});
176179
}
177180
}
178-
Parse(child);
181+
if (child.Name != "resheader") Parse(child);
179182
}
180183
}
181184

0 commit comments

Comments
 (0)