1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

[187608] fix for message file lookup problem

This commit is contained in:
David Dykstal 2007-05-18 03:40:24 +00:00
parent d74c44458a
commit feb24c7ed7

View file

@ -365,9 +365,9 @@ public abstract class SystemBasePlugin extends AbstractUIPlugin
String country = locale.getCountry();
candidates.push("/" + name); //$NON-NLS-1$
if (language.length() > 0) {
candidates.push("/" + language + "/" + name); //$NON-NLS-1$ //$NON-NLS-2$
candidates.push("/nl/" + language + "/" + name); //$NON-NLS-1$ //$NON-NLS-2$
if (country.length() > 0) {
candidates.push("/" + language + "/" + country + "/" + name); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
candidates.push("/nl/" + language + "/" + country + "/" + name); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}
while (!candidates.isEmpty() && result == null) {