aboutsummaryrefslogtreecommitdiff
path: root/src/utils.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-03-23 16:16:17 -0500
committerTed Gould <ted@gould.cx>2011-03-23 16:16:17 -0500
commit2884233431cdd61eee5942a369a11d4daf9314aa (patch)
tree2a45abf161262d69b5675b4266e96ea3a8d8b861 /src/utils.c
parent27e02c433cc3a871e100a7120f9f9e6e73c5a661 (diff)
parent34527b0979874d373160f4a002e375456f0b7af2 (diff)
downloadayatana-indicator-datetime-2884233431cdd61eee5942a369a11d4daf9314aa.tar.gz
ayatana-indicator-datetime-2884233431cdd61eee5942a369a11d4daf9314aa.tar.bz2
ayatana-indicator-datetime-2884233431cdd61eee5942a369a11d4daf9314aa.zip
New upstream release.
∘ Remove unused liboobs ∘ Add translator comments and make strings translatable (LP: #737326) ∘ Remove password dialog for calendars not the keyring ∘ Use default matching when geonames aren't available (LP: #740870) ∘ UI Cleanups and naming fixes (LP: #740806, LP: #740819) ∘ Free JSON parser data ∘ Avoid duplicates in GeoNames data (LP: #740884) ∘ Make location completion more robust
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils.c b/src/utils.c
index 7471926..537495b 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -181,9 +181,9 @@ generate_format_string_full (gboolean show_day, gboolean show_date)
g_return_val_if_fail(date_string != NULL, g_strdup(time_string));
/* TRANSLATORS: This is a format string passed to strftime to combine the
- date and the time. The value of "%s, %s" would result in a string like
- this in US English 12-hour time: 'Fri Jul 16, 11:50 AM' */
- return g_strdup_printf(T_("%s, %s"), date_string, time_string);
+ date and the time. The value of "%s %s" would result in a string like
+ this in US English 12-hour time: 'Fri Jul 16 11:50 AM' */
+ return g_strdup_printf(T_("%s %s"), date_string, time_string);
}
gchar *