How to use _() inside an array ?

Nick Schermer nickschermer at gmail.com
Fri Jun 9 15:45:43 CEST 2006


{ "extract-to=FOLDER", 'x', 0, G_OPTION_ARG_FILENAME,
  &extract_path, "Extract the archive to the specified folder and
  quits.", NULL },

Should be:

{ N_("extract-to"), 'x', 0, G_OPTION_ARG_FILENAME,
  &extract_path, N_("Extract the archive to the specified folder and
  quits."), N_("FOLDER")},

IIRC...

Nick



More information about the Xfce4-dev mailing list