The development branch (2.1.0-dev) has a new filter (loco_locale_plurals) that allows you to change plural rules by manipulating the raw locale data.
The following code will alter Indonesian to use the same plurals as you’ll find in the WordPress core files. (This rule is the same as French, for example).
function fix_indonesian_plurals( array $data, Loco_Locale $locale ){
if( 'id' === $locale->lang ){
$data[0] = 'n > 1';
$data[1] = array('one','other');
}
return $data;
}
add_filter( 'loco_locale_plurals', 'fix_indonesian_plurals', 10, 2 );
I may fix the built-in rules for Indonesian, but first I need to know for certain what they should be.