Re: i8n problems




> 
> Also, I have some strings that are in arrays:
> 
> gchar *message_list_titles[] = {
> 	  N_("Status"), 
> 	  N_("From"),
> 	  N_("Subject"),
> 	  N_("Received"),
> 	  N_("mId")
> };

Just make sure that you use _() when acceswsing them:

     puts (_(message_list_titles [0]));

Miguel



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]