r17056 - gnucash/branches/2.2/src/engine - [r17048] I18n: Fix translator comment about recurrence frequency.

Christian Stimming cstim at cvs.gnucash.org
Wed Mar 26 17:05:06 EDT 2008


Author: cstim
Date: 2008-03-26 17:05:05 -0400 (Wed, 26 Mar 2008)
New Revision: 17056
Trac: http://svn.gnucash.org/trac/changeset/17056

Modified:
   gnucash/branches/2.2/src/engine/Recurrence.c
Log:
[r17048] I18n: Fix translator comment about recurrence frequency.


Modified: gnucash/branches/2.2/src/engine/Recurrence.c
===================================================================
--- gnucash/branches/2.2/src/engine/Recurrence.c	2008-03-26 21:04:56 UTC (rev 17055)
+++ gnucash/branches/2.2/src/engine/Recurrence.c	2008-03-26 21:05:05 UTC (rev 17056)
@@ -430,7 +430,8 @@
     g_string_printf(buf, _("Weekly"));
     if (multiplier > 1)
     {
-        /* translators: %u is the recurrence multipler. */
+        /* translators: %u is the recurrence multipler, i.e. this
+	   event should occur every %u'th week. */
         g_string_append_printf(buf, _(" (x%u)"), multiplier);
     }
     g_string_append_printf(buf, ": ");
@@ -532,7 +533,7 @@
             g_string_printf(buf, _("Daily"));
             if (multiplier > 1)
             {
-                /* translators: %u is the number of intervals */
+                /* translators: %u is the recurrence multiplier. */
                 g_string_append_printf(buf, _(" (x%u)"), multiplier);
             }
         } break;



More information about the gnucash-changes mailing list