-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add features to installation management #40
Conversation
While the language picker technically works, the installation management screen texts don't change, because they were not translated. |
@@ -98,15 +98,36 @@ | |||
<div class="dialog-container z-10 pt-10" style="display: flex"> | |||
<p>{{ languages.BACKEND_TERMS_AND_CONDITIONS }}</p> | |||
</div> | |||
<!-- Change Language Settings --> | |||
<div class="place-content-end flex gap-2"> | |||
<drop-selector :array="i18n.languageOptions" @change="i18n.changeLanguage" class="max-w-40"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The language picker should probably be extracted into a component
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Using an LLM, I updated all language components to German. Also, I added the language mapping to display the current backend status in the corresponding language. |
1ac6009
to
ebf8cbf
Compare
Signed-off-by: julianbollig <[email protected]>
…e style of the Basic tab Signed-off-by: julianbollig <[email protected]>
…nal vue file Signed-off-by: julianbollig <[email protected]>
f1a4c48
to
c38aa8e
Compare
Added a drop-down menu to choose the language and a button to open the dev tools in InstallationManagement. Also slightly changed the style in the Basic tab.