aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils.c b/src/utils.c
index 69ca7a2..be213b0 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -327,8 +327,8 @@ char* generate_full_format_string_at_time (GDateTime* now,
This format string is used for showing, on a 12-hour clock, events/appointments that happen over a week from now.
(Note: the space between the day and the time is an em space (unicode character 2003), which is
slightly wider than a normal space.)
- en_US example: "%a %d %b %l:%M %p" --> "Fri Oct 31 1:00 PM"
- en_GB example: "%a %b %d %l:%M %p" --> "Fri 31 Oct 1:00 PM" */
+ en_US example: "%a %b %d %l:%M %p" --> "Fri Oct 31 1:00 PM"
+ en_GB example: "%a %d %b %l:%M %p" --> "Fri 31 Oct 1:00 PM" */
g_string_assign (ret, T_("%a %d %b %l:%M %p"));
break;
}
@@ -367,8 +367,8 @@ char* generate_full_format_string_at_time (GDateTime* now,
This format string is used for showing, on a 24-hour clock, events/appointments that happen over a week from now.
(Note: the space between the day and the time is an em space (unicode character 2003), which is
slightly wider than a normal space.)
- en_US example: "%a %d %b %H:%M" --> "Fri Oct 31 13:00"
- en_GB example: "%a %b %d %H:%M" --> "Fri 31 Oct 13:00" */
+ en_US example: "%a %b %d %H:%M" --> "Fri Oct 31 13:00"
+ en_GB example: "%a %d %b %H:%M" --> "Fri 31 Oct 13:00" */
g_string_assign (ret, T_("%a %d %b %H:%M"));
break;
}