What steps will reproduce the problem?
1. Create a properties file with a simple key,value (not complex)
2. Get the property value
3. The value is returned as a string and not an array
What is the expected output? What do you see instead?
Value of the specified key should be returned as an array
What version of the product are you using? On what operating system?
1.0.9
Please provide any additional information below.
Easily fixed by changing the following code in $.i18n.prop:
if (value.lengh == 1 && typeof(value[0]) == "string")
return value[0];
TO:
if (value.length == 1 && typeof(value[0]) == "string")
return value[0];
Original issue reported on code.google.com by shefali....@gmail.com on 17 Sep 2013 at 11:19
Original issue reported on code.google.com by
shefali....@gmail.com
on 17 Sep 2013 at 11:19