-
-
Notifications
You must be signed in to change notification settings - Fork 285
Change the language on-the-fly (no restart) #6859
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
Open
mohsenD98
wants to merge
7
commits into
master
Choose a base branch
from
runtime-language-switching
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c018c8a
Add runtime language switching without restart.
mohsenD98 f7f467d
Add TranslatorManager for runtime language switching
mohsenD98 44f5d76
Convert TranslatorManager to singleton QObject owning translators.
mohsenD98 9e08a53
Use unique_ptr for translator instances and make manager non-copyable.
mohsenD98 9e99e0b
Fix system language (i.e. empty string) handling
nirvn 4b7a1bc
Reset QgsApplication translation to system locale name when passing o…
nirvn ac7d7b5
Address review.
mohsenD98 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| /*************************************************************************** | ||
| translatormanager.cpp - TranslatorManager | ||
|
|
||
| --------------------- | ||
| begin : June 2025 | ||
| copyright : (C) 2025 by Mohsen Dehghanzadeh | ||
| email : [email protected] | ||
| *************************************************************************** | ||
| * * | ||
| * This program is free software; you can redistribute it and/or modify * | ||
| * it under the terms of the GNU General Public License as published by * | ||
| * the Free Software Foundation; either version 2 of the License, or * | ||
| * (at your option) any later version. * | ||
| * * | ||
| ***************************************************************************/ | ||
| #include "translatormanager.h" | ||
|
|
||
| #include <QTranslator> | ||
|
|
||
| TranslatorManager::TranslatorManager() | ||
| : mQFieldTranslator( std::make_unique<QTranslator>() ) | ||
| , mQtTranslator( std::make_unique<QTranslator>() ) | ||
| { | ||
| } | ||
|
|
||
| QTranslator *TranslatorManager::qfieldTranslator() | ||
| { | ||
| return mQFieldTranslator.get(); | ||
| } | ||
|
|
||
| QTranslator *TranslatorManager::qtTranslator() | ||
| { | ||
| return mQtTranslator.get(); | ||
| } | ||
|
|
||
| TranslatorManager *TranslatorManager::instance() | ||
| { | ||
| static TranslatorManager *sInstance = new TranslatorManager(); | ||
| return sInstance; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| /*************************************************************************** | ||
| translatormanager.h - TranslatorManager | ||
|
|
||
| --------------------- | ||
| begin : June 2025 | ||
| copyright : (C) 2025 by Mohsen Dehghanzadeh | ||
| email : [email protected] | ||
| *************************************************************************** | ||
| * * | ||
| * This program is free software; you can redistribute it and/or modify * | ||
| * it under the terms of the GNU General Public License as published by * | ||
| * the Free Software Foundation; either version 2 of the License, or * | ||
| * (at your option) any later version. * | ||
| * * | ||
| ***************************************************************************/ | ||
|
|
||
| #ifndef TRANSLATORMANAGER_H | ||
| #define TRANSLATORMANAGER_H | ||
|
|
||
| #include <memory> | ||
|
|
||
| class QTranslator; | ||
|
|
||
| /** | ||
| * \brief Provides access to shared translator instances for runtime language switching. | ||
| * | ||
| * Translators are shared between startup (main.cpp) and runtime switching (AppInterface::changeLanguage). | ||
| * \ingroup core | ||
| */ | ||
| class TranslatorManager | ||
| { | ||
| public: | ||
| //! Constructor | ||
| TranslatorManager(); | ||
|
|
||
| //! Copy constructor is deleted (singleton pattern) | ||
| TranslatorManager( const TranslatorManager & ) = delete; | ||
|
|
||
| //! Assignment operator is deleted (singleton pattern) | ||
| TranslatorManager &operator=( const TranslatorManager & ) = delete; | ||
|
|
||
| //! Returns the global QField translator instance. | ||
| QTranslator *qfieldTranslator(); | ||
|
|
||
| //! Returns the global Qt framework translator instance. | ||
| QTranslator *qtTranslator(); | ||
|
|
||
| //! Returns the singleton instance of TranslatorManager. | ||
| static TranslatorManager *instance(); | ||
|
|
||
| private: | ||
| std::unique_ptr<QTranslator> mQFieldTranslator; | ||
| std::unique_ptr<QTranslator> mQtTranslator; | ||
| }; | ||
|
|
||
| #endif // TRANSLATORMANAGER_H | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.