Package org.projectforge.core

Examples of org.projectforge.core.Translation


  public String getLabel(final Locale locale)
  {
    if (locale == null || translations == null) {
      return getLabel();
    }
    final Translation translation = getTranslation(locale);
    if (translation != null) {
      return translation.getTranslation();
    }
    return getLabel();
  }
View Full Code Here


    if (locale == null || translations == null) {
      return null;
    }
    String lang = locale.toString().toLowerCase();
    for (int i = 0; i < 4; i++) { // Endless loop protection.
      final Translation translation = getTranslation(lang);
      if (translation != null) {
        return translation;
      }
      final int pos = lang.lastIndexOf('_');
      if (pos > 0) {
View Full Code Here

    return this;
  }

  MenuEntryConfig addTranslation(final Locale locale, final String translation)
  {
    return addTranslation(new Translation(locale, translation));
  }
View Full Code Here

TOP

Related Classes of org.projectforge.core.Translation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.