GNOME Bugzilla – Bug 143933
gnome-nettool message needs translator comment
Last modified: 2004-12-22 21:47:04 UTC
#: src/lookup.c:279 msgid "TTL" I guess this means "Time To Live" (and the same TTL abbreviation is probably borrowed from the English one and used in many other languages), but a comment to the translators explaining what this is probably wouldn't hurt. See more about translator comments at http://developer.gnome.org/doc/tutorials/gnome-i18n/developer.html#use-comments.
It was commented, but for indentation the looked two lines above. Just look at: /* Time To Live of a hostname in a name server */ column = gtk_tree_view_column_new_with_attributes (_("TTL"), renderer, "text", LOOKUP_TTL, NULL); Anyway, I copied the commented line over the text: /* Time To Live of a hostname in a name server */ column = gtk_tree_view_column_new_with_attributes /* Time To Live of a hostname in a name server */ (_("TTL"), renderer, "text", LOOKUP_TTL, NULL); That's solve the problem.
Thanks.