-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Special characters in properties #97
Comments
Hey, can you give an example for which special characters get converted into unicode characters? Unicode is more or less the standard so I would also be really interested how this breaks your application? 🙂 |
We have characters like Æ Ø Å and other special languagespecific characters (like Chinese signs). å fx. get's converted to \u00e5 and ø to \u00f8. We expect those to come out as Æ Ø Å, both in keys as well as values. In why this breaks our application, then it's because it can't find the key when a character is converted. If you still want the conversion, maybe it could be a setting on the export config? |
Sorry for the late response. The library we are using for exporting it to a Java Maybe there is a way it also works with escaped characters in your project as it seems to be best practice? |
Hey!
I have the issue that my special characters gets converted into unicode characters, and that will not work in our application.
Is there a way to bypass this? Or is there going to be a way to bypass this?
It's currently converting both keys and translations. (Notice I am using java properties files)
FYI; We are using self-hosted docker version.
The text was updated successfully, but these errors were encountered: