[Desktop-packages] [Bug 953342] Re: Add support for Qt Designer UI files

2015-03-10 Thread Rodney Dawes
This apparently needs a freeze exception to be able to get the new
version into Ubuntu which contains this. :-/

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to intltool in Ubuntu.
https://bugs.launchpad.net/bugs/953342

Title:
  [ffe] Add support for Qt Designer UI files

Status in Internationalization Tool Collection:
  Fix Released
Status in intltool package in Ubuntu:
  New

Bug description:
  Qt Designer files are XML files that describe the UI of a Qt
  application, and are the Glade .ui file equivalent in the Qt world.

  Their format definition can be found here:

  - http://qt-project.org/doc/designer-ui-file-format.html

  While many Qt projects use Qt's own i18n/l10n framework, others rely
  on gettext. Some examples are core Ubuntu applications such as the
  Ubuntu One client and Checkbox, which have started to migrate to Qt-
  based user interfaces while overriding Qt's i18n system and using
  gettext instead.

  These cases need a way to extract translatable messages from Qt's .ui
  files, merge the translations in .pot files and thus integrate with
  the gettext workflow.

To manage notifications about this bug go to:
https://bugs.launchpad.net/intltool/+bug/953342/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 953342] Re: Add support for Qt Designer UI files

2015-03-08 Thread Rodney Dawes
** Changed in: intltool
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to intltool in Ubuntu.
https://bugs.launchpad.net/bugs/953342

Title:
  Add support for Qt Designer UI files

Status in Internationalization Tool Collection:
  Fix Released
Status in intltool package in Ubuntu:
  Triaged

Bug description:
  Qt Designer files are XML files that describe the UI of a Qt
  application, and are the Glade .ui file equivalent in the Qt world.

  Their format definition can be found here:

  - http://qt-project.org/doc/designer-ui-file-format.html

  While many Qt projects use Qt's own i18n/l10n framework, others rely
  on gettext. Some examples are core Ubuntu applications such as the
  Ubuntu One client and Checkbox, which have started to migrate to Qt-
  based user interfaces while overriding Qt's i18n system and using
  gettext instead.

  These cases need a way to extract translatable messages from Qt's .ui
  files, merge the translations in .pot files and thus integrate with
  the gettext workflow.

To manage notifications about this bug go to:
https://bugs.launchpad.net/intltool/+bug/953342/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 953342] Re: Add support for Qt Designer UI files

2014-12-04 Thread Sandro Mani
Shouldn't the result of getXMLstring be passed to entity_decode first?
Something along the attached patch. Perhaps I'm not doing this as was
planned (basically I'm running a regex-replace on the generate ui_XXX.h
files to replace QApplication::translate calls with gettext ones, see
[1]), but without entity_decode, the msgids of strings containing html
markup does not match what is actually in the ui_XXX.h files, plus
having all html-escaped characters in the po files is somewhat unplesant
for translators.

[1]
https://github.com/manisandro/gImageReader/blob/master/cmake/gettextizeui.cmake

** Patch added: intltool_designer_decode.patch
   
https://bugs.launchpad.net/intltool/+bug/953342/+attachment/4274236/+files/intltool_designer_decode.patch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to intltool in Ubuntu.
https://bugs.launchpad.net/bugs/953342

Title:
  Add support for Qt Designer UI files

Status in Internationalization Tool Collection:
  Fix Committed
Status in intltool package in Ubuntu:
  Triaged

Bug description:
  Qt Designer files are XML files that describe the UI of a Qt
  application, and are the Glade .ui file equivalent in the Qt world.

  Their format definition can be found here:

  - http://qt-project.org/doc/designer-ui-file-format.html

  While many Qt projects use Qt's own i18n/l10n framework, others rely
  on gettext. Some examples are core Ubuntu applications such as the
  Ubuntu One client and Checkbox, which have started to migrate to Qt-
  based user interfaces while overriding Qt's i18n system and using
  gettext instead.

  These cases need a way to extract translatable messages from Qt's .ui
  files, merge the translations in .pot files and thus integrate with
  the gettext workflow.

To manage notifications about this bug go to:
https://bugs.launchpad.net/intltool/+bug/953342/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 953342] Re: Add support for Qt Designer UI files

2014-12-04 Thread Ubuntu Foundations Team Bug Bot
The attachment intltool_designer_decode.patch seems to be a patch.  If
it isn't, please remove the patch flag from the attachment, remove the
patch tag, and if you are a member of the ~ubuntu-reviewers,
unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

** Tags added: patch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to intltool in Ubuntu.
https://bugs.launchpad.net/bugs/953342

Title:
  Add support for Qt Designer UI files

Status in Internationalization Tool Collection:
  Fix Committed
Status in intltool package in Ubuntu:
  Triaged

Bug description:
  Qt Designer files are XML files that describe the UI of a Qt
  application, and are the Glade .ui file equivalent in the Qt world.

  Their format definition can be found here:

  - http://qt-project.org/doc/designer-ui-file-format.html

  While many Qt projects use Qt's own i18n/l10n framework, others rely
  on gettext. Some examples are core Ubuntu applications such as the
  Ubuntu One client and Checkbox, which have started to migrate to Qt-
  based user interfaces while overriding Qt's i18n system and using
  gettext instead.

  These cases need a way to extract translatable messages from Qt's .ui
  files, merge the translations in .pot files and thus integrate with
  the gettext workflow.

To manage notifications about this bug go to:
https://bugs.launchpad.net/intltool/+bug/953342/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 953342] Re: Add support for Qt Designer UI files

2014-04-16 Thread Harald Sitter
** Changed in: intltool (Ubuntu)
Milestone: ubuntu-14.04 = None

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to intltool in Ubuntu.
https://bugs.launchpad.net/bugs/953342

Title:
  Add support for Qt Designer UI files

Status in Internationalization Tool Collection:
  Fix Committed
Status in “intltool” package in Ubuntu:
  Triaged

Bug description:
  Qt Designer files are XML files that describe the UI of a Qt
  application, and are the Glade .ui file equivalent in the Qt world.

  Their format definition can be found here:

  - http://qt-project.org/doc/designer-ui-file-format.html

  While many Qt projects use Qt's own i18n/l10n framework, others rely
  on gettext. Some examples are core Ubuntu applications such as the
  Ubuntu One client and Checkbox, which have started to migrate to Qt-
  based user interfaces while overriding Qt's i18n system and using
  gettext instead.

  These cases need a way to extract translatable messages from Qt's .ui
  files, merge the translations in .pot files and thus integrate with
  the gettext workflow.

To manage notifications about this bug go to:
https://bugs.launchpad.net/intltool/+bug/953342/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 953342] Re: Add support for Qt Designer UI files

2014-02-11 Thread Данило Шеган
** Changed in: intltool
Milestone: None = 0.51.0

** Changed in: intltool
 Assignee: (unassigned) = Данило Шеган (danilo)

** Changed in: intltool
   Importance: Undecided = High

** Changed in: intltool
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to intltool in Ubuntu.
https://bugs.launchpad.net/bugs/953342

Title:
  Add support for Qt Designer UI files

Status in Internationalization Tool Collection:
  Fix Committed
Status in “intltool” package in Ubuntu:
  Triaged

Bug description:
  Qt Designer files are XML files that describe the UI of a Qt
  application, and are the Glade .ui file equivalent in the Qt world.

  Their format definition can be found here:

  - http://qt-project.org/doc/designer-ui-file-format.html

  While many Qt projects use Qt's own i18n/l10n framework, others rely
  on gettext. Some examples are core Ubuntu applications such as the
  Ubuntu One client and Checkbox, which have started to migrate to Qt-
  based user interfaces while overriding Qt's i18n system and using
  gettext instead.

  These cases need a way to extract translatable messages from Qt's .ui
  files, merge the translations in .pot files and thus integrate with
  the gettext workflow.

To manage notifications about this bug go to:
https://bugs.launchpad.net/intltool/+bug/953342/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 953342] Re: Add support for Qt Designer UI files

2014-01-28 Thread Harald Sitter
** Also affects: intltool (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: intltool (Ubuntu)
   Importance: Undecided = Medium

** Changed in: intltool (Ubuntu)
   Status: New = Triaged

** Changed in: intltool (Ubuntu)
Milestone: None = ubuntu-14.04

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to intltool in Ubuntu.
https://bugs.launchpad.net/bugs/953342

Title:
  Add support for Qt Designer UI files

Status in Internationalization Tool Collection:
  New
Status in “intltool” package in Ubuntu:
  Triaged

Bug description:
  Qt Designer files are XML files that describe the UI of a Qt
  application, and are the Glade .ui file equivalent in the Qt world.

  Their format definition can be found here:

  - http://qt-project.org/doc/designer-ui-file-format.html

  While many Qt projects use Qt's own i18n/l10n framework, others rely
  on gettext. Some examples are core Ubuntu applications such as the
  Ubuntu One client and Checkbox, which have started to migrate to Qt-
  based user interfaces while overriding Qt's i18n system and using
  gettext instead.

  These cases need a way to extract translatable messages from Qt's .ui
  files, merge the translations in .pot files and thus integrate with
  the gettext workflow.

To manage notifications about this bug go to:
https://bugs.launchpad.net/intltool/+bug/953342/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp