============================================================================= The msgcat-x package version 1.1.0 alpha 2002-02-23 16:19 ============================================================================= #====================================================================# #-- COPYRIGHT ----: Nakawe data SE7207250346 # This program is free software; you can redistribute it and/or modify it under the terms of the GNU # General Public License as published by the Free Software Foundation; either version 2 of the License, # or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with this program; if not, # write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA #====================================================================# ----------------------------------------------------------------------------- MSGCATTOPO (msgtopo.tcl) ----------------------------------------------------------------------------- MsgcatToPo $MsgCatFile $PoFile Usage: $MsgCatFile must be a wellformed msgcat-format file as created by Extract_msgcat. Each entry should have the following form and be separated by 1 blank line, the header should also be separated from the first entry with 1 blank line. ---------- #. widget: label #: src/uidrebuild.tcl:33 ::msgcat::mcset sv\ "Make sure that the folder you want to repair\n\ is not currently in use, and then select it by clicking 'Select folder'."\ \ #. widget: tk_dialog #: src/uidrebuild.tcl:37 ::msgcat::mcset sv\ "Warning!"\ \ ---------- All comments must be marked with '#' and all comments must come just before the message strings. The number of commentlines are optional. All message-lines should be placed on their own line. The target string is marked with \ on a separate line. Please not that this procedure is NOT created to convert translated msgcat-files, only untranslated files as examplified above. The resulting file from the above example will look like the following. ---------- #. widget: label #: src/uidrebuild.tcl:33 msgid "" "Make sure that the folder you want to repair\n" "is not currently in use, and then select it by clicking 'Select folder'." msgstr "" #. widget: tk_dialog #: src/uidrebuild.tcl:37 msgid "Warning!" msgstr "" ----------