Don’t know if this should be reported as a bug or a feature request but, when I do this:```
i18n.getI18NMessage(‘2.message.itemsquestion’, new Array(count))
Would it be possible to use integers here too?
Don’t know if this should be reported as a bug or a feature request but, when I do this:```
i18n.getI18NMessage(‘2.message.itemsquestion’, new Array(count))
Would it be possible to use integers here too?
if you do this in javascript like this:
Array array = new Array(integer)
you don’t have an array like this:
array[0] == the integer value
but you have an array that has the size of the integer!!
for one integer you have to do this:
Array array = new Array(1);
array[0] = integer;
Thanks Johan, should have realized that