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:
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();
|
||||
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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue