Package ch.entwine.weblounge.common.site

Examples of ch.entwine.weblounge.common.site.I18nDictionary


   *          optional message arguments
   * @return the message
   */
  private String createMessage(WebloungeRequest request, String msg,
      Object... args) {
    I18nDictionary dictionary = request.getSite().getI18n();
    msg = dictionary.get(msg, request.getLanguage());
    if (args == null || args.length == 0)
      return msg;
    return MessageFormat.format(msg, args);
  }
View Full Code Here


   *
   * @see javax.servlet.jsp.tagext.Tag#doEndTag()
   */
  public int doEndTag() throws JspException {
    try {
      I18nDictionary dictionary = request.getSite().getI18n();
      pageContext.getOut().write(dictionary.getAsHTML(i18nKey, request.getLanguage()));
    } catch (IOException e) {
      throw new JspException(e);
    }
    return super.doEndTag();
  }
View Full Code Here

TOP

Related Classes of ch.entwine.weblounge.common.site.I18nDictionary

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.