Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Scout/Concepts/Text Provider Service

< Scout‎ | Concepts
Revision as of 03:28, 11 July 2012 by Jeremie.bresson.unblu.com (Talk | contribs) (New page: {{ScoutPage|cat=Shared}} Text Provider Services are services responsible to provide localization for texts in the user interface. A typical application contains a such service contributed...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Scout documentation has been moved to https://eclipsescout.github.io/.

Text Provider Services are services responsible to provide localization for texts in the user interface. A typical application contains a such service contributed by the The Scout documentation has been moved to https://eclipsescout.github.io/..

Description

Note.png
TODO
Add a description


If your implementation of the service extends AbstractDynamicNlsTextProviderService you need to provide the path to your translations properties file by overwriting the getter getDynamicNlsBaseName.

  @Override
  protected String getDynamicNlsBaseName() {
    return "resources.texts.Texts";
  }

See Also

Back to the top