1	# =====================================================================
     2	# zh_CN.awk: Simplified Chinese NLS tokens for AWK programs.
     3	# Copyright (c) 2011 Carlo Strozzi
     4	#
     5	# This program is free software; you can redistribute it and/or modify
     6	# it under the terms of the GNU General Public License as published by
     7	# the Free Software Foundation; version 2 dated June, 1991.
     8	#
     9	# This program is distributed in the hope that it will be useful,
    10	# but WITHOUT ANY WARRANTY; without even the implied warranty of
    11	# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12	# GNU General Public License for more details.
    13	#
    14	# You should have received a copy of the GNU General Public License
    15	# along with this program; if not, write to the Free Software
    16	# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    17	#
    18	# =====================================================================
    19	
    20	BEGIN {
    21	
    22	  delete _NLSMAP				# just in case.
    23	
    24	  _NLSMAP[_NULL,_NULL,"shipping/handling"] = "Shipping+Handling"
    25	  _NLSMAP[_NULL,_NULL,"anonymous"] = "Anonymous"
    26	  _NLSMAP["listAttachments",_NULL,"private"] = "Private"
    27	  _NLSMAP["listAttachments",_NULL,"public"] = "Public"
    28	  _NLSMAP["cmtView",_NULL,"Re: "] = "Re: "
    29	  _NLSMAP["cmtView",_NULL,"banned"] = "- banned by moderator -"
    30	  _NLSMAP["cmtList",_NULL,"banned"] = "- banned by moderator -"
    31	  _NLSMAP["pageHistory",_NULL,"current"] = "- current -"
    32	  _NLSMAP[_NULL,_NULL,"tw-recent-pages"] = "Recent pages"
    33	  _NLSMAP[_NULL,_NULL,"tw-recent-headlines"] = "Recent headlines"
    34	  _NLSMAP[_NULL,_NULL,"tw-trackback-form"] = "Trackback form"
    35	  _NLSMAP[_NULL,_NULL,"tw-page-trackbacks"] = "Page trackbacks"
    36	  _NLSMAP[_NULL,_NULL,"tw-recent-changes"] = "Recent changes"
    37	  _NLSMAP[_NULL,_NULL,"tw-recent-comments"] = "Recent comments"
    38	  _NLSMAP[_NULL,_NULL,"tw-group-cloud"] = "Tag cloud"
    39	  _NLSMAP[_NULL,_NULL,"tw-cat-cloud"] = "Categories"
    40	  _NLSMAP[_NULL,_NULL,"tw-reg-form"] = "Subscription form"
    41	  _NLSMAP[_NULL,_NULL,"tw-shop-form"] = "Shopping form"
    42	  _NLSMAP[_NULL,_NULL,"tw-editor-menu"] = "Control panel"
    43	  _NLSMAP[_NULL,_NULL,"tw-group-yearlist"] = "Archives"
    44	  _NLSMAP[_NULL,_NULL,"tw-group-sourcelist"] = "TypeWriter Source Code"
    45	  _NLSMAP[_NULL,_NULL,"site map"] = "Site Map"
    46	
    47	}
    48