我有两个属性文件,例如Foo.properties
和Foo_demo.properties
。 Foo.properties有多个条目。 Foo_demo.propeties覆盖了这些条目的子集。
Foo.properties:
text1 = TXT 1
text2 = TXT 2
text3 = TXT 3
Foo_demo.properties:
text1 = TXT 1 Override
使用翻译模块运行Checkstyle将失败,因为Foo_demo.properties中的条目text2和text3缺少两个翻译。
checkstyle的配置是否允许指定的resourcebundle结构?
背景:这在Wicket应用程序中使用,其中resourcebundles可以使用样式和变体参数进一步参数化,请参阅Wicket i18n