commit e8df41ea903485e65d3ce6f34f3a1719d9b70420
Author: Daniele Forsi <da...@fo...>
Date: Wed Jul 11 18:14:16 2012 +0200
Actually use the translation and change capitalization
The N_() macro only marks a string for translation but it's a noop
at compile time.
src/main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/main.c b/src/main.c
index 8be6dfe..1dd44d7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -78,7 +78,7 @@ main (int argc, char *argv[])
gtk_init (&argc, &argv);
#endif
- ctx = g_option_context_new (N_("- Interface with your ipod"));
+ ctx = g_option_context_new (_("- Interface with your iPod"));
g_option_context_add_group (ctx, gtk_get_option_group (TRUE));
#ifdef HAVE_GSTREAMER
|