我正在使用bean验证和i18n的gettext。如何标记要翻译的消息字符串,以便使用xgettext提取它? 例如
@NotNull(message="Please enter a valid string")
String string;
Normall我打电话给i18n.tr,但是如何标记常数?
亲切的问候 基督教
编辑: 在运行时,我使用自定义消息插补器进行翻译。
答案 0 :(得分:1)
您可以尝试构建一个委托给gettext的custom MessageInterpolator。如果您正在使用Hibernate Validator,从ResourceBundleMessageInterpolator派生插补器实现以重新使用实际插值逻辑可能是有意义的。
那就是说,我对这个结果非常感兴趣。也许你可以分享你最终采取的方法?我可以想象这对其他人来说也很有趣。
答案 1 :(得分:1)
我通常不会回答我自己的问题。但是现在我提出了以下解决方案:
我在另外的评论中将我的字符串标记如下(我不再知道DRY):
//_.trans("Please enter a valid string");
@NotNull(message="Please enter a valid string")
String string;
我在我的pom中调用以下脚本:
#!/bin/bash
# $1 -> java source directory
# $2 -> output file
# $3 -> po directory
echo "Source Directory: $1"
echo "Keys File: $2"
echo "PO Directory: $3"
xgettext --from-code utf-8 -L Java --force-po -ktrc:1c,2 -ktrnc:1c,2,3 -ktr -kmarktr -ktrn:1,2 -k -o "$2" $(find "$1" -name "*.java")
sed "s/\/\/_/_/g" $(find "$1" -name "*.java") | xgettext -F --from-code utf-8 -L Java -ktrans -k -j -o "$2" -
pofiles=$3/*.po
shopt -s nullglob
for i in $pofiles
do
echo "msgmerge $i"
msgmerge --backup=numbered -U $i $2
done
此脚本首先正常调用xgettext,然后调用sed将注释斜杠和管道删除到xgettext。因此,我把所有钥匙都放在了钥匙上。
pom.xml - 个人资料:
<profile>
<id>translate</id>
<build>
<plugins>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>1.2.1</version>
<executions>
<execution>
<id>xgettext</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>sh</executable>
<arguments>
<argument>${project.basedir}/extractkeys.sh</argument>
<argument>src/main/java</argument>
<argument>src/main/resources/po/keys.pot</argument>
<argument>src/main/resources/po</argument>
</arguments>
<workingDirectory>${project.basedir}</workingDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.xnap.commons</groupId>
<artifactId>maven-gettext-plugin</artifactId>
<version>1.2.3</version>
<configuration>
<keysFile>${project.basedir}/src/main/resources/po/keys.pot</keysFile>
<outputDirectory>${project.basedir}/src/main/resources</outputDirectory>
<outputFormat>properties</outputFormat>
<poDirectory>${project.basedir}/src/main/resources/po</poDirectory>
<sourceDirectory>${project.build.sourceDirectory}/ch/sympany/tourist</sourceDirectory>
<sourceLocale>en</sourceLocale>
<targetBundle>${project.groupId}.Messages</targetBundle>
</configuration>
<executions>
<execution>
<goals>
<goal>dist</goal>
</goals>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
我知道构建不再是平台独立的,但在一个单独的配置文件中我可以忍受它。然而,它也适用于windows家伙的cygwin。
我的消息插播器如下:
public class GettextMessageInterpolator implements MessageInterpolator {
private final MessageInterpolator delegate;
public GettextMessageInterpolator() {
this.delegate = new ResourceBundleMessageInterpolator();
}
@Override
public String interpolate(String message, Context context) {
return this.interpolate(message, context, ClientLocalLocator.get());
}
@Override
public String interpolate(String message, Context context, Locale locale) {
I18n i18n = ClientLocalLocator.getI18n();
String retVal = i18n.tr(message);
if (StringUtils.isNotBlank(retVal))
return retVal;
return delegate.interpolate(message, context, locale);
}
}
答案 2 :(得分:0)
我不确定gettext与Java的集成。也许你可以解释它的工作原理。
从Bean验证的角度来看,i18n是通过资源文件处理的。您可以执行以下操作,而不是直接将消息添加到代码中:
@NotNull(message="{my.notNull.message}")
String string;
然后,您可以在 ValidationMessages.properties 及其语言特定的计数器部分中定义消息。不知道gettext如何适合这里的图片。
修改强>:
如果您真的想使用 xgettext ,我会看到问题,因为gettext会查找 gettext(“whatever”)形式的标记。您可以通过xgettext执行的操作是通过-k选项为 gettext 指定不同的关键字。但是,在这种情况下,这无济于事。如果您通过命令行完成所有这些操作,我可以想象您使用 sed 来预先填充 xgettext 的输入。类似的东西:
find . -name "*.java" | xargs sed -e 's/message="\(.*\)"/gettext("\1")/' | xgettext
像这样。