私の国際的なリソースでは、コードは
:post_badge_format = You've earned the "{0}" badge for {1}.
私のJavaで
コード:String messageContent = MessageFormat.format(messageType, paramValues);
messageContent の期待値は次のようになります。
You've earned the "XXX" badge for XXX.
しかし、messageContent の実際の値は次のようになります。
You've earned the "{0}" badge for {1}.
なんで?