mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
[187608] fix for message file lookup problem
This commit is contained in:
parent
d74c44458a
commit
feb24c7ed7
1 changed files with 2 additions and 2 deletions
|
@ -365,9 +365,9 @@ public abstract class SystemBasePlugin extends AbstractUIPlugin
|
||||||
String country = locale.getCountry();
|
String country = locale.getCountry();
|
||||||
candidates.push("/" + name); //$NON-NLS-1$
|
candidates.push("/" + name); //$NON-NLS-1$
|
||||||
if (language.length() > 0) {
|
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) {
|
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) {
|
while (!candidates.isEmpty() && result == null) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue