aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard Somlói <level@somloirichard.hu>2015-09-21 15:11:24 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-03-26 21:01:24 +0000
commit947e9fd2c0bf2798802da034b3e82f057e53bbe2 (patch)
tree08d4ebfd6e6b7494d5caededb16f71a3633c35dd /src
parent25371d2fdacba11aeed389fb880baf6fc7524670 (diff)
downloadayatana-indicator-datetime-947e9fd2c0bf2798802da034b3e82f057e53bbe2.tar.gz
ayatana-indicator-datetime-947e9fd2c0bf2798802da034b3e82f057e53bbe2.tar.bz2
ayatana-indicator-datetime-947e9fd2c0bf2798802da034b3e82f057e53bbe2.zip
Fixed the comment for translators
Diffstat (limited to 'src')
-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;
}