// Case 1: Localized message is provided by the msgBundle.
List<SoyMsgPart> msgParts = soyMsg.getParts();
if (msgParts.size() > 0) {
SoyMsgPart firstPart = msgParts.get(0);
if (firstPart instanceof SoyMsgPluralPart) {
new PlrselMsgPartsVisitor(node, new ULocale(soyMsg.getLocaleString()))
.visitPart((SoyMsgPluralPart) firstPart);