I am trying to setup Localization in NGUI but am having some issues. I prefer to have my languages in separate files like "English.txt" and "Français.txt". I have taking the NGUI example 10 and tried to replace the CSV file with 2 separate files but with same content, but when doing so the localize component can't find the files?
My files look like this (english):
Language = English
Flag = Flag-US
Info = Localization example
Sound = Sound
Music = Music
Desc = English localization
Paragraph = "This example shows how to implement localization using NGUI. In order to localize a widget, simply attach [000000]UILocalize[-] script to it. The script will localize the sprite if it's a [000000]UISprite[-], or the text if it's a [000000]UILabel[-]. If you want to localize something else, just implement the [000000]OnLocalize[-] function. Either way, the actual data is defined via text assets specified on the [000000]Localization[-] script which must be present in the scene."
In the comment inside the scripts it says that I just have to place these files inside the "resources" folder and it will be recognized?
Hoping for help in this matter and thanks in advance :-)