diff options
author | Sergey I. Panov <sipan@src.gnome.org> | 1999-02-16 13:43:11 +0800 |
---|---|---|
committer | Sergey I. Panov <sipan@src.gnome.org> | 1999-02-16 13:43:11 +0800 |
commit | aa409e48dd547449508e6ff6e60bccae4e9988d9 (patch) | |
tree | 9c383258712e6f369fe3f64679ef2f7ff4408bec /calendar/main.c | |
parent | 3009c95aca7765f5be502227265ff5de2d842602 (diff) | |
download | gsoc2013-evolution-aa409e48dd547449508e6ff6e60bccae4e9988d9.tar gsoc2013-evolution-aa409e48dd547449508e6ff6e60bccae4e9988d9.tar.gz gsoc2013-evolution-aa409e48dd547449508e6ff6e60bccae4e9988d9.tar.bz2 gsoc2013-evolution-aa409e48dd547449508e6ff6e60bccae4e9988d9.tar.lz gsoc2013-evolution-aa409e48dd547449508e6ff6e60bccae4e9988d9.tar.xz gsoc2013-evolution-aa409e48dd547449508e6ff6e60bccae4e9988d9.tar.zst gsoc2013-evolution-aa409e48dd547449508e6ff6e60bccae4e9988d9.zip |
Internationalization Police (Interpol)
* main.c: Use N_() macro for color settings labels in
color_props structure.
svn path=/trunk/; revision=672
Diffstat (limited to 'calendar/main.c')
-rw-r--r-- | calendar/main.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/calendar/main.c b/calendar/main.c index be26bcff46..c5c4696ef9 100644 --- a/calendar/main.c +++ b/calendar/main.c @@ -50,13 +50,13 @@ int startup_hidden = 0; * values specified here are the defaults for the program. */ struct color_prop color_props[] = { - { 0x3e72, 0x35ec, 0x8ba2, "Outline:", "/calendar/Colors/outline" }, - { 0xffff, 0xffff, 0xffff, "Headings:", "/calendar/Colors/headings" }, - { 0xf26c, 0xecec, 0xbbe7, "Empty days:", "/calendar/Colors/empty_bg" }, - { 0xfc1e, 0xf87f, 0x5f80, "Appointments:", "/calendar/Colors/mark_bg" }, - { 0xd364, 0xc6b7, 0x7969, "Highlighted day:", "/calendar/Colors/prelight_bg" }, - { 0x01f0, 0x01f0, 0x01f0, "Day numbers:", "/calendar/Colors/day_fg" }, - { 0x0000, 0x0000, 0xffff, "Current day's number:", "/calendar/Colors/current_fg" } + { 0x3e72, 0x35ec, 0x8ba2, N_("Outline:"), "/calendar/Colors/outline" }, + { 0xffff, 0xffff, 0xffff, N_("Headings:"), "/calendar/Colors/headings" }, + { 0xf26c, 0xecec, 0xbbe7, N_("Empty days:"), "/calendar/Colors/empty_bg" }, + { 0xfc1e, 0xf87f, 0x5f80, N_("Appointments:"), "/calendar/Colors/mark_bg" }, + { 0xd364, 0xc6b7, 0x7969, N_("Highlighted day:"), "/calendar/Colors/prelight_bg" }, + { 0x01f0, 0x01f0, 0x01f0, N_("Day numbers:"), "/calendar/Colors/day_fg" }, + { 0x0000, 0x0000, 0xffff, N_("Current day's number:"), "/calendar/Colors/current_fg" } }; /* Number of active calendars */ |