[nemiver] 659462 Handle plural form of a string
- From: Fabien Parent <fparent src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nemiver] 659462 Handle plural form of a string
- Date: Sun, 23 Oct 2011 14:52:50 +0000 (UTC)
commit 85df8cdc58522642957ab57c0cb2b948f08f0838
Author: Fabien Parent <parent f gmail com>
Date: Wed Oct 19 17:50:54 2011 +0200
659462 Handle plural form of a string
* src/persp/dbgperspective/nmv-call-stack.cc
(CallStack::Priv::append_frames_to_tree_view): Handle plural form
of a string
src/persp/dbgperspective/nmv-call-stack.cc | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/src/persp/dbgperspective/nmv-call-stack.cc b/src/persp/dbgperspective/nmv-call-stack.cc
index e4b15e8..61cceb5 100644
--- a/src/persp/dbgperspective/nmv-call-stack.cc
+++ b/src/persp/dbgperspective/nmv-call-stack.cc
@@ -720,8 +720,11 @@ struct CallStack::Priv {
if (a_frames.size () >= nb_frames_expansion_chunk) {
store_iter = store->append ();
UString msg;
- msg.printf (_("(Click here to see the next %d rows of the "
- "call stack)"),
+ msg.printf (ngettext ("(Click here to see the next %d row of the "
+ "call stack",
+ "(Click here to see the next %d rows of the "
+ "call stack)",
+ nb_frames_expansion_chunk),
nb_frames_expansion_chunk);
(*store_iter)[columns ().frame_index_caption] = "...";
(*store_iter)[columns ().location] = msg;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]