7 I forgot who started translating this file, email me so i can put your
10 please email new language files to ivan@xpenguin.com
11 copy a language file to messages.<cc>.inc and \
12 edit what $p is on encountering an english phrase.
14 you can start off with messages.blank.inc
16 please notice the punctuation and capitilization.
18 change the $language variable in plotconf.inc after
19 creating a language file.
23 function lookup($phrase) {
26 # start translating the $p here
29 $p = "Mappa di"; break;
32 $p = "preferenze"; break;
35 $p = "localizzami"; break;
38 $p = "IP/Nome host:"; break;
49 # Used in context "(host) is located in"
53 # Used in context "You at (host) are located in"
58 $p = "stato localizzato in"; break;
60 case "cannot be located." :
61 $p = "non può essere localizzato."; break;
63 case "cannot be resolved." :
64 $p = "non può essere risolto."; break;
66 case "is a host in the private IP address range." :
67 $p = "è un host in un range di IP privati."; break;
69 case "does not resolve." :
70 $p = "irrisolvibile."; break;
72 case "is not a valid IP address." :
73 $p = "non è un indirizzo IP valido."; break;
75 case "Temporary lookup failure." :
76 $p = "Errore temporaneo di lookup."; break;
78 case "IP-Atlas Preferences" :
79 $p = "Preferenze IP-Atlas"; break;
81 # make the 'p' lowercase if possible in your language
83 case "IP-Atlas preferences" :
84 $p = "Preferenze IP-Atlas"; break;
86 case "(cookie based)" :
87 $p = "(basato su cookie)"; break;
89 case "Draw mode (defaults guessed for your browser):" :
92 // next two phrases are combined
93 case "Your settings have been saved. You can now try" :
94 $p = "Le tue impostazioni sono state salvate "; break;
96 case "plotting something." :
97 $p = "torna indietro."; break;
99 case "Pointer Preferences (the dot that marks lat/lon):" :
100 $p = "Preferenze puntatore (il simbolo che indica la lat/lon):"; break;
103 $p = "Forma:"; break;
106 $p = "Dimensione:"; break;
109 $p = "Colore:"; break;
112 $p = "Puntatore:"; break;
116 case "Other Preferences:" :
119 case "Earth Image:" :
123 $p = "Colore"; break;
135 case "Diamond Outline" :
141 case "Square Outline" :
172 // return in english if the phrase couldn't be found
179 if($p == "") { $p = $phrase; }