1 # ===================================================================== 2 # it.awk: it national language tokens for AWK programs. 3 # Copyright (c) 2007-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,"to be agreed"] = "da concordare" 25 _NLSMAP[_NULL,_NULL,"shipping/handling"] = "Spedizione" 26 _NLSMAP[_NULL,_NULL,"units"] = "pezzi" 27 _NLSMAP[_NULL,_NULL,"discount"] = "sconto" 28 _NLSMAP["listAttachments",_NULL,"private"] = "privati" 29 _NLSMAP["listAttachments",_NULL,"public"] = "pubblici" 30 _NLSMAP["cmtView",_NULL,"Re: "] = "R: " 31 _NLSMAP["cmtView",_NULL,"banned"] = "- censurato dal moderatore -" 32 _NLSMAP["cmtList",_NULL,"banned"] = "- censurato dal moderatore -" 33 _NLSMAP[_NULL,_NULL,"-select-"] = "- selezionare -" 34 _NLSMAP["pageHistory",_NULL,"current"] = "- attuale -" 35 _NLSMAP[_NULL,_NULL,"tw-recent-pages"] = "Pagine recenti" 36 _NLSMAP[_NULL,_NULL,"tw-recent-headlines"] = "Titoli recenti" 37 _NLSMAP[_NULL,_NULL,"tw-trackback-form"] = "Immissione trackback" 38 _NLSMAP[_NULL,_NULL,"tw-page-trackbacks"] = "Elenco trackbacks" 39 _NLSMAP[_NULL,_NULL,"tw-recent-changes"] = "Modifiche recenti" 40 _NLSMAP[_NULL,_NULL,"tw-recent-comments"] = "Commenti recenti" 41 _NLSMAP[_NULL,_NULL,"tw-group-cloud"] = "Parole chiave" 42 _NLSMAP[_NULL,_NULL,"tw-cat-cloud"] = "Categorie" 43 _NLSMAP[_NULL,_NULL,"tw-reg-form"] = "Modulo di iscrizione" 44 _NLSMAP[_NULL,_NULL,"tw-shop-form"] = "Modulo di acquisto" 45 _NLSMAP[_NULL,_NULL,"tw-editor-menu"] = "Pannello di controllo" 46 _NLSMAP[_NULL,_NULL,"tw-group-yearlist"] = "Archivi" 47 _NLSMAP[_NULL,_NULL,"tw-group-sourcelist"] = "Sorgenti TypeWriter" 48 _NLSMAP[_NULL,_NULL,"site map"] = "Mappa del Sito" 49 _NLSMAP[_NULL,_NULL,"continue"] = "continua" 50 _NLSMAP[_NULL,_NULL,"comments"] = "commenti" 51 _NLSMAP["showPage",_NULL,"n/a"] = "non disp." 52 _NLSMAP["listUsers",_NULL,"deleted"] = "cancellato" 53 _NLSMAP["listUsers",_NULL,"suspended"] = "sospeso" 54 _NLSMAP[_NULL,_NULL,"Earth"] = "Terra" 55 _NLSMAP[_NULL,_NULL,"discount"] = "Sconto" 56 57 } 58