MCPcopy Index your code
hub / github.com/processing/processing / text

Method text

app/src/processing/app/Language.java:188–195  ·  view source on GitHub ↗

Get translation from bundles.

(String key)

Source from the content-addressed store, hash-verified

186
187 /** Get translation from bundles. */
188 static public String text(String key) {
189 String value = get(key);
190 if (value == null) {
191 // MissingResourceException and null values
192 return key;
193 }
194 return value;
195 }
196
197
198 static public String interpolate(String key, Object... arguments) {

Callers 15

getPromptMethod · 0.95
rebuildToolbarMenuMethod · 0.95
rebuildImportMenuMethod · 0.95
buildSketchbookTreeMethod · 0.95
populateToolsMenuMethod · 0.95
handleOpenPromptMethod · 0.95
handleCloseMethod · 0.95
handleNewCodeMethod · 0.95

Calls 1

getMethod · 0.95

Tested by

no test coverage detected