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
1=== modified file 'softwarecenter/ui/gtk3/panes/historypane.py'
2--- softwarecenter/ui/gtk3/panes/historypane.py 2011-08-23 14:00:02 +0000
3+++ softwarecenter/ui/gtk3/panes/historypane.py 2011-11-01 12:03:24 +0000
4@@ -349,9 +349,9 @@
5 if isinstance(when, datetime.datetime):
6 action = store.get_value(iter, self.COL_ACTION)
7 pkg = store.get_value(iter, self.COL_PKG)
8- # 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
9 subs = {'pkgname': pkg,
10 'color': '#8A8A8A',
11+ # 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
12 'time': when.time().strftime(_('%I:%M %p')),
13 }
14 if action == self.INSTALLED: