Fixed: #2577 Problem with Translator - Missing en jsyntaxpane Bundle

This commit is contained in:
Jindra Petřík
2025-12-06 10:41:05 +01:00
parent d7071c940f
commit 43e347fd3d
3 changed files with 6 additions and 1 deletions

Binary file not shown.

View File

@@ -0,0 +1,4 @@
QuickFindDialog.jLblOccurrences.text = (0)
QuickFindDialog.jLblOccurrences.toolTipText =
QuickFindDialog.jLblOccurences.text = (0)
QuickFindDialog.jLblOccurences.AccessibleContext.accessibleName = Occurences

View File

@@ -770,7 +770,8 @@ public class Translator extends JFrame implements ItemListener {
int missingCount = 0;
int newCount = 0;
int modifiedCount = 0;
for (String key : resourceValues.get(resource).get("en").keySet()) {
LinkedHashMap<String, LinkedHashMap<String,String>> map = resourceValues.get(resource);
for (String key : map.get("en").keySet()) {
if (resourceValues.get(resource).containsKey(locale)
&& resourceValues.get(resource).get(locale).containsKey(key)) {
if (newValues.containsKey(resource)