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

Proposed by Lucian Adrian Grijincu
Status: Superseded
Proposed branch: lp:~lucian.grijincu/unity/unity-i18n-fixes
Merge into: lp:unity
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 (community) Approve
Review via email: mp+39385@code.launchpad.net

This proposal has been superseded by a proposal from 2011-01-06.

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

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 2010-10-26 16:19:46 +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);