Appsilon / shiny.i18n

Shiny applications internationalization made easy
https://appsilon.github.io/shiny.i18n/
Other
168 stars 38 forks source link

Semicolon-separated CSVs #35

Closed oloverm closed 3 years ago

oloverm commented 4 years ago

I just moved to a new country, where they use commas for decimals, so Excel saves CSVs with semicolons as separators. Giving them to the translator doesn't work.

Could there be an argument in to switch between read.csv and read.csv2 (which uses semicolons) in multmerge()? I think that would solve the issue and make the package more internationally friendly. :)

dokato commented 4 years ago

Thanks, @oloverm for letting us know. Embarassingly, in my country, we also use commas for decimals, but I totally forgot about this edge-case. Thanks for the suggestion. This will be fixed soon!

dokato commented 3 years ago

This should be fixed in the latest version now. Soon on CRAN ;)

i18n <- Translator$new(translation_csvs_path = "csvs/", separator_csv = ";")