[california] I18n month string problem: Bug #736743
- From: Jim Nelson <jnelson src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [california] I18n month string problem: Bug #736743
- Date: Thu, 18 Sep 2014 21:00:11 +0000 (UTC)
commit 2dc65a088641e04441297f9fe1db02a84709b4c9
Author: Jim Nelson <jim yorba org>
Date: Thu Sep 18 13:59:14 2014 -0700
I18n month string problem: Bug #736743
Although a string change, this fixes an out-and-out bug in displaying
the string in the UI.
src/component/component-recurrence-rule.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/component/component-recurrence-rule.vala b/src/component/component-recurrence-rule.vala
index 9b02a41..3c40d80 100644
--- a/src/component/component-recurrence-rule.vala
+++ b/src/component/component-recurrence-rule.vala
@@ -608,7 +608,7 @@ public class RecurrenceRule : BaseObject {
if (has_byday == has_bymonthday || byrules.size != 1)
return null;
- string unit = ngettext("month", "%d months", interval).printf(interval);
+ string unit = ngettext("%d month", "%d months", interval).printf(interval);
if (has_byday)
return explain_monthly_byday(unit);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]