gpt4 book ai didi

jsf-2 - 如何本地化 p :captcha

转载 作者:行者123 更新时间:2023-12-02 18:33:33 24 4
gpt4 key购买 nike

我想为 PrimeFaces 创建本地化 <p:captcha>成分。我知道如何使用 requiredMessage 本地化验证错误消息或validatorMessage属性如下:

<p:captcha label="Captcha" theme="clean" requiredMessage="#{msg['primefaces.captcha.INVALID']}" validatorMessage="#{msg['primefaces.tree.REQUIRED']}"/>

问题是我不知道如何本地化,例如标签(如下图所示)

Example validation

所以我需要本地化点 1) 和 2) 以及当用户悬停任何按钮时显示的工具提示。如果 reCaptcha 可以使用某种本地化字典(第三点),那就太好了,但我怀疑这是可能的,而且它确实是可选的。 I know that reCaptcha has few supported languages但不幸的是我的(PL - 波兰语)不受支持......

最佳答案

只需向验证码标签添加一个语言属性

<p:captcha language="pl" />

如果您有一个存储用户语言的 session bean,您也可以使用它,例如:

<p:captcha language="#{userSessionBean.locale}" />

bean :

@ManagedBean
@SessionScoped
public class UserSessionBean {
private Locale locale;

public Locale getLocale(){ return locale; }
public void setLocale(Locale locale) { this.locale = locale; }
}

关于jsf-2 - 如何本地化 p :captcha,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21705729/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com