do not warn if missing translated language.* names

This commit is contained in:
Anton Keks 2018-12-28 13:29:20 +02:00
parent 52fd789121
commit 4a4f84d715
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="ipscan" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="3.5.4" type="JAVA_MODULE" version="4">
<module external.linked.project.id="ipscan" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="3.5.5" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager">
<output url="file://$MODULE_DIR$/out/production/classes" />
<output-test url="file://$MODULE_DIR$/out/test/classes" />

View File

@ -92,7 +92,7 @@ public final class Labels {
}
catch (MissingResourceException e) {
String text = labelsFallback.getString(key);
LOG.warning("Used fallback label for " + key);
if (!key.startsWith("language.")) LOG.warning("Used fallback label for " + key);
return text;
}
}