1 | <?php
|
---|
2 | /************************************************************************/
|
---|
3 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
4 | /* by Roberto Gigli & Luciano Apolito */
|
---|
5 | /* http://www.eleonline.it */
|
---|
6 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
7 | /* lang_it.php Linguaggio Italiano */
|
---|
8 | /************************************************************************/
|
---|
9 | global $tipo_cons;
|
---|
10 | switch ($tipo_cons){
|
---|
11 | case '':
|
---|
12 | define("_CONSULTAZIONE","Elections");
|
---|
13 | break;
|
---|
14 | case 1:
|
---|
15 | define("_CONSULTAZIONE","Provincial Elections");
|
---|
16 | define("_GRUPPO","Candidate for Presidente");
|
---|
17 | define("_GRUPPOLOGO","Presidente Logo");
|
---|
18 | define("_PRESI","President");
|
---|
19 | define("_CONSI","Councilman");
|
---|
20 | define("_DESCRCONS","PROVINCIAL");
|
---|
21 | break;
|
---|
22 | case 2:
|
---|
23 | define("_CONSULTAZIONE","Referendum");
|
---|
24 | define("_GRUPPO","Referendum Question");
|
---|
25 | define("_GRUPPOLOGO","Logo");
|
---|
26 | define("_PRESI","Question");
|
---|
27 | define("_DESCRCONS","REFERENDUM");
|
---|
28 | break;
|
---|
29 | case 3:
|
---|
30 | define("_CONSULTAZIONE","Communal Elections");
|
---|
31 | define("_GRUPPO","Candidate City Mayor");
|
---|
32 | define("_GRUPPOLOGO","Mayor Logo");
|
---|
33 | define("_PRESI","Mayor");
|
---|
34 | define("_CONSI","Councilman");
|
---|
35 | define("_SOLO_GRUPPO","Ballots for candidate Mayor only");
|
---|
36 | define("_VOTI_LISTA","Ballots for the list");
|
---|
37 | define("_LISTA","List");
|
---|
38 | define("_LISTAPREF","List and Candidate");
|
---|
39 |
|
---|
40 | break;
|
---|
41 | case 4:
|
---|
42 | define("_GRUPPO","Candidate President");
|
---|
43 | define("_LISTA","List");
|
---|
44 | define("_LISTAPREF","List and Candidate");
|
---|
45 | break;
|
---|
46 | case 5:
|
---|
47 | define("_CONSULTAZIONE","Second Round");
|
---|
48 | define("_GRUPPO","Candidate Mayor");
|
---|
49 | define("_GRUPPOLOGO","Mayor Logo");
|
---|
50 | define("_PRESI","Mayor");
|
---|
51 | define("_DESCRCONS","SECOND ROUND");
|
---|
52 | break;
|
---|
53 | case 6:
|
---|
54 | define("_CONSULTAZIONE","Consultazione Camera");
|
---|
55 | define("_GRUPPO","Lista");
|
---|
56 | define("_GRUPPOLOGO","Logo della Lista");
|
---|
57 | break;
|
---|
58 | case 7:
|
---|
59 | define("_CONSULTAZIONE","Consultazione Senato");
|
---|
60 | define("_GRUPPO","Lista");
|
---|
61 | define("_GRUPPOLOGO","Logo della Lista");
|
---|
62 | break;
|
---|
63 | case 8:
|
---|
64 | define("_CONSULTAZIONE","European Parliament Election");
|
---|
65 | define("_GRUPPO","List");
|
---|
66 | define("_LISTA","List");
|
---|
67 | define("_LISTAPREF","List and Candidate");
|
---|
68 | define("_GRUPPOLOGO","List Logo");
|
---|
69 | define("_CONSI","List Candidate");
|
---|
70 | break;
|
---|
71 | case 9:
|
---|
72 | define("_CONSULTAZIONE","Regional Parliament Election");
|
---|
73 | define("_GRUPPO","Candidate for President");
|
---|
74 | define("_CONSI","List Candidate");
|
---|
75 | define("_LISTA","List");
|
---|
76 | define("_LISTAPREF","List and Candidate");
|
---|
77 | break;
|
---|
78 | case 10: //dal 2006 per senato e camera si ha un raggruppamento delle liste ma senza possibilità di voto per il gruppo (solo in italia!)
|
---|
79 | define("_CONSULTAZIONE","Senato Election");
|
---|
80 | define("_GRUPPO","Groupings");
|
---|
81 | break;
|
---|
82 | case 11:
|
---|
83 | define("_CONSULTAZIONE","Camera Election");
|
---|
84 | define("_GRUPPO","Groupings");
|
---|
85 | break;
|
---|
86 | case 12:
|
---|
87 | define("_CONSULTAZIONE","Provincial Elections");
|
---|
88 | define("_GRUPPO","Candidate for Presidente");
|
---|
89 | define("_GRUPPOLOGO","Presidente Logo");
|
---|
90 | define("_PRESI","President");
|
---|
91 | define("_CONSI","Councilman");
|
---|
92 | define("_DESCRCONS","PROVINCIAL");
|
---|
93 | break;
|
---|
94 | case 13:
|
---|
95 | define("_CONSULTAZIONE","Second Round");
|
---|
96 | define("_GRUPPO","Candidate President");
|
---|
97 | define("_GRUPPOLOGO","President Logo");
|
---|
98 | define("_PRESI","President");
|
---|
99 | define("_DESCRCONS","SECOND ROUND");
|
---|
100 | break;
|
---|
101 | case 14:
|
---|
102 | define("_CONSULTAZIONE","European Parliament Election");
|
---|
103 | define("_GRUPPO","List");
|
---|
104 | define("_GRUPPOLOGO","List Logo");
|
---|
105 | define("_CONSI","List Candidate");
|
---|
106 | define("_LISTA","List");
|
---|
107 | define("_LISTAPREF","List and Candidate");
|
---|
108 | break;
|
---|
109 | case 15:
|
---|
110 | define("_CONSULTAZIONE","Camera Election");
|
---|
111 | define("_GRUPPO","Groupings");
|
---|
112 | break;
|
---|
113 | case 16:
|
---|
114 | define("_CONSULTAZIONE","Senato Election");
|
---|
115 | define("_GRUPPO","Groupings");
|
---|
116 | break;
|
---|
117 | case 17:
|
---|
118 | define("_CONSULTAZIONE","Regional Parliament Election");
|
---|
119 | define("_GRUPPO","Candidate for President");
|
---|
120 | define("_LISTA","List");
|
---|
121 | define("_LISTAPREF","List and Candidate");
|
---|
122 | break;
|
---|
123 | case 18:
|
---|
124 | define("_CONSULTAZIONE","Camera Election");
|
---|
125 | define("_GRUPPO","Group Candidate");
|
---|
126 | define("_SOLO_GRUPPO","Ballots for Group Candidate only");
|
---|
127 | define("_LISTA","Linked List");
|
---|
128 | define("_LISTAPREF","List and Candidate");
|
---|
129 | define("_CANDIDATO","Blocked List");
|
---|
130 |
|
---|
131 | define("_DESCRCONS","CAMERA");
|
---|
132 | break;
|
---|
133 | case 19:
|
---|
134 | define("_CONSULTAZIONE","Senato Election");
|
---|
135 | define("_GRUPPO","Group Candidate");
|
---|
136 | define("_SOLO_GRUPPO","Ballots for Group Candidate only");
|
---|
137 | define("_LISTA","Linked List");
|
---|
138 | define("_LISTAPREF","List and Candidate");
|
---|
139 | define("_CANDIDATO","Blocked List");
|
---|
140 |
|
---|
141 | define("_DESCRCONS","SENATO");
|
---|
142 | break;
|
---|
143 |
|
---|
144 | }
|
---|
145 |
|
---|
146 |
|
---|
147 | if($tipo_cons==12 or $tipo_cons==14 or $tipo_cons==15 or $tipo_cons==16 or $tipo_cons==17){
|
---|
148 | define("_SCEGLI_CIRCO","Choose Borough");
|
---|
149 | define("_ELE_CIRCO","Borough Election");
|
---|
150 | define("_CIRCO","Borough");
|
---|
151 | define("_CIRCOS","Boroughs");
|
---|
152 | define("_IDCIRC","Id Borough ");
|
---|
153 | define("_CIRCS","Boroughs");
|
---|
154 | }else{
|
---|
155 | define("_SCEGLI_CIRCO","Choose Constituency");
|
---|
156 | define("_ELE_CIRCO","Constituency Election");
|
---|
157 | define("_CIRCO","Constituency");
|
---|
158 | define("_CIRCOS","Constituencies");
|
---|
159 | define("_IDCIRC","Id circos. ");
|
---|
160 | define("_CIRCS","Constituencies");
|
---|
161 | }
|
---|
162 | define("_VISAFFMF","Gender votes");
|
---|
163 | define("_DISGIUNTO","One ballot for two separate votes?");
|
---|
164 | define("_RIEPILOGO","Totals");
|
---|
165 | define("_SOLOLIS","Votes to lists only");
|
---|
166 | define("_PROGRAM","Program");
|
---|
167 | define("_ELIMINA","DELETE");
|
---|
168 | define("_SPUNTAELIMINA","Check to enable deletion:");
|
---|
169 | define("_HELP","Help On Line");
|
---|
170 | define("_NOTAOP","");
|
---|
171 | define("_SISTEMA_MAGGIORITARIO","Majority Rules");
|
---|
172 | define("_SISTEMA_PROPORZIONALE","Proportional");
|
---|
173 | define("_INDIRIZZOWEB1","URL of the server");
|
---|
174 | define("_SCARICACONS","Choose consultation");
|
---|
175 | define("_SCELTACOMUNE","Choose the zone");
|
---|
176 | define("_SCARICA","Download lists");
|
---|
177 | define("_IMPORTA","Import lists");
|
---|
178 | define("_CONFIGDEFAULT","General configuration");
|
---|
179 | define("_CONFIGURAZIONE","Site configuration");
|
---|
180 | define("_TEMA","Theme");
|
---|
181 | define("_TESTATA","Header imagine");
|
---|
182 | define("_BLOCCO","Show lateral block?");
|
---|
183 | define("_MULTICOMUNE","Managing more towns?");
|
---|
184 | define("_PREFIX","Table prefix");
|
---|
185 | define("_ADMINMAIL","administrator mail");
|
---|
186 | define("_SITEURL","Site URL or IP");
|
---|
187 | define("_SITENAME","Site name");
|
---|
188 | define("_SITEISTAT","Default<br>town to show");
|
---|
189 | define("_LANGUAGE","Default language (it, en...");
|
---|
190 | define("_FLASH","Show flash animations?");
|
---|
191 | define("_DISPLAYERRORS","debug on/off");
|
---|
192 | define("_FILEOUT","sql file to store input data");
|
---|
193 |
|
---|
194 | define("_LIMITE","Majority/proportional");
|
---|
195 | define("_CONSPRED","Set default election");
|
---|
196 | define("_STEMMA","Stemma");
|
---|
197 | define("_CONSIN","Mayor not elected will be councilman?");
|
---|
198 | define("_INFPREMIO","Majority premium %");
|
---|
199 | define("_LISTINFSBAR","Sbarramento %");
|
---|
200 | define("_INFMINPREMIO","Premio di maggioranza<br>solo oltre %");
|
---|
201 | define("_LISTINFCONTA","I voti di lista sotto lo sbarramento<br>vengono conteggiati per il gruppo?");
|
---|
202 | define("_SUPPREMIO","Premio di maggiornaza %");
|
---|
203 | define("_SUPSBAR","Sbarramento %");
|
---|
204 | define("_SUPMINPREMIO","Premio di maggioranza<br>solo oltre %");
|
---|
205 | define("_LISTSUPCONTA","I voti di lista sotto lo sbarramento<br>vengono conteggiati per il gruppo?");
|
---|
206 | define("_NOFASCIA","Solo maggioritario");
|
---|
207 | define("_RESTORE","Restore");
|
---|
208 | define("_CONFCONS","Tipi Consiglio");
|
---|
209 | define("_CONF","Legge elettorale");
|
---|
210 |
|
---|
211 |
|
---|
212 | define("_MEX_RESTORE_FAILED","WARNING! Restore has failed.");
|
---|
213 | define("_MEX_RESTORE_OK","DATA RESTORE IS OK");
|
---|
214 | define("_RESTORE","Restore");
|
---|
215 | define("_BACKUP","Backup");
|
---|
216 | define("_SEL_DATA_FILE","Warning! you can restore data only if it came from the same database! (or database replica)<br> Choose file to restore");
|
---|
217 | define("_SEL_DATA_FILE2","Warning! your data in current consultation will be overwritten!<br> Choose file to import");
|
---|
218 | define("_TEST","If you wont to test Eleonline start inserting username \"suser\" and password \"test\"");
|
---|
219 | define("_GESTIONE","managing vote counting and publishing results");
|
---|
220 | define("_TIPO_ADM","Managing Types");
|
---|
221 | define("_LINGUA","Language");
|
---|
222 | define("_FASCIA","Citizens");
|
---|
223 | define("_TUTTESEDI","All polling stations");
|
---|
224 | define("_ATT_VOTI","Warning! ballots");
|
---|
225 | define("_ATT_VOTANTI","Warning! voters");
|
---|
226 | define("_NO_TOT_VOTI","is not equal to the total ballots");
|
---|
227 | define("_NO_VAL_VOTI","is not equal to the valid ballots");
|
---|
228 | define("_ATT_VOTI_REF","Warning! Inserted ballots for the Referendum n.");
|
---|
229 | define("_ATT_VOTANTI_REF","Warning! Inserted final ballots for the Referendum n.");
|
---|
230 | define("_NO_SOMMA","is not equal to the total ballots:");
|
---|
231 | define("_COD_NV","Not valid code ");
|
---|
232 | define("_REFERENDUM","Referendum");
|
---|
233 | define("_CON_GRUPPI","With groupings");
|
---|
234 | define("_NO_VOTO_GRUPPO","Not to vote for the Group");
|
---|
235 | define("_LISTE_UNI","One candidate for list");
|
---|
236 | define("_NO_VOTO_LISTA","Not to vote for the list");
|
---|
237 | define("_NO_VOTO_CANDI","Not to vote for the candidates");
|
---|
238 | define("_BALLO","Second round");
|
---|
239 | define("_DEFCONS","Define the characteristics of the election");
|
---|
240 | define("_SOLO_GRUPPO","Ballots to groups only");
|
---|
241 | define("_VOTI_LISTA","Ballots to lists");
|
---|
242 | define("_GENCONS0","Referendum");
|
---|
243 | define("_GENCONS1","Second round");
|
---|
244 | define("_GENCONS2","One candidate for list");
|
---|
245 | define("_GENCONS3","Groups and Lists but no ballots for candidates");
|
---|
246 | define("_GENCONS4","More candidates for list");
|
---|
247 | define("_GENCONS5","Groups and Lists and ballots for candidates");
|
---|
248 | define("_CAMBIOPWD","Change Password");
|
---|
249 | define("_CHGPWD","Password change");
|
---|
250 | define("_ERRPWD","WARNING: ERROR INSERTING PASSWORD!");
|
---|
251 | define("_OLDPWD","Old Password");
|
---|
252 | define("_NEWPWD1","New Password");
|
---|
253 | define("_NEWPWD2","New Password again");
|
---|
254 | define("_YES","Yes");
|
---|
255 | define("_ISCRITTI","Enrolled");
|
---|
256 | define("_INSEZ","in the section");
|
---|
257 | define("_PERC","Perc.");
|
---|
258 | define("_DOMAGGIORNA","Really do you wont to change voters number in");
|
---|
259 | define("_UPDATE","Update");
|
---|
260 | define("_ERRORE","Error");
|
---|
261 | define("_COME","How to vote");
|
---|
262 | define("_NUMERI","Useful numbers");
|
---|
263 | define("_SERVIZI","Services");
|
---|
264 | define("_LINK","Useful links");
|
---|
265 | define("_CONSULTAZIONI","Elections");
|
---|
266 | define("_OPERATORI","Operators");
|
---|
267 | define("_AGGIUNGI","Add");
|
---|
268 | define("_COLLEGI","Districts");
|
---|
269 | define("_DEFCOMUNE","Cities");
|
---|
270 | define("_CODICE","Code");
|
---|
271 | define("_CENTRALINO","Telephone");
|
---|
272 | define("_EMAIL","E-mail");
|
---|
273 | define("_FILTRO","Search mask");
|
---|
274 | define("_INSCOMUNE","Authorize Cities");
|
---|
275 | define("_CONSULTAZIONE_ADM","Election");
|
---|
276 | define("_AMMINISTRATORI", "Administrators");
|
---|
277 | define("_PASSWORD","Password");
|
---|
278 | define("_RIPETI","Password again");
|
---|
279 | define("_COMPLESSIVO","all");
|
---|
280 | define("_CONTR_CONS","Verification of the ballots to the lists");
|
---|
281 | define("_CONTR_GRUP","Verification of the ballots to the groups");
|
---|
282 | define("_DATAIN","Starting Date");
|
---|
283 | define("_DATAFINE","Ending Date");
|
---|
284 | define("_GEST","Managing");
|
---|
285 | define("_MODIFY","Modify");
|
---|
286 | define("_ESCI","Exit");
|
---|
287 | define("_POPOLA","Import");
|
---|
288 | define("_SOSPESO","Suspended");
|
---|
289 | define("_IMPOSTA_DATI","Administrator");
|
---|
290 | define("_INSERISCE_DATI","Operator");
|
---|
291 | define("_UTENTE","User");
|
---|
292 | define("_PERMESSI","Privileges");
|
---|
293 | define("_NULLA","NOT VALID");
|
---|
294 | define("_ATTIVA","IN USE");
|
---|
295 | define("_ATTIVO","In use");
|
---|
296 | define("_CHIUSA","CLOSED");
|
---|
297 | define("_ASOLA_LISTA","to the List");
|
---|
298 | define("_ASOLO_GRUPPO","to the Groups only");
|
---|
299 | define("_COLLEGIO","district");
|
---|
300 | define("_A","to");
|
---|
301 | define("_DA","from");
|
---|
302 | define("_DI","of");
|
---|
303 | define("_COMUNE","City");
|
---|
304 | define("_VIS_PERC","Show percentages");
|
---|
305 | define("_SEZIONE","Polling station");
|
---|
306 | define("_SEZIONI","Polling Stations");
|
---|
307 | define("_UOMINI","Men");
|
---|
308 | define("_DONNE","Women");
|
---|
309 | define("_COMPLESSIVI","in total");
|
---|
310 | define("_VOTIE","Express ballots");
|
---|
311 | define("_SEZNOS","Polling Stations to be Counted");
|
---|
312 | define("_SEZSCR","Counted Polling Stations");
|
---|
313 | define("_LISTA","List");
|
---|
314 | define("_PREFLISTA","Ballots to the list");
|
---|
315 | define("_CANDIDATO","Candidate");
|
---|
316 | define("_GESAMMIN","Admin Management ");
|
---|
317 | define("_DESCR","Description");
|
---|
318 | define("_IMMCONS","Insert Election");
|
---|
319 | define("_DOMCANCELLA","Are you sure to delete ");
|
---|
320 | define("_FUNZIONI","Modify function ");
|
---|
321 | define("_NEXT_MATCH","Next");
|
---|
322 | define("_PREV_MATCH","Previous");
|
---|
323 | define("_NEXT","Next");
|
---|
324 | define("_PREV","Previous");
|
---|
325 | define("_SCELTA","Choose");
|
---|
326 | define("_SCEGLI","Choose ");
|
---|
327 | define("_SEDE","Electoral Center ");
|
---|
328 | define("_NUM","Number ");
|
---|
329 | define("_IDCONS","Id election ");
|
---|
330 | define("_IMM","Inserting");
|
---|
331 | define("_TEL","Telephone");
|
---|
332 | define("_INDIRIZZO","Address");
|
---|
333 | define("_FAX","Fax");
|
---|
334 | define("_RESP","Section head");
|
---|
335 | define("_MASCHI","Men ");
|
---|
336 | define("_FEMMINE","Women ");
|
---|
337 | define("_TOTS","Totals ");
|
---|
338 | define("_TOT","Total ");
|
---|
339 | define("_TOTPREF","Sum of ballots");
|
---|
340 | define("_GESTIMM","Logo Management");
|
---|
341 | define("_SIMBOLO","Logo");
|
---|
342 | define("_INVIOFILE","<font color=\"red\">File upload (jpg,gif or png) for Logo</font>");
|
---|
343 | define("_FILEDAINVIARE","Choose the file to upload");
|
---|
344 | define("_CANCELLAFILE","<font color=\"red\">Delete Logo file</font>");
|
---|
345 | define("_SCELTAFILE","Choose the file to delete");
|
---|
346 | define("_LISTALOGO","List Logo");
|
---|
347 | define("_COGNOME","Surname");
|
---|
348 | define("_NOME","Name");
|
---|
349 | define("_FOTO","Photo");
|
---|
350 | define("_NOTE","Notes");
|
---|
351 | define("_GESSPOGLIO","Managing Electoral Operations");
|
---|
352 | define("_SPOGLIO","Vote counting");
|
---|
353 | define("_VOTI","Ballots");
|
---|
354 | define("_VOTANTI","Electors");
|
---|
355 | define("_PREFERENZE","Ballots");
|
---|
356 | define("_ORA","Time");
|
---|
357 | define("_TITOLO","Title");
|
---|
358 | define("_PREAMBOLO","Summary");
|
---|
359 | define("_CONTENUTO","Text");
|
---|
360 | define("_DATA","Date");
|
---|
361 | define("_VOTID","Women Ballots");
|
---|
362 | define("_VOTIU","Men Ballots");
|
---|
363 | define("_VOTIT","Total of Ballots");
|
---|
364 | define("_VALIDI","Valid Ballots");
|
---|
365 | define("_NULLI","Non Valid Ballots");
|
---|
366 | define("_VOTINULLI","Non Valid Votes");
|
---|
367 | define("_NULLI_LISTE","Non Valid Votes to Lists");
|
---|
368 | define("_BIANCHI","Blank Ballots");
|
---|
369 | define("_CONTESTATI","Contested Ballots");
|
---|
370 | define("_CONTESTATI_LISTE","Contested Ballots to Lists");
|
---|
371 | define("_TOTALEVOTI","Total of Ballots");
|
---|
372 | define("_TOT_ULT","Voters at end");
|
---|
373 | define("_VOTIINS","Inserted Ballots");
|
---|
374 | define("_CANDINS","Inserted Candidates");
|
---|
375 | define("_TOTNON","Total of non valid Ballots");
|
---|
376 | define("_CANDIDATI","Candidates");
|
---|
377 | define("_DATIG","General Informations");
|
---|
378 | define("_AVENTI","Electors"); //Aventi Diritto
|
---|
379 | define("_SI","Yes");
|
---|
380 | define("_NO","No");
|
---|
381 | define("_AFFLUENZE","Affluence");
|
---|
382 | define("_NOTA","The information in this pages, susceptible of modifications, are unofficial. They have pure informative value.");
|
---|
383 | define("_ORE","time");
|
---|
384 | define("_ALLE","at");
|
---|
385 | define("_DEL","of the");
|
---|
386 | define("_STATO","State");
|
---|
387 | define("_OK","Ok");
|
---|
388 | define("_ANCHE","also");
|
---|
389 | define("_VISUALIZZA","Show the data");
|
---|
390 | define("_TIPO","Type");
|
---|
391 | define("_CONSULTA","Election");
|
---|
392 | define("_PERCE","Percentages");
|
---|
393 | define("_RISULTA","Results");
|
---|
394 | define("_PER","for");
|
---|
395 | define("_SEZSCRU","Scrutinate Sections ");
|
---|
396 | define("_SU","on");
|
---|
397 | define("_LA","the");
|
---|
398 | define("_ADMINID","User");
|
---|
399 | define("_ADMINCOME","HOW TO VOTE - Administration");
|
---|
400 | define("_EDITORIAL","General Informations");
|
---|
401 | define("_EDITORIALADMIN","Managing Informations");
|
---|
402 | define("_EDITINFO","Edit informations");
|
---|
403 | define("_EDIT","Edit");
|
---|
404 | define("_ADD","Add");
|
---|
405 | define("_NEW","New");
|
---|
406 | define("_DELETE","Delete");
|
---|
407 | define("_COPIA","Copy");
|
---|
408 | define("_STRUTTURA","Structure");
|
---|
409 | define("_ADDCOME","Add information");
|
---|
410 | define("_ADDPRES","Add candidate for president");
|
---|
411 | define("_ALLCOME","Inserted Informations");
|
---|
412 | define("_REMOVEINFO","Are you sure to delete this information? ");
|
---|
413 | define("_IMAGE","Immagine informazione");
|
---|
414 | define("_CONTINUA","continue <img src=\"images/site.gif\" align=\"center\" border=\"0\">");
|
---|
415 | define("_MESSAGEPREAMBLE","Preamble (max 500 char)");
|
---|
416 | define("_ADMINNUMERI","Numbers - Administration");
|
---|
417 | define("_ADMINSERVIZI","Services - Administration");
|
---|
418 | define("_ADMINLINK","Links - Administration");
|
---|
419 | define("_CONTR_ESPR","Ballots Verification");
|
---|
420 | define("_CONTR_PREF","Preferences Verification");
|
---|
421 | // Note
|
---|
422 | //define("_ENTE","Comune di Guidonia Montecelio (Provincia di Roma)");
|
---|
423 | //define("_NOTACSV","Notes: I dati sono estratti dal sito del ");
|
---|
424 | //define("_DISC1","Ogni rappresentazione ed uso e' consentita citando la fonte dei dati");
|
---|
425 | //define("_SITO","http://www.guidonia.org ");
|
---|
426 | // Copyright
|
---|
427 | define("_SORALDO","Eleonline: Modulo elettorale");
|
---|
428 | define("_VERS","versione 1.0 beta ");
|
---|
429 | define("_NON","Not");
|
---|
430 | define("_EXPORT","Export");
|
---|
431 | define("_TABULA","(tab formatted)");
|
---|
432 | define("_GRAFICI","Diagrams ");
|
---|
433 | define("_ALL","All ");
|
---|
434 | //define("_MAIN","Qui sono e saranno presenti i dati e i risultati delle
|
---|
435 | //consultazioni elettorali svolte nel ");
|
---|
436 | define("_THEMES","Tema Grafico");
|
---|
437 | define("_ACTIVE","Activ ");
|
---|
438 | define("_BLOCCHI","Lateral blocks");
|
---|
439 | define("_BLOCKS","Blocks");
|
---|
440 | define("_MENUCONF","Configuration Menu for graphical aspect");
|
---|
441 | define("_GESFILE","Image Files Managing");
|
---|
442 | define("_LOGO","Image or Logo");
|
---|
443 | define("_ELETTORI","Enrolled");
|
---|
444 | define("_EDIFICIO","Building");
|
---|
445 | define("_MAPPA","Map");
|
---|
446 | define("_LINK","Link");
|
---|
447 | define("_NUMERITEL","Telephon");
|
---|
448 | define("_DESCRAPP","Deep Description");
|
---|
449 | define("_DESCRLINK","Short description for the link");
|
---|
450 | define("_HELPHTML","You can use all HTML tags. Example: <font color=\"#ff0000\">< br > </font>new line</pre>");
|
---|
451 | define("_SUPER","S<br>U<br>P<br>E<br>R<br>U<br>S<br>E<br>R");
|
---|
452 | define("_ADMIN","A<br>D<br>M<br>I<br>N<br>I<br>S<br>T<br>R<br>A<br>T<br>O<br>R");
|
---|
453 | define("_OPER","O<br>P<br>E<br>R<br>A<br>T<br>O<br>R");
|
---|
454 | define("_SCELTA_CONS","Choose an Election");
|
---|
455 | define("_WIDGET","Widget");
|
---|
456 | define("_PLUGINS","Plugins");
|
---|
457 | define("_CONFIGWIDGET","Widget Configuration");
|
---|
458 | ?>
|
---|