Merge lp:~lucian.grijincu/unity/unity-i18n-fixes into lp:unity/0.2

Proposed by Gord Allott
Status: Merged
Approved by: Gord Allott
Approved revision: no longer in the source branch.
Merged at revision: 577
Proposed branch: lp:~lucian.grijincu/unity/unity-i18n-fixes
Merge into: lp:unity/0.2
Diff against target: 14 lines (+3/-1)
1 file modified
unity-private/places/places-default-renderer-group.vala (+3/-1)
To merge this branch: bzr merge lp:~lucian.grijincu/unity/unity-i18n-fixes
Reviewer Review Type Date Requested Status
Neil J. Patel Pending
Review via email: mp+45359@code.launchpad.net

This proposal supersedes a proposal from 2010-10-26.

To post a comment you must log in.
Revision history for this message
Neil J. Patel (njpatel) wrote : Posted in a previous version of this proposal

This won't help trunk due to the changes, but i could be applied against the 0.2 series and we can make sure it's fixed in the new views, thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'unity-private/places/places-default-renderer-group.vala'
2--- unity-private/places/places-default-renderer-group.vala 2010-10-01 09:50:17 +0000
3+++ unity-private/places/places-default-renderer-group.vala 2011-01-06 12:02:06 +0000
4@@ -640,7 +640,9 @@
5 get { return _count; }
6 set {
7 _count = value;
8- text.text = _("See %u more results").printf (_count);
9+ text.text = (ngettext("See one more result",
10+ "See %u more results",
11+ _count)).printf (_count);
12
13 animate (Clutter.AnimationMode.EASE_OUT_QUAD, 200,
14 "opacity", count == 0 ? 0:255);

Subscribers

People subscribed via source and target branches