-
Notifications
You must be signed in to change notification settings - Fork 131
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
Translation-related improvements and German translation #146
Conversation
41f40eb
to
14076dd
Compare
.gitignore
Outdated
@@ -6,6 +6,7 @@ docs/ | |||
*.autosave | |||
bin/macosx64/Sparkle.framework | |||
bin/macosx64/borg |
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.
oops. i recently killed that subdir because the vorta.spec works more easily in bin/
(not bin/macosx64
).
is it required by sparkle?
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.
Not required. I just keep it there. This entry is redundant anyways due to the bin/*
below.
src/vorta/i18n/__init__.py
Outdated
@@ -13,7 +13,7 @@ def init_translations(app): | |||
global application, translator, locale # if we don't keep a reference on these, it stops working. pyqt bug? | |||
application = app | |||
translator = QTranslator() | |||
locale = QLocale() | |||
locale = QLocale('de') |
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.
used for debugging and forget to remove again?
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.
i used this to debug:
LANG=de_DE vorta --foreground
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.
Yepp. Will use the env-var from now.
Left to do:
|
.gitignore
Outdated
@@ -4,8 +4,7 @@ build/ | |||
dist/ | |||
docs/ | |||
*.autosave | |||
bin/macosx64/Sparkle.framework | |||
bin/macosx64/borg | |||
bin/* |
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.
assuming that the dist/ and docs/ work, no need for the *
?
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.
is docs/ something you are still working on or why is it here?
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.
That's true. And they seem to work. 🎉
/me would push "review EN strings" to next PR. |
No description provided.