Home
last modified time | relevance | path

Searched refs:nonTranslated (Results 1 – 4 of 4) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/
H A DResourceTranslator.java76 public static String[] getResourceString(Bundle bundle, String[] nonTranslated, String locale) { in getResourceString() argument
78 return nonTranslated; in getResourceString()
86 String[] translated = new String[nonTranslated.length]; in getResourceString()
87 for (int i = 0; i < nonTranslated.length; i++) { in getResourceString()
88 translated[i] = getResourceString(bundle, nonTranslated[i], resourceBundle); in getResourceString()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/spi/
H A DRegistryStrategy.java407 public String[] translate(String[] nonTranslated, IContributor contributor, String locale) { in translate() argument
408 return nonTranslated; in translate()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/
H A DRegistryStrategyOSGI.java112 public String[] translate(String[] nonTranslated, IContributor contributor, String locale) { in translate() argument
113 …ceTranslator.getResourceString(ContributorFactoryOSGi.resolve(contributor), nonTranslated, locale); in translate()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/
H A DExtensionRegistry.java1397 public String[] translate(String[] nonTranslated, IContributor contributor, String locale) { in translate() argument
1398 return strategy.translate(nonTranslated, contributor, locale); in translate()