Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Prevent Translation of Property
Forum Updated to NodeBB v4.3 + New Features

Prevent Translation of Property

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 2.2k Views 1 Watching
  • 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.
  • W Offline
    W Offline
    walteste
    wrote on last edited by
    #1

    I am writting a Qt-Creator plugin with custom widgets.

    I would like to prevent the translation of strings.

    @QString MyLabelPlugin::domXml() const
    {
    return QLatin1String("<ui language="c++" displayname="MyLabel">"
    " <widget class="MyLabel" name="myLabel">"
    " <property name="textDev">"
    " <string>TextLabel</string>"
    " </property>"
    " </widget>"
    "</ui>");
    }@

    How can i prevent the translation of the property textDev?

    1 Reply Last reply
    0
    • M Offline
      M Offline
      micky
      wrote on last edited by
      #2

      replace the line

      <string>TextLabel</string>

      with

      <cstring>TextLabel</cstring>

      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