Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Question around internationalization in QML
QtWS25 Last Chance

Question around internationalization in QML

Scheduled Pinned Locked Moved QML and Qt Quick
21 Posts 7 Posters 16.2k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    kyleplattner
    wrote on last edited by
    #7

    I read the documentation but it is still not clear to me how to deploy an application on a device with several languages and allow the user to navigate between them.

    1 Reply Last reply
    0
    • A Offline
      A Offline
      andre
      wrote on last edited by
      #8

      Do you get how to install a translation in a single language?
      You can use the same technique, except instead of loading the translation based on the locale, as is done in the example in the documentation, you load a translation file in response to a request from your user. The loading is the same, just the timing and the way you select the correct file to load will differ. If you are asking for ready-to-use code: I am sorry, I am not going to write it for you.

      1 Reply Last reply
      0
      • K Offline
        K Offline
        kyleplattner
        wrote on last edited by
        #9

        Should each of my qml files have qm file? Do I have to load each of those individually?

        1 Reply Last reply
        0
        • A Offline
          A Offline
          andre
          wrote on last edited by
          #10

          No, you make one per language for your whole project.

          1 Reply Last reply
          0
          • M Offline
            M Offline
            mbarclaygmail.com
            wrote on last edited by
            #11

            I am struggling with dynamic translation in QML as well. I can install new QM files, but I only get a translated UI on new Items that get loaded after the QM is installed. All existing items remain untranslated. Theoretically, the QDeclarativeView receives a changeEvent(LanguageChange) when the translation is installed, but changeEvent() hasn't been reimplemented in QDeclarativeView yet. Hopefully that feature will be added soon. For now, after you install the new translation file, you'll have to reload all of your text manually, i.e. using a Loader or some other mechanism.

            1 Reply Last reply
            0
            • K Offline
              K Offline
              kyleplattner
              wrote on last edited by
              #12

              Good to know I am not the only one struggling through it. Let me know if you find a good solution.

              Kyle

              1 Reply Last reply
              0
              • A Offline
                A Offline
                andre
                wrote on last edited by
                #13

                May I suggest filing a bugreport in "Jira":http://bugreports.qt.nokia.com? I considder it a bug that dynamic translation doesn't work with QDeclarativeView.

                1 Reply Last reply
                0
                • M Offline
                  M Offline
                  mbarclaygmail.com
                  wrote on last edited by
                  #14

                  Great idea!

                  "QTBUG-16827":http://bugreports.qt.nokia.com/browse/QTBUG-16827

                  It kind of makes sense to me that it wouldn't be translated. e.g.

                  @
                  Text{
                  id: myTxt
                  text: qsTr("Translate Me")
                  }
                  @

                  When the above Text is created, qsTr() is script code that gets executed. The result is assigned to myTxt.text. So when a new translation is installed, there's no new script to be executed. However, there needs to be a mechanism to retranslate when a QEvent::LanguageChange is posted.

                  1 Reply Last reply
                  0
                  • M Offline
                    M Offline
                    mbarclaygmail.com
                    wrote on last edited by
                    #15

                    Turns out there was already a bug filed for this:

                    "http://bugreports.qt.nokia.com/browse/QTBUG-15602":http://bugreports.qt.nokia.com/browse/QTBUG-15602

                    And someone just posted a great suggestion for a workaround. I have verified it in my application:

                    QML:
                    @
                    Text {
                    text: qsTr("Translate Me") + rootItem.emptyString
                    }
                    @

                    By binding "text:" to another property, the whole expression will be reevaluated whenever the property emptyString changes.

                    In my case rootItem is a QObject that is installed with setContextProperty()

                    My rootItem has:

                    Q_PROPERTY(QString emptyString READ getEmptyString NOTIFY languageChanged)

                    In my method that installs a new QM translation file, I end with:

                    emit languageChanged();

                    The method getNullString() just returns "" so it doesn't effect the display of the text.

                    A better solution still needs to be resolved by the Trolls, but this will work until that time.

                    Regards,
                    Matt

                    1 Reply Last reply
                    0
                    • G Offline
                      G Offline
                      goli
                      wrote on last edited by
                      #16

                      i have this problem now...
                      i didn't understand your solution.
                      can you please explain this or give an example, i tried to do the above but it's also didn't work.

                      1 Reply Last reply
                      0
                      • M Offline
                        M Offline
                        mbarclaygmail.com
                        wrote on last edited by
                        #17

                        goli:

                        Basically, your code should look similar to this. Post your C++ code if this doesn't help.

                        @
                        class MyClass : public QObject
                        Q_OBJECT
                        Q_PROPERTY(QString emptyString READ getEmptyString NOTIFY languageChanged)

                        QString getEmptyString() { return ""; }

                        Q_INVOKABLE void selectLanguage(QString language) {

                        // Install QTranslator. See Docs for details

                        emit languageChanged();
                        }
                        @

                        @
                        int main(argc, argv) {

                        QDeclarativeView view;
                        MyClass myObj;
                        ...
                        ...

                        view.rootContext()->setContextProperty("rootItem", (QObject *)&myObj);

                        ...
                        ...

                        }
                        @

                        The selectLanguage() method installs a new QTranslator in the application. It then emits languageChanged(). All QML Text { } elements that use rootItem.emptyString in their text binding will receive a "NOTIFY" signal causing the qsTr("....") to be reevaluated using the new QTranslator. Because rootItem.emptyString is just "" (an empty string), it will alter the text in your GUI.

                        Please post your code if you have more questions.

                        Regards,
                        Matt

                        1 Reply Last reply
                        0
                        • G Offline
                          G Offline
                          goli
                          wrote on last edited by
                          #18

                          thank you very much. this was helpful :)

                          1 Reply Last reply
                          0
                          • B Offline
                            B Offline
                            BlackWiCKED
                            wrote on last edited by
                            #19

                            This code works, thank you. I had the same problem, but this method solved it.

                            Waiting for more elegant solution - without adding any "empty strings"... ;)

                            1 Reply Last reply
                            0
                            • D Offline
                              D Offline
                              digital_aspirin
                              wrote on last edited by
                              #20

                              Another approach would be to clear the engine's internal cache and set the main qml file again. clearComponentCache() forces all components to be reloaded, so there is no need for the emptyString property.

                              side note: clearComponentCache() is also nice for dynamic qml loading without restarting your application. It really speeds qml development up.

                              [code]
                              QDeclarativeView view;
                              ...
                              ...
                              void languageChange ( QString qsLanguage )
                              {
                              // install the translator here. See Qt docs about it

                              // Now do:
                              view.engine()->clearComponentCache ( );
                              view.setSource(QUrl::fromLocalFile ("apps_main.qml"));
                              

                              }
                              [/code]

                              1 Reply Last reply
                              0
                              • V Offline
                                V Offline
                                vishu
                                wrote on last edited by
                                #21

                                @digital_aspirin
                                Hi,, How to achieve your method can you explain bit detail

                                1 Reply Last reply
                                0

                                • Login

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • Categories
                                • Recent
                                • Tags
                                • Popular
                                • Users
                                • Groups
                                • Search
                                • Get Qt Extensions
                                • Unsolved