From: martin-s Date: Sun, 25 May 2008 16:41:06 +0000 (+0000) Subject: Fix:Core:Added comments for translators X-Git-Tag: navit-0.5.0.5194svn~4074 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7e20b2a083a567070cbcba49e5df96930d4ec3b;p=profile%2Fivi%2Fnavit.git Fix:Core:Added comments for translators git-svn-id: https://navit.svn.sourceforge.net/svnroot/navit/trunk@1078 ffa7fe5e-494d-0410-b361-a75ebd5db220 --- diff --git a/navit/navit/navigation.c b/navit/navit/navigation.c index 8f3b330..b9ce76e 100644 --- a/navit/navit/navigation.c +++ b/navit/navit/navigation.c @@ -475,15 +475,19 @@ navigation_item_destination(struct navigation_itm *itm, struct navigation_itm *n } switch (sex) { case -1: + /* TRANSLATORS: Arguments: 1: Command 2: Street Name 3: Separator (Space if required), 4: Systematic Street Name */ ret=g_strdup_printf(_("%sinto the street %s%s%s"),prefix,itm->name1, sep, name2); break; case 1: + /* TRANSLATORS: Arguments: 1: Command 2: Street Name 3: Separator (Space if required), 4: Systematic Street Name. Male form. The stuff after | doesn't have to be included */ ret=g_strdup_printf(_("%sinto the %s%s%s|male form"),prefix,name1, sep, name2); break; case 2: + /* TRANSLATORS: Arguments: 1: Command 2: Street Name 3: Separator (Space if required), 4: Systematic Street Name. Female form. The stuff after | doesn't have to be included */ ret=g_strdup_printf(_("%sinto the %s%s%s|female form"),prefix,name1, sep, name2); break; case 3: + /* TRANSLATORS: Arguments: 1: Command 2: Street Name 3: Separator (Space if required), 4: Systematic Street Name. Neutral form. The stuff after | doesn't have to be included */ ret=g_strdup_printf(_("%sinto the %s%s%s|neutral form"),prefix,name1, sep, name2); break; }