@@ -500,7 +500,7 @@ recurrenceListToString(const GList *r)
500
500
{
501
501
if (iter != r )
502
502
{
503
- /* translators : " + " is an separator in a list of string-representations of recurrence frequencies */
503
+ /* Translators : " + " is an separator in a list of string-representations of recurrence frequencies */
504
504
g_string_append (str , _ (" + " ));
505
505
}
506
506
s = recurrenceToString ((Recurrence * )iter -> data );
@@ -615,7 +615,7 @@ _weekly_list_to_compact_string(GList *rs, GString *buf)
615
615
g_string_printf (buf , "%s" , _ ("Weekly" ));
616
616
if (multiplier > 1 )
617
617
{
618
- /* translators : %u is the recurrence multiplier, i.e. this
618
+ /* Translators : %u is the recurrence multiplier, i.e. this
619
619
event should occur every %u'th week. */
620
620
g_string_append_printf (buf , _ (" (x%u)" ), multiplier );
621
621
}
@@ -649,7 +649,7 @@ _monthly_append_when(Recurrence *r, GString *buf)
649
649
650
650
gnc_dow_abbrev (day_name_buf , abbrev_day_name_bufsize , g_date_get_weekday (& date ) % 7 );
651
651
652
- /* translators : %s is an already-localized form of the day of the week. */
652
+ /* Translators : %s is an already-localized form of the day of the week. */
653
653
g_string_append_printf (buf , _ ("last %s" ), day_name_buf );
654
654
}
655
655
else if (recurrenceGetPeriodType (r ) == PERIOD_NTH_WEEKDAY )
@@ -662,13 +662,13 @@ _monthly_append_when(Recurrence *r, GString *buf)
662
662
gnc_dow_abbrev (day_name_buf , abbrev_day_name_bufsize , g_date_get_weekday (& date ) % 7 );
663
663
day_of_month_index = g_date_get_day (& date ) - 1 ;
664
664
week = day_of_month_index / 7 > 3 ? 3 : day_of_month_index / 7 ;
665
- /* translators : %s is the string 1st, 2nd, 3rd and so on, and
665
+ /* Translators : %s is the string 1st, 2nd, 3rd and so on, and
666
666
* %s is an already-localized form of the day of the week. */
667
667
g_string_append_printf (buf , _ ("%s %s" ), _ (numerals [week ]), day_name_buf );
668
668
}
669
669
else
670
670
{
671
- /* translators : %u is the day of month */
671
+ /* Translators : %u is the day of month */
672
672
g_string_append_printf (buf , "%u" , g_date_get_day (& date ));
673
673
}
674
674
}
@@ -705,7 +705,7 @@ recurrenceListToCompactString(GList *rs)
705
705
g_string_append_printf (buf , " " );
706
706
if (recurrenceGetMultiplier (first ) > 1 )
707
707
{
708
- /* translators : %u is the recurrence multiplier number */
708
+ /* Translators : %u is the recurrence multiplier number */
709
709
g_string_append_printf (buf , _ (" (x%u)" ), recurrenceGetMultiplier (first ));
710
710
}
711
711
g_string_append_printf (buf , ": " );
@@ -715,7 +715,7 @@ recurrenceListToCompactString(GList *rs)
715
715
}
716
716
else
717
717
{
718
- /* translators : %d is the number of Recurrences in the list. */
718
+ /* Translators : %d is the number of Recurrences in the list. */
719
719
g_string_printf (buf , _ ("Unknown, %d-size list." ), g_list_length (rs ));
720
720
}
721
721
}
@@ -736,7 +736,7 @@ recurrenceListToCompactString(GList *rs)
736
736
g_string_printf (buf , "%s" , _ ("Daily" ));
737
737
if (multiplier > 1 )
738
738
{
739
- /* translators : %u is the recurrence multiplier. */
739
+ /* Translators : %u is the recurrence multiplier. */
740
740
g_string_append_printf (buf , _ (" (x%u)" ), multiplier );
741
741
}
742
742
}
@@ -753,7 +753,7 @@ recurrenceListToCompactString(GList *rs)
753
753
g_string_printf (buf , "%s" , _ ("Monthly" ));
754
754
if (multiplier > 1 )
755
755
{
756
- /* translators : %u is the recurrence multiplier. */
756
+ /* Translators : %u is the recurrence multiplier. */
757
757
g_string_append_printf (buf , _ (" (x%u)" ), multiplier );
758
758
}
759
759
g_string_append_printf (buf , ": " );
@@ -764,12 +764,10 @@ recurrenceListToCompactString(GList *rs)
764
764
{
765
765
//g_warning("nth weekday not handled");
766
766
//g_string_printf(buf, "@fixme: nth weekday not handled");
767
- /* (keep the line break below to avoid a translator comment) */
768
- g_string_printf (buf ,
769
- "%s" , _ ("Monthly" ));
767
+ g_string_printf (buf , "%s" , _ ("Monthly" ));
770
768
if (multiplier > 1 )
771
769
{
772
- /* translators : %u is the recurrence multiplier. */
770
+ /* Translators : %u is the recurrence multiplier. */
773
771
g_string_append_printf (buf , _ (" (x%u)" ), multiplier );
774
772
}
775
773
g_string_append_printf (buf , ": " );
@@ -781,7 +779,7 @@ recurrenceListToCompactString(GList *rs)
781
779
g_string_printf (buf , "%s" , _ ("Yearly" ));
782
780
if (multiplier > 1 )
783
781
{
784
- /* translators : %u is the recurrence multiplier. */
782
+ /* Translators : %u is the recurrence multiplier. */
785
783
g_string_append_printf (buf , _ (" (x%u)" ), multiplier );
786
784
}
787
785
}
0 commit comments