You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I always appreciate how convenient your library is.
However, starting from easy_localization_loader v2.0.1, the specification of CsvAssetLoader has changed, and the default behavior has become inconvenient for me.
The Issue
If a single quote is used standalone without enclosing it in double quotes, the text delimiter below that line does not function correctly.
I always appreciate how convenient your library is.
However, starting from easy_localization_loader v2.0.1, the specification of CsvAssetLoader has changed, and the default behavior has become inconvenient for me.
The Issue
If a single quote is used standalone without enclosing it in double quotes, the text delimiter below that line does not function correctly.
Example
I would like it to behave as follows:
key1:
AAA's BBB
key2:
CCC, DDD
However, when I load this CSV with the default settings of CsvAssetLoader (i.e., AutoDetect = true with no arguments), the result is:
key1:
AAA's BBB
key2:
"CCC
This seems to happen because the single quote used standalone in key1 breaks the behavior of the text delimiter in key2, causing it to display "CCC.
Suggestion
Wouldn't it be better if the text delimiter only supported double quotes? Is this behavior intentional?
The text was updated successfully, but these errors were encountered: