Open luismanson opened 2 years ago
👋
Please do. Hopefully the frontend code is not to spaghetti. I know strings are thrown around all the places. Even with ternary operators.
react-i18n is 👍 to me!
Hey, What do you think? https://github.com/luismanson/Hemmelig.app/commit/563ffbf7cca9c49f56fd3cfdb1f9522cb0a6def8 it's not very complete, but the basic front strings.
Hey @luismanson, I will look into it today :)
@luismanson added a comment: https://github.com/luismanson/Hemmelig.app/commit/563ffbf7cca9c49f56fd3cfdb1f9522cb0a6def8#commitcomment-83183511
To me it looks great. You do not have to add the loader component for the Suspense, but if you do it would be cool. Feel free to open a PR :)
new PR: https://github.com/HemmeligOrg/Hemmelig.app/pull/83
Thank you for your contribution :)
How would I go about adding more languages? I've created a new file public/locales/de/translation.json
with the updated strings. Do I need to add this new language in src/i18n.js
as well? And does the site itself already have some sort of system language detection or would that still be needed?
Hello, you need to set de
as the default language in src/i18n.js
.
Language switch/detection has not implemented yet.
PS: @bjarneo I'll submit my translation in the next day or so.
If i can figure out at what point the strings are loaded, maybe I can whip up a language detection & automatic switching method. Wish me luck 🤞🏼
check this doc: https://react.i18next.com/latest/using-with-hooks the example has some comments about language detection and file loading
Reopening this issue.
One thing to consider here is to have an option to set the default language for the instance. This can be solved by adding an env var called SECRET_LANGUAGE
. Then add than env var to the client config here: https://github.com/HemmeligOrg/Hemmelig.app/blob/main/config/default.cjs#L63
Which means you can fetch it like this: https://github.com/HemmeligOrg/Hemmelig.app/blob/main/src/client/routes/home/index.js#L51 One important note here is that the config that is imported and used in the frontend, is coming from this file: https://github.com/HemmeligOrg/Hemmelig.app/blob/main/src/client/config.js
Btw, so cool that you guys want to contribute 🎉
I have added you both @luismanson and @RainerZufahl as contributors to this repository. Let me know if something is not right about the settings. Should be allowed to create branches and PRs
Thank you! I've already created a fork of the repo which I'm working in, should I scrap that and create a new branch in this repo?
@rainerzufahl that is up to you, will work either way
Wow, thanks! I'll test if works with the spanish json later today.
automatic language detection & switching is now present via #88.
How should we handle new strings? I think this has to be as transparent as possible.
I noticed later that new strings could be written as t('some_string', 'Some String')
but there are other options as Runtime Extraction and some plugins.
Hm. Interesting. I have to look into this.
But, of course, using t('some.string', 'Default string') is a good start, because that means if a language does not have the translation, it will automatically fallback to the default english string?
Yes, it should. If i understand correctly, this would even work with an empty default LANG setting.
I think that would be the first approach for this. How would runtime extraction and plugins work with create-react-app?
I'll have to look into it, i do not know tbh.
But, of course, using t('some.string', 'Default string') is a good start, because that means if a language does not have the translation, it will automatically fallback to the default english string?
That would mean that the english translations are hardcoded into the program, instead of an external string file, correct? While practical in some ways, that would make adjusting the english strings later on more complicated again.
Yes, that's right, it's a "good start" as @bjarneo called it and we can all agree that hardcoding stuff is a big no-no... However this would allow us to still translate the app without adding too much work at the default strings or new code, this is where some for of extraction/tool could come in handy.
Continuing from #212
SECRET_FORCED_LANGUAGE=??
does not result in the language changing.SECRET_FORCED_LANGUAGE
by default in docker-compose.yml
. If set, use the defined locale.i18n.js
, but that doesn't work either. I think the entire i18next logic is faulty at this time.@bjarneo Any luck trying to find out what's causing this? It's pretty hard to onboard people if there's a language barrier (especially with the knowledge that the translation is in fact already present 😅).
@ltguillaume this PR solves the SECRET_FORCED_LANGUAGE issue: https://github.com/HemmeligOrg/Hemmelig.app/commit/1404f0ac58e82f4e57b275aa0cbda57d89d6f26a
Test with German:
Confirmed working. Next step, proper detection of the browser locale.
Yeah, that would've been something
Yeah, that would've been something
Well, when I looked at the code a while back, it seemed like the logic to do that is already there, but perhaps it doesn't actually get the values from request header to properly evaluate them against the available languages, thus defaulting to English (or SECRET_FORCED_LANGUAGE)?
Any progress with this? Because people can translate all they want, but it doesn't work anyway...
No, I have not looked into this.
I'm sorry I can't be of any help. I've tried to fix the code at least three times now, but I don't really understand how the i18n works with regard to Hemmelig. As a result, I keep having to make assumptions and so far, nothing has worked.
https://github.com/HemmeligOrg/Hemmelig.app/commit/1a9d84e5de509ad46fdcef3ef9b32029225159cb
new release coming soon with this working based off of the browser language
This is in production right now:
That's great, thank you so much! 😁😁
@ltguillaume no worries. Let me know if it does not work as intended. :)
https://github.com/HemmeligOrg/Hemmelig.app/commit/1a9d84e5de509ad46fdcef3ef9b32029225159cb That was it? Damn, now I feel stupid 😛 Gotta say, the documentation is a bit fragmented and together with tutorials I found it was all quite contradictory, but I'm happy it's fixed. Just tested and it works nicely now!
By the way, I found the following:
userInfo.error
, secrets.error
, adminSettings.error
and users.error
are all absent in the translation.json
files and all default to Not logged in
. Should this be merged into a single error string, or do these errors still need to be made more specific in the code?Separate the link and decryption key
, Secret URL without decryption key
and Decryption key
aren't translated.secret.*
when viewing a secret are not translated in the UI (even though the translations are available). So the translations only seem to be used in one page.Yes, that was it. Do not be harsh on yourself. It still has been implemented in a way not needed for Hemmelig as far as I can tell.
As for your bullet points, that is something that has to be looked into.
nl
), it uses the path (e.g. secret
).In /secret
:
Failed to load resource: /locales/secret/translation.json:1
the server responded with a status of 404 ()
In /sigin
:
GET https://hemmelig.my.server/locales/signin/translation.json 404 (Not Found)
MO @ index-d68b782a.js:53
AO @ index-d68b782a.js:53
value @ index-d68b782a.js:53
(anonymous) @ index-d68b782a.js:53
Promise.then (async)
value @ index-d68b782a.js:53
value @ index-d68b782a.js:53
value @ index-d68b782a.js:53
value @ index-d68b782a.js:53
(anonymous) @ index-d68b782a.js:53
value @ index-d68b782a.js:53
value @ index-d68b782a.js:53
value @ index-d68b782a.js:53
d @ index-d68b782a.js:53
value @ index-d68b782a.js:53
h @ index-d68b782a.js:53
setTimeout (async)
value @ index-d68b782a.js:53
(anonymous) @ index-d68b782a.js:53
Right, that makes sense. It should be an easy fix, I do not know the fix, but it should exclude /signin. Probably just a setting somewhere.
Right, that makes sense. It should be an easy fix, I do not know the fix, but it should exclude /signin. Probably just a setting somewhere.
Not just that. It seems to put the route secret/sigin where the language code should be.
Yeah, and this application do not support this kind of routing (yet), so I am unsure if it has ever worked for these routes.
Wait, this is probably just because of detectionMethod = ['path'
. Just remove path
from the array.
Yes, I was thinking about removing this, but forgot to try to do so while fixing the navigator. Removed it now, and looks like that solved it: https://github.com/HemmeligOrg/Hemmelig.app/commit/be6ba9e202ca2dc832052f83258090f9bee2db18 Creating a new release. Great catch!
@ltguillaume v5.16.6
This contains the removal of path.
Yes, I tested it already and it works nicely 🙂
Now everything that faces "normal" end users (create and view secrets) is translatable 😃 except for the errors like Secret not found
or Wrong password!
.
Next is "sign up", "sign in", then the "account" part. These strings are also still hardcoded.
Hi, I'm the guy who asked about translation support in Reddit. Would you consider a PR with some support? Frontend maybe.. I think I can add some basic implementation of react-i18n...