From: Roman Moravcik Date: Thu, 14 Oct 2010 10:44:42 +0000 (+0200) Subject: Updated next bithday text. X-Git-Tag: v0.2-1~9 X-Git-Url: http://git.maemo.org/git/?p=birthday;a=commitdiff_plain;h=cddb1e45864b9330452cc6085660e426c1fc4300 Updated next bithday text. --- diff --git a/src/birthday.c b/src/birthday.c index 8799859..26c71f9 100644 --- a/src/birthday.c +++ b/src/birthday.c @@ -451,7 +451,14 @@ create_bday_liststore (BirthdayData *priv, GList *contacts) age = calc_age(bdate, current_date); next_birthday = calc_next_bday(bdate, current_date); - next_birthday_text = g_strdup_printf(ngettext ("next birthday in %d day", "next birthday in %d days", next_birthday), next_birthday); + + if (next_birthday == 0) + next_birthday_text = g_strdup_printf(_("has birthday today")); + else if (next_birthday == 1) + next_birthday_text = g_strdup_printf(_("will have birthday tomorrow")); + else + next_birthday_text = g_strdup_printf(_("will have birthday in %d days"), next_birthday); + display_column = g_strdup_printf("%s (%d)\n%s, %s", fullname, text_font, text_color, age, birthday_text, next_birthday_text);