Merge lp:~malizor/software-center/fix-lp813803 into lp:software-center

Proposed by Nicolas Delvaux
Status: Merged
Merged at revision: 2537
Proposed branch: lp:~malizor/software-center/fix-lp813803
Merge into: lp:software-center
Diff against target: 14 lines (+1/-1)
1 file modified
softwarecenter/ui/gtk3/panes/historypane.py (+1/-1)
To merge this branch: bzr merge lp:~malizor/software-center/fix-lp813803
Reviewer Review Type Date Requested Status
Michael Vogt Pending
Review via email: mp+80892@code.launchpad.net

Description of the change

A translators comment was misplaced and so was not extracted in the .pot file.
This led to poor translations, as reported in bug #813803.

This is a really trivial change (I just moved the comment).

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'softwarecenter/ui/gtk3/panes/historypane.py'
--- softwarecenter/ui/gtk3/panes/historypane.py 2011-08-23 14:00:02 +0000
+++ softwarecenter/ui/gtk3/panes/historypane.py 2011-11-01 12:03:24 +0000
@@ -349,9 +349,9 @@
349 if isinstance(when, datetime.datetime):349 if isinstance(when, datetime.datetime):
350 action = store.get_value(iter, self.COL_ACTION)350 action = store.get_value(iter, self.COL_ACTION)
351 pkg = store.get_value(iter, self.COL_PKG)351 pkg = store.get_value(iter, self.COL_PKG)
352 # Translators : time displayed in history, display hours (0-12), minutes and AM/PM. %H should be used instead of %I to display hours 0-24
353 subs = {'pkgname': pkg,352 subs = {'pkgname': pkg,
354 'color': '#8A8A8A',353 'color': '#8A8A8A',
354 # Translators : time displayed in history, display hours (0-12), minutes and AM/PM. %H should be used instead of %I to display hours 0-24
355 'time': when.time().strftime(_('%I:%M %p')),355 'time': when.time().strftime(_('%I:%M %p')),
356 }356 }
357 if action == self.INSTALLED:357 if action == self.INSTALLED: