Package play.i18n

Examples of play.i18n.Lang


    final boolean isSecure = getConfiguration().getBoolean(
        SETTING_KEY_VERIFICATION_LINK_SECURE);
    final String url = routes.Signup.verify(token).absoluteURL(
        ctx.request(), isSecure);

    final Lang lang = Lang.preferred(ctx.request().acceptLanguages());
    final String langCode = lang.code();

    final String html = getEmailTemplate(
        "views.html.account.signup.email.verify_email", langCode, url,
        token, user.getName(), user.getEmail());
    final String text = getEmailTemplate(
View Full Code Here


    final boolean isSecure = getConfiguration().getBoolean(
        SETTING_KEY_PASSWORD_RESET_LINK_SECURE);
    final String url = routes.Signup.resetPassword(token).absoluteURL(
        ctx.request(), isSecure);

    final Lang lang = Lang.preferred(ctx.request().acceptLanguages());
    final String langCode = lang.code();

    final String html = getEmailTemplate(
        "views.html.account.email.password_reset", langCode, url,
        token, user.name, user.email);
    final String text = getEmailTemplate(
View Full Code Here

    final boolean isSecure = getConfiguration().getBoolean(
        SETTING_KEY_VERIFICATION_LINK_SECURE);
    final String url = routes.Signup.verify(token).absoluteURL(
        ctx.request(), isSecure);

    final Lang lang = Lang.preferred(ctx.request().acceptLanguages());
    final String langCode = lang.code();

    final String html = getEmailTemplate(
        "views.html.account.email.verify_email", langCode, url, token,
        user.name, user.email);
    final String text = getEmailTemplate(
View Full Code Here

//    }
//
    public static String format(Date date, String pattern) {
      Context ctx = Context.current.get();
      if (ctx != null && ctx.request() != null) {
        Lang lan = play.i18n.Lang.preferred(ctx.request().acceptLanguages());
        return format(date, pattern, lan.language());
      }
      else {
        return format(date, pattern, play.i18n.Lang.defaultLang().language());
      }
    }
View Full Code Here

TOP

Related Classes of play.i18n.Lang

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.