Activity log for bug #1052375

Date Who What changed Old value New value Message
2012-09-18 09:01:31 Didier Roche-Tolomelli bug added bug
2012-09-18 09:01:47 Didier Roche-Tolomelli bug task added gwibber (Ubuntu)
2012-09-18 09:02:02 Didier Roche-Tolomelli bug task added unity-lens-photos (Ubuntu)
2012-09-18 09:02:45 Didier Roche-Tolomelli bug task added unity-scope-gdocs (Ubuntu)
2012-09-18 09:02:53 Didier Roche-Tolomelli bug task added empathy (Ubuntu)
2012-09-18 09:03:06 Didier Roche-Tolomelli bug task added empathy
2012-09-18 09:03:39 Didier Roche-Tolomelli bug task added online-accounts-gnome-control-center
2012-09-18 09:04:00 Didier Roche-Tolomelli bug task added gwibber
2012-09-18 09:04:23 Didier Roche-Tolomelli bug task added unity-lens-photos
2012-09-18 09:04:56 Didier Roche-Tolomelli bug task added unity-lens-gdocs
2012-09-18 09:05:05 Didier Roche-Tolomelli bug task added shotwell (Ubuntu)
2012-09-18 09:05:15 Didier Roche-Tolomelli bug task added shotwell
2012-09-18 09:06:00 Didier Roche-Tolomelli summary The g-c-c interface doesn't support i18n The online account g-c-c interface doesn't support i18n
2012-09-18 09:07:15 Didier Roche-Tolomelli nominated for series Ubuntu Quantal
2012-09-18 09:07:15 Didier Roche-Tolomelli bug task added empathy (Ubuntu Quantal)
2012-09-18 09:07:15 Didier Roche-Tolomelli bug task added gwibber (Ubuntu Quantal)
2012-09-18 09:07:15 Didier Roche-Tolomelli bug task added shotwell (Ubuntu Quantal)
2012-09-18 09:07:15 Didier Roche-Tolomelli bug task added gnome-control-center-signon (Ubuntu Quantal)
2012-09-18 09:07:15 Didier Roche-Tolomelli bug task added unity-lens-photos (Ubuntu Quantal)
2012-09-18 09:07:15 Didier Roche-Tolomelli bug task added unity-scope-gdocs (Ubuntu Quantal)
2012-09-18 09:07:44 Didier Roche-Tolomelli shotwell (Ubuntu Quantal): importance Undecided High
2012-09-18 09:07:44 Didier Roche-Tolomelli shotwell (Ubuntu Quantal): status New Confirmed
2012-09-18 09:07:44 Didier Roche-Tolomelli shotwell (Ubuntu Quantal): milestone ubuntu-12.10-beta-2
2012-09-18 09:08:00 Didier Roche-Tolomelli unity-lens-photos (Ubuntu Quantal): importance Undecided High
2012-09-18 09:08:00 Didier Roche-Tolomelli unity-lens-photos (Ubuntu Quantal): status New Confirmed
2012-09-18 09:08:16 Didier Roche-Tolomelli unity-scope-gdocs (Ubuntu Quantal): importance Undecided High
2012-09-18 09:08:16 Didier Roche-Tolomelli unity-scope-gdocs (Ubuntu Quantal): status New Confirmed
2012-09-18 09:09:04 Didier Roche-Tolomelli gwibber (Ubuntu Quantal): importance Undecided High
2012-09-18 09:09:04 Didier Roche-Tolomelli gwibber (Ubuntu Quantal): status New Confirmed
2012-09-18 09:09:23 Didier Roche-Tolomelli gnome-control-center-signon (Ubuntu Quantal): importance Undecided High
2012-09-18 09:09:23 Didier Roche-Tolomelli gnome-control-center-signon (Ubuntu Quantal): status New Confirmed
2012-09-18 09:10:04 Didier Roche-Tolomelli empathy (Ubuntu Quantal): importance Undecided High
2012-09-18 09:10:04 Didier Roche-Tolomelli empathy (Ubuntu Quantal): status New Confirmed
2012-09-18 09:14:31 David Planella description the online account ui loads the plugins integration from some .application files. Those are not translated, not translatable. What needs to be done, is: - rename the .application in .application.in - ensuring that upstream have an application.in files with translatable tags (using _) - add a <translations> tag containing the upstream domain - then, at build time: 1. running intltool-extract files.applications.in so that it's get merged into a files.applications.in.h 2. including the .h file somewhere in the build system (like POTFILES.in for python apps and Makefiles.am for C/vala apps) so that it's merged into the .pot file 3. and running intltool-merge --no-translations -x -u foo.applications.in foo.application to create the xml upstream file which is shipped - online-account (the g-c-c plugin) should be patched to load them, looking at the <translations> tag and gettext (package, string) the online account ui loads the plugins integration from some .application files. Those are not translated, not translatable. What needs to be done, is: - rename the .application in .application.in - ensuring that upstream have an application.in files with translatable tags (using _, as in <_description>I want to be translated</_description>). Example [1] - add a <translations> tag containing the upstream domain - then, at build time: 1. Running intltool-extract files.applications.in so that it gets merged into a files.applications.in.h file. If you are using intltool already in your build system (and you probably are), this should be happening already and you can skip to step 2. 2. Including the .in file somewhere in the build system (like po/POTFILES.in for Python apps and Makefiles.am for C/vala apps) so that it's merged into the .pot file. In Python, it's just a matter of adding it as an extra line to the po/POTFILES.in file (example [2]): [gettext/xml]data/gwibber.application.in 3. And running intltool-merge --no-translations -x -u foo.applications.in foo.application to create the xml upstream file which is shipped - online-account (the g-c-c plugin) should be patched to load them, looking at the <translations> tag and gettext (package, string) [1] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/data/gwibber.application.in [2] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/po/POTFILES.in
2012-09-18 09:15:10 David Planella description the online account ui loads the plugins integration from some .application files. Those are not translated, not translatable. What needs to be done, is: - rename the .application in .application.in - ensuring that upstream have an application.in files with translatable tags (using _, as in <_description>I want to be translated</_description>). Example [1] - add a <translations> tag containing the upstream domain - then, at build time: 1. Running intltool-extract files.applications.in so that it gets merged into a files.applications.in.h file. If you are using intltool already in your build system (and you probably are), this should be happening already and you can skip to step 2. 2. Including the .in file somewhere in the build system (like po/POTFILES.in for Python apps and Makefiles.am for C/vala apps) so that it's merged into the .pot file. In Python, it's just a matter of adding it as an extra line to the po/POTFILES.in file (example [2]): [gettext/xml]data/gwibber.application.in 3. And running intltool-merge --no-translations -x -u foo.applications.in foo.application to create the xml upstream file which is shipped - online-account (the g-c-c plugin) should be patched to load them, looking at the <translations> tag and gettext (package, string) [1] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/data/gwibber.application.in [2] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/po/POTFILES.in The online accounts UI loads the plugins integration from some .application files. Those are not translated, not translatable. What needs to be done, is: - rename the .application in .application.in - ensuring that upstream have an application.in files with translatable tags (using _, as in <_description>I want to be translated</_description>). Example [1] - add a <translations> tag containing the upstream domain - then, at build time: 1. Running intltool-extract files.applications.in so that it gets merged into a files.applications.in.h file. If you are using intltool already in your build system (and you probably are), this should be happening already and you can skip to step 2. 2. Including the .in file somewhere in the build system (like po/POTFILES.in for Python apps and Makefiles.am for C/vala apps) so that it's merged into the .pot file. In Python, it's just a matter of adding it as an extra line to the po/POTFILES.in file (example [2]): [gettext/xml]data/gwibber.application.in 3. And running intltool-merge --no-translations -x -u foo.applications.in foo.application to create the xml upstream file which is shipped - online-account (the g-c-c plugin) should be patched to load them, looking at the <translations> tag and gettext (package, string) [1] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/data/gwibber.application.in [2] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/po/POTFILES.in
2012-09-18 09:16:40 David Planella bug task added ubuntu-translations
2012-09-18 09:17:11 David Planella ubuntu-translations: importance Undecided High
2012-09-18 09:17:11 David Planella ubuntu-translations: status New Triaged
2012-09-18 09:36:34 David King online-accounts-gnome-control-center: milestone 0.0.17
2012-09-18 09:36:34 David King online-accounts-gnome-control-center: assignee David King (amigadave)
2012-09-18 09:36:56 David King online-accounts-gnome-control-center: importance Undecided High
2012-09-18 09:36:56 David King online-accounts-gnome-control-center: status New In Progress
2012-09-18 10:44:47 Guillaume Desmottes bug watch added https://bugzilla.gnome.org/show_bug.cgi?id=684281
2012-09-18 11:09:21 Launchpad Janitor branch linked lp:~amigadave/online-accounts-gnome-control-center/translations
2012-09-18 12:41:32 Ken VanDine gwibber (Ubuntu Quantal): assignee Ken VanDine (ken-vandine)
2012-09-18 12:42:36 Ken VanDine gwibber (Ubuntu Quantal): milestone ubuntu-12.10-beta-2
2012-09-18 12:44:05 Ken VanDine gnome-control-center-signon (Ubuntu Quantal): milestone ubuntu-12.10-beta-2
2012-09-18 12:44:05 Ken VanDine gnome-control-center-signon (Ubuntu Quantal): assignee David King (amigadave)
2012-09-18 12:45:59 Ken VanDine unity-lens-photos (Ubuntu Quantal): milestone ubuntu-12.10-beta-2
2012-09-18 12:45:59 Ken VanDine unity-lens-photos (Ubuntu Quantal): assignee David Callé (davidc3)
2012-09-18 12:46:36 Ken VanDine unity-scope-gdocs (Ubuntu Quantal): milestone ubuntu-12.10-beta-2
2012-09-18 12:46:36 Ken VanDine unity-scope-gdocs (Ubuntu Quantal): assignee Alberto Mardegan (mardy)
2012-09-18 12:47:29 Ken VanDine shotwell (Ubuntu Quantal): assignee Alberto Mardegan (mardy)
2012-09-18 12:48:19 Ken VanDine empathy (Ubuntu Quantal): milestone ubuntu-12.10-beta-2
2012-09-18 12:48:19 Ken VanDine empathy (Ubuntu Quantal): assignee Ken VanDine (ken-vandine)
2012-09-18 13:44:51 Didier Roche-Tolomelli empathy (Ubuntu Quantal): assignee Ken VanDine (ken-vandine) Didier Roche (didrocks)
2012-09-18 14:05:41 Launchpad Janitor branch linked lp:~ubuntu-desktop/empathy/ubuntu
2012-09-18 14:10:11 Launchpad Janitor empathy (Ubuntu Quantal): status Confirmed Fix Released
2012-09-18 14:33:22 David Callé unity-lens-photos: milestone 0.5
2012-09-18 14:33:22 David Callé unity-lens-photos: assignee David Callé (davidc3)
2012-09-18 14:33:44 David Callé unity-lens-photos: importance Undecided High
2012-09-18 14:33:44 David Callé unity-lens-photos: status New In Progress
2012-09-18 14:41:50 Launchpad Janitor branch linked lp:unity-lens-photos
2012-09-18 14:43:19 David Callé branch linked lp:~davidc3/unity-lens-photos/translation-fix
2012-09-18 14:43:25 David Callé branch unlinked lp:unity-lens-photos
2012-09-18 14:44:58 David Callé unity-lens-photos: status In Progress Fix Committed
2012-09-18 14:44:58 David Callé unity-lens-photos: milestone 0.5
2012-09-19 06:59:42 Launchpad Janitor branch linked lp:~mardy/unity-lens-gdocs/i18n
2012-09-19 07:02:59 Alberto Mardegan unity-lens-gdocs: status New In Progress
2012-09-19 07:02:59 Alberto Mardegan unity-lens-gdocs: assignee Alberto Mardegan (mardy)
2012-09-19 09:33:55 Iain Lane bug added subscriber Iain Lane
2012-09-19 12:30:38 Alberto Mardegan unity-lens-gdocs: status In Progress Fix Committed
2012-09-19 14:26:39 David King online-accounts-gnome-control-center: status In Progress Fix Committed
2012-09-19 14:30:00 David King online-accounts-gnome-control-center: status Fix Committed Fix Released
2012-09-19 16:25:08 Launchpad Janitor gnome-control-center-signon (Ubuntu Quantal): status Confirmed Fix Released
2012-09-19 19:55:00 David Callé unity-lens-photos: milestone 0.6
2012-09-19 20:17:57 Launchpad Janitor branch linked lp:ubuntu/unity-lens-photos
2012-09-19 20:20:10 Launchpad Janitor unity-lens-photos (Ubuntu Quantal): status Confirmed Fix Released
2012-09-19 20:31:25 Launchpad Janitor branch linked lp:~ken-vandine/unity-lens-gdocs/0.3
2012-09-19 21:00:09 Launchpad Janitor unity-scope-gdocs (Ubuntu Quantal): status Confirmed Fix Released
2012-09-20 05:05:34 Launchpad Janitor branch linked lp:gwibber
2012-09-20 06:14:23 Launchpad Janitor branch linked lp:ubuntu/quantal-proposed/gwibber
2012-09-20 06:17:51 Ken VanDine gwibber (Ubuntu Quantal): status Confirmed Fix Committed
2012-09-20 08:03:13 David Callé unity-lens-photos: status Fix Committed Fix Released
2012-09-20 20:56:08 Didier Roche-Tolomelli gwibber (Ubuntu Quantal): status Fix Committed Fix Released
2012-09-24 10:45:53 David King unity-lens-gdocs: importance Undecided High
2012-09-24 10:55:05 David King unity-lens-gdocs: milestone 0.3
2012-09-24 10:56:46 David King unity-lens-gdocs: status Fix Committed Fix Released
2012-09-24 21:15:52 Heimen Stoffels branch unlinked lp:gwibber
2012-09-26 07:41:59 Alberto Mardegan shotwell (Ubuntu Quantal): status Confirmed Fix Released
2012-10-04 14:00:34 David King description The online accounts UI loads the plugins integration from some .application files. Those are not translated, not translatable. What needs to be done, is: - rename the .application in .application.in - ensuring that upstream have an application.in files with translatable tags (using _, as in <_description>I want to be translated</_description>). Example [1] - add a <translations> tag containing the upstream domain - then, at build time: 1. Running intltool-extract files.applications.in so that it gets merged into a files.applications.in.h file. If you are using intltool already in your build system (and you probably are), this should be happening already and you can skip to step 2. 2. Including the .in file somewhere in the build system (like po/POTFILES.in for Python apps and Makefiles.am for C/vala apps) so that it's merged into the .pot file. In Python, it's just a matter of adding it as an extra line to the po/POTFILES.in file (example [2]): [gettext/xml]data/gwibber.application.in 3. And running intltool-merge --no-translations -x -u foo.applications.in foo.application to create the xml upstream file which is shipped - online-account (the g-c-c plugin) should be patched to load them, looking at the <translations> tag and gettext (package, string) [1] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/data/gwibber.application.in [2] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/po/POTFILES.in The online accounts UI loads the plugins integration from some .application files. Those are not translated, not translatable. What needs to be done, is: - rename the .application in .application.in - ensuring that upstream have an application.in files with translatable tags (using _, as in <_description>I want to be translated</_description>). Example [1] - add a <translations> tag containing the upstream domain - then, at build time: 1. Running intltool-extract files.applications.in so that it gets merged into a files.applications.in.h file. If you are using intltool already in your build system (and you probably are), this should be happening already and you can skip to step 2. 2. Including the .in file somewhere in the build system (like po/POTFILES.in for Python apps and Makefiles.am for C/vala apps) so that it's merged into the .pot file. In Python, it's just a matter of adding it as an extra line to the po/POTFILES.in file (example [2]): [type: gettext/xml]data/gwibber.application.in 3. And running intltool-merge --no-translations -x -u foo.applications.in foo.application to create the xml upstream file which is shipped - online-account (the g-c-c plugin) should be patched to load them, looking at the <translations> tag and gettext (package, string) [1] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/data/gwibber.application.in [2] http://bazaar.launchpad.net/~dpm/+junk/testintl/view/head:/po/POTFILES.in
2012-10-16 18:04:56 Bilal Shahid gwibber: status New Fix Released
2012-12-05 12:12:58 Bence Lukács bug added subscriber Bence Lukács
2013-03-29 02:21:26 Launchpad Janitor branch linked lp:ubuntu/empathy
2013-05-23 08:59:42 Hendrik Schrieber ubuntu-translations: status Triaged Fix Released