From 70d7a60a44582fa46733e6fc531923963a5be52e Mon Sep 17 00:00:00 2001
From: Nicolas CARRIER <carrier.nicolas0@gmail.com>
Date: Fri, 5 Oct 2012 07:28:28 +0200
Subject: [PATCH] doc: use %.0s to skip "th" suffix rather than skipping %s

---
 src/r_recur_base.cc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/r_recur_base.cc b/src/r_recur_base.cc
index 0a09b5c..6fce547 100644
--- a/src/r_recur_base.cc
+++ b/src/r_recur_base.cc
@@ -286,7 +286,7 @@ void RecurBase::Dump(std::ostream &os) const
 
 		case MonthByDate:
 			// TRANSLATORS: to remove the 'th' ending on numbers,
-			// just skip the %s in this string.
+			// just replace the %s with %.0s in this string.
 			os << string_vprintf(_("      Every month on the %u%s"),
 				DayOfMonth,
 				(DayOfMonth == 1 ? "st" :
-- 
1.7.9.5

