1 # ===================================================================== 2 # it.rc: 'it' national language tokens for rc(1) programs. 3 # Copyright (c) 2007,2009 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 switch ($CSA_PGM($#CSA_PGM)) { 21 22 case cmtView 23 nls.some.var = 'some value' # example definition. 24 25 case registerUser 26 nls.reg.fullname.empty = anonimo 27 28 case updateUser 29 nls.auth.fullname.empty = anonimo 30 31 case cartCheckout 32 nls.shop.fullname = 'nome e cognome' 33 nls.shop.email = e-mail 34 nls.shop.phone = telefono 35 nls.shop.town = città 36 nls.shop.addr = 'via e n. civico' 37 nls.shop.zip = CAP 38 nls.shop.state = provincia 39 nls.shop.ctry = paese 40 nls.shop.iorg = 'intestatario ricevuta/fattura' 41 nls.shop.vat = 'P.IVA o cod. fiscale' 42 nls.shop.iaddr = 'indirizzo di fatturazione' 43 nls.shop.itown = 'città di fatturazione' 44 nls.shop.istate = 'provincia di fatturazione' 45 nls.shop.izip = 'CAP di fatturazione' 46 nls.shop.ictry = 'paese di fatturazione' 47 nls.shop.default = standard 48 nls.shop.totals = Totale 49 nls.shop.cols = (Articolo 'Q.ta`' U.Mis. Descrizione 50 Importo Tasse Totali) 51 52 case editPage 53 nls.cmt.accept = accetta 54 nls.cmt.deny = rifiuta 55 56 } 57 58 # EOF