Welcome to mirror list, hosted at ThFree Co, Russian Federation.

italian-utf-8.inc.php « lang - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57b32c8a97580c935fd72f4f7782cc6a1ef4ad94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
<?php
/* $Id$ */

/**
 * translated by: Pietro Danesi <danone at users.sourceforge.net>  2002-03-29
 * Revised by:    "DPhantom" <dphantom at users.sourceforge.net>  2002-04-16
 * Revised by:    "Luca Rebellato" <rebeluca at users.sourceforge.net>  2008-10-21
 */

$charset = 'utf-8';
$allow_recoding = TRUE;
$text_dir = 'ltr';
$number_thousands_separator = '.';
$number_decimal_separator = ',';
// shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa
$byteUnits = array('B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB');

$day_of_week = array('Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'); //italian days
$month = array('gen', 'feb', 'mar', 'apr', 'mag', 'giu', 'lug', 'ago', 'set', 'ott', 'nov', 'dic'); //italian months
// See http://www.php.net/manual/en/function.strftime.php to define the
// variable below
$datefmt = '%d %B, %Y at %I:%M %p'; //italian time
$timespanfmt = '%s giorni, %s ore, %s minuti e %s secondi';

$strAbortedClients = 'Fallito';
$strAccessDenied = 'Accesso negato';
$strAccessDeniedCreateConfig = 'La ragione di questo è che probabilmente non hai creato alcun file di configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno.';
$strAccessDeniedExplanation = 'phpMyAdmin ha provato a connettersi al server MySQL, e il server ha rifiutato la connessione. Si dovrebbe controllare il nome dell\'host, l\'username e la password nel file config.inc.php ed assicurarsi che corrispondano alle informazioni fornite dall\'amministratore del server MySQL.';
$strAction = 'Azione';
$strActions = 'Azioni';
$strAddAutoIncrement = 'Aggiungi valore AUTO_INCREMENT';
$strAddClause = 'Aggiungi %s';
$strAddConstraints = 'Aggiungi vincoli';
$strAddDeleteColumn = 'Aggiungi/Cancella campo';
$strAddDeleteRow = 'Aggiungi/Cancella criterio';
$strAddFields = 'Aggiungi %s campo(i)';
$strAddHeaderComment = 'Aggiunge un commento personalizzato all\'header (\\n per tornare a capo)';
$strAddIntoComments = 'Aggiungi nei commenti';
$strAddNewField = 'Aggiungi un nuovo campo';
$strAddPrivilegesOnDb = 'Aggiungi privilegi sul seguente database';
$strAddPrivilegesOnTbl = 'Aggiungi privilegi sulla seguente tabella';
$strAddSearchConditions = 'Aggiungi condizioni di ricerca (corpo della clausola "where"):';
$strAddToIndex = 'Aggiungi all\'indice %s colonna/e';
$strAddUser = 'Aggiungi un nuovo utente';
$strAddUserMessage = 'Hai aggiunto un nuovo utente.';
$strAdministration = 'Amministrazione';
$strAfter = 'Dopo %s';
$strAfterInsertBack = 'Indietro';
$strAfterInsertNewInsert = 'Inserisci un nuovo record';
$strAfterInsertNext = 'Modifica il record successivo';
$strAfterInsertSame = 'Torna a questa pagina';
$strAllowInterrupt = 'di interrompere il processo di importazione nel caso lo script rilevi di essere troppo vicino al tempo limite. Questo potrebbe essere un buon modo di importare grandi file, tuttavia potrebbe interrompere la transazione.';
$strAllTableSameWidth = 'mostra tutte le Tabelle con la stessa larghezza?';
$strAll = 'Tutti';
$strAlterOrderBy = 'Altera tabella ordinata per';
$strAnalyze = 'Analizza';
$strAnalyzeTable = 'Analizza tabella';
$strAnd = 'e';
$strAndThen = 'e quindi';
$strAngularLinks = 'Link angolari';
$strAnIndex = 'Un indice è stato aggiunto in %s';
$strAnyHost = 'Qualsiasi host';
$strAny = 'Qualsiasi';
$strAnyUser = 'Qualsiasi utente';
$strApproximateCount = 'Può essere approssimato. Vedere FAQ 3.11';
$strAPrimaryKey = 'Una chiave primaria è stata aggiunta in %s';
$strArabic = 'Arabo';
$strArmenian = 'Armeno';
$strAscending = 'Crescente';
$strAsDefined = 'Come definito:';
$strAtBeginningOfTable = 'All\'inizio della tabella';
$strAtEndOfTable = 'Alla fine della tabella';
$strAttr = 'Attributi';
$strAutomaticLayout = 'Impaginazione automatica';

$strBack = 'Indietro';
$strBaltic = 'Baltico';
$strBeginCut = 'INIZIO CUT';
$strBeginRaw = 'INIZIO RAW';
$strBinary = 'Binario';
$strBinaryDoNotEdit = 'Tipo di dato Binario - non modificare';
$strBinaryLog = 'Log binario';
$strBinLogEventType = 'Tipo di evento';
$strBinLogInfo = 'Informazioni';
$strBinLogName = 'Nome del Log';
$strBinLogOriginalPosition = 'Posizione originale';
$strBinLogPosition = 'Posizione';
$strBinLogServerId = 'ID del server';
$strBLOBRepositoryDamaged = 'Danneggiato';
$strBLOBRepositoryDisabled = 'Disabilitato';
$strBLOBRepositoryDisable = 'Disabilita';
$strBLOBRepositoryEnable = 'Abilita';
$strBLOBRepositoryEnabled = 'Abilitato';
$strBLOBRepositoryRepair = 'Ripara';
$strBookmarkAllUsers = 'Permetti ad ogni utente di accedere a questo bookmark';
$strBookmarkCreated = 'Segnalibro %s creato';
$strBookmarkDeleted = 'Il bookmark è stato cancellato.';
$strBookmarkLabel = 'Etichetta';
$strBookmarkQuery = 'Query SQL aggiunte ai preferiti';
$strBookmarkReplace = 'Sostituzione dei segnalibri esistenti con lo stesso nome';
$strBookmarkThis = 'Aggiungi ai preferiti questa query SQL';
$strBookmarkView = 'Visualizza solo';
$strBrowseDistinctValues = 'Naviga tra i valori DISTINCT';
$strBrowseForeignValues = 'Sfoglia le opzioni straniere';
$strBrowse = 'Mostra';
$strBufferPoolActivity = 'Attività del Buffer Pool';
$strBufferPool = 'Buffer Pool';
$strBufferPoolUsage = 'Utilizzo del Buffer Pool';
$strBufferReadMissesInPercent = 'Non letto in %';
$strBufferReadMisses = 'Non letto';
$strBufferWriteWaits = 'In attesa di scrittura';
$strBufferWriteWaitsInPercent = 'In attesa di scrittura in %';
$strBulgarian = 'Bulgaro';
$strBusyPages = 'Pagine occupate';
$strBzip = '"compresso con bzip2"';

$strCalendar = 'Calendario';
$strCancel = 'Annulla';
$strCanNotLoadExportPlugins = 'Non posso caricare i plugins di esportazione. Controlla l\'installazione!';
$strCanNotLoadImportPlugins = 'Non posso caricare i plugins di importazione, controlla la tua configurazione!';
$strCannotLogin = 'Impossibile eseguire il login nel server MySQL';
$strCantLoad = 'Impossibile caricare l\'estensione %s,<br />prego controllare la configurazione di PHP';
$strCantLoadRecodeIconv = 'Impossibile caricare l\'estensione iconv o recode necessaria per la conversione del set di caratteri, configurare il PHP per permettere di utilizzare queste estenzioni o disabilitare la conversione dei set di caratteri in phpMyAdmin.';
$strCantRenameIdxToPrimary = 'Impossibile rinominare l\'indice a PRIMARIO!';
$strCantUseRecodeIconv = 'Impossibile utilizzare le funzioni iconv o libiconv o recode_string in quanto l\'estensione deve essere caricata. Controllare la configurazione del PHP.';
$strCardinality = 'Cardinalità';
$strCaseInsensitive = 'case-insensitive';
$strCaseSensitive = 'case-sensitive';
$strCentralEuropean = 'Europeo Centrale';
$strChangeCopyModeCopy = '... mantieni quello vecchio.';
$strChangeCopyMode = 'Crea un nuovo utente con gli stessi privilegi e ...';
$strChangeCopyModeDeleteAndReload = ' ... cancella quello vecchio dalla tabella degli utenti e in seguito ricarica i privilegi.';
$strChangeCopyModeJustDelete = ' ... cancella quello vecchio dalla tabella degli utenti.';
$strChangeCopyModeRevoke = ' ... revoca tutti i privilegi attivi da quello vecchio e in seguito cancellalo.';
$strChangeCopyUser = 'Cambia le Informazioni di Login / Copia Utente';
$strChangeDisplay = 'Scegli il campo da mostrare';
$strChange = 'Modifica';
$strChangePassword = 'Cambia password';
$strCharsetOfFile = 'Set di caratteri del file:';
$strCharsetsAndCollations = 'Set di Caratteri e Collation';
$strCharset = 'Set di caratteri';
$strCharsets = 'Set di caratteri';
$strCheckAll = 'Seleziona tutti';
$strCheck = 'Controlla';
$strCheckOverhead = 'Controllo addizionale';
$strCheckPrivs = 'Controlla i privilegi';
$strCheckPrivsLong = 'Controlla i privilegi per il database "%s".';
$strCheckTable = 'Controlla tabella';
$strChoosePage = 'Prego scegliere una Page da modificare';
$strColComFeat = 'Visualizzazione commenti delle colonne';
$strCollation = 'Collation';
$strColumnNames = 'Nomi delle colonne';
$strColumnPrivileges = 'Privilegi relativi alle colonne';
$strCommand = 'Comando';
$strComment = 'Commenti';
$strComments = 'Commenti';
$strCompatibleHashing = 'Compatibile con MySQL 4.0';
$strCompleteInserts = 'Inserimenti completi';
$strCompression = 'Compressione';
$strCompressionWillBeDetected = 'Il tipo di compressione del file importato sarà automaticamente rilevato da: %s';
$strConfigDefaultFileError = 'Non posso leggere la configurazione da: "%1$s"';
$strConfigFileError = 'phpMyAdmin non riesce a leggere il file di configurazione!<br />Questo può accadere se il php trova un parse error in esso oppure il php non trova il file.<br />Richiamate il file di configurazione direttamente utilizzando il link sotto e leggete il/i messaggio/i di errore del php che ricevete. Nella maggior parte dei casi ci sono un apostrofo o una virgoletta mancanti.<br />Se ricevete una pagina bianca, allora è tutto a posto.';
$strConfigureTableCoord = 'Prego, configurare le coordinate per la tabella %s';
$strConnectionError = 'Impossibile connettersi: impostazioni non valide.';
$strConnections = 'Connessioni';
$strConstraintsForDumped = 'Limiti per le tabelle scaricate';
$strConstraintsForTable = 'Limiti per la tabella';
$strControluserFailed = 'Connessione per controluser come definito nella configurazione fallita.';
$strCookiesRequired = 'Da questo punto in poi, i cookie devono essere abilitati.';
$strCopy = 'Copia';
$strCopyDatabaseOK = 'Il Database %s è stato copiato in %s';
$strCopyTable = 'Copia la tabella nel (database<b>.</b>tabella):';
$strCopyTableOK = 'La tabella %s è stata copiata su %s.';
$strCopyTableSameNames = 'Impossibile copiare la tabella su se stessa!';
$strCouldNotKill = 'phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già stato terminato.';
$strCreate = 'Crea';
$strCreateDatabaseBeforeCopying = 'CREATE DATABASE prima di copiare';
$strCreateIndex = 'Crea un indice su %s columns';
$strCreateIndexTopic = 'Crea un nuovo indice';
$strCreateNewDatabase = 'Crea un nuovo database';
$strCreateNewTable = 'Crea una nuova tabella nel database %s';
$strCreatePage = 'Crea una nuova pagina';
$strCreatePdfFeat = 'Creazione di PDF';
$strCreateRelation = 'Crea relazioni';
$strCreateTable  = 'Crea tabelle';
$strCreateUserDatabase = 'Database per l\'utente';
$strCreateUserDatabaseName = 'Crea un database con lo stesso nome e concedi tutti i privilegi';
$strCreateUserDatabaseNone = 'None';
$strCreateUserDatabaseWildcard = 'Concedi tutti i privilegi al nome con caratteri jolly (username\_%)';
$strCreationDates = 'Creazione/Aggiornamento/Controllo date';
$strCriteria = 'Criterio';
$strCroatian = 'Croato';
$strCSV = 'CSV';
$strCustomColor = 'Colore definito dall\'utente';
$strCyrillic = 'Cirillico';
$strCzech = 'Ceco';
$strCzechSlovak = 'Ceco-Slovacco';

$strDanish = 'Danese';
$strDatabase = 'Database';
$strDatabaseEmpty = 'Il nome del DataBase è vuoto!';
$strDatabaseExportOptions = 'Opzioni di esportazione del database';
$strDatabaseHasBeenCreated = 'Il database %1$s è stato creato.';
$strDatabaseHasBeenDropped = 'Il Database %s è stato eliminato.';
$strDatabases = 'Database';
$strDatabasesDropped = '%s databases sono stati cancellati correttamente.';
$strDatabasesStatsDisable = 'Disabilita le Statistiche';
$strDatabasesStatsEnable = 'Abilita le Statistiche';
$strDatabasesStatsHeavyTraffic = 'N.B.: Abilitare qui le statistiche del Database potrebbe causare del traffico intenso fra il server web e MySQL.';
$strDatabasesStats = 'Statistiche dei databases';
$strData = 'Dati';
$strDataDict = 'Data Dictionary';
$strDataOnly = 'Solo dati';
$strDataPages = 'Pagine contenenti dati';
$strDBComment = 'Commento al Database: ';
$strDBCopy = 'Copia il Database in';
$strDbIsEmpty = 'Il databse sembra essere vuoto!';
$strDbPrivileges = 'Privilegi specifici al database';
$strDBRename = 'Rinomina il DataBase in';
$strDbSpecific = 'specifico del database';
$strDefaultEngine = '%s è il motore di memorizzazione predefinito su questo server MySQL.';
$strDefault = 'Predefinito';
$strDefaultValueHelp = 'Per i valori predefiniti, prego inserire un singolo valore, senza backslash escaping o virgolette, utilizzando questo formato: a';
$strDefragment = 'Deframmenta la tabella';
$strDelayedInserts = 'Utilizza inserimenti ritardati';
$strDeleteAndFlush = 'Cancella gli utenti e dopo ricarica i privilegi.';
$strDeleteAndFlushDescr = 'Questa è la vita più giusta, ma il caricamento dei privilegi può durare qualche secondo.';
$strDeleted = 'La riga è stata cancellata';
$strDelete = 'Elimina';
$strDeleteNoUsersSelected = 'Nessun utente selezionato per la cancellazione!';
$strDeleteRelation = 'Elimina relazione';
$strDeleting = 'Cancellazione in corso di %s';
$strDelimiter = 'Delimitatori';
$strDelOld = 'La Pagina corrente contiene Riferimenti a Tabelle che non esistono più. Volete cancellare questi Riferimenti?';
$strDescending = 'Decrescente';
$strDescription = 'Descrizione';
$strDesigner = 'Designer';
$strDesignerHelpDisplayField = 'Il campi da mostrare sono in colore rosa. Per impostare/togliere un campo come campo da mostrare, clicca l\'icona "Scegli il campo da mostrare", e poi clicca sul nome appropriato del campo.';
$strDetails = 'Dettagli...';
$strDictionary = 'dizionario';
$strDirectLinks = 'Link diretti';
$strDirtyPages = 'Pagine sporche';
$strDisabled = 'Disabilitata';
$strDisableForeignChecks = 'Disabilita i controlli sulle chiavi straniere';
$strDisplayFeat = 'Mostra Caratteristiche';
$strDisplayOrder = 'Ordine di visualizzazione:';
$strDisplayPDF = 'Mostra lo schema del PDF';
$strDoAQuery = 'Esegui "query da esempio" (carattere jolly: "%")';
$strDocSQL = 'DocSQL';
$strDocu = 'Documentazione';
$strDownloadFile = 'Scarica file';
$strDoYouReally = 'Confermi: ';
$strDropDatabaseStrongWarning = 'Si sta per DISTRUGGERE COMPLETAMENTE un intero DataBase!';
$strDrop = 'Elimina';
$strDropUsersDb = 'Elimina i databases gli stessi nomi degli utenti.';
$strDumpingData = 'Dump dei dati per la tabella';
$strDumpSaved = 'Il dump è stato salvato sul file %s.';
$strDumpXRows = 'Dump di %s righe a partire dalla riga %s.';
$strDynamic = 'dinamico';

$strEdit = 'Modifica';
$strEditPDFPages = 'Modifica pagine PDF';
$strEditPrivileges = 'Modifica Privilegi';
$strEffective = 'Effettivo';
$strEmptyResultSet = 'MySQL ha restituito un insieme vuoto (i.e. zero righe).';
$strEmpty = 'Svuota';
$strEnabled = 'Abilitata';
$strEncloseInTransaction = 'Includi export in una transazione';
$strEndCut = 'FINE CUT';
$strEnd = 'Fine';
$strEndRaw = 'FINE RAW';
$strEngineAvailable = '%s è disponibile su questo server MySQL.';
$strEngineDisabled = '%s è stato disabilitato su questo server MySQL.';
$strEngines = 'Motori';
$strEngineUnsupported = 'Questo server MySQL non supporta il motore di memorizzazione %s.';
$strEnglish = 'Inglese';
$strEnglishPrivileges = 'Nota: i nomi dei privilegi di MySQL sono in Inglese';
$strError = 'Errore';
$strErrorInZipFile = 'Errore nell\'archivio ZIP:';
$strErrorRelationAdded = 'Errore: relazione non aggiunta.';
$strErrorRelationExists = 'Errore: relazione già esistente.';
$strErrorRenamingTable = 'Errore nel rinominare la tabella %1$s in %2$s';
$strErrorSaveTable = 'Errore nel salvare le coordinate per il Designer.';
$strEscapeWildcards = 'I caratteri jolly _ e % dovrebbero essere preceduti da un \ per l\'utilizzo letterale';
$strEsperanto = 'Esperanto';
$strEstonian = 'Estone';
$strEvent = 'Eventi';
$strEvents = 'Eventi';
$strExcelEdition = 'Edizione Excel';
$strExecuteBookmarked = 'Esegue la query dalle preferite';
$strExplain = 'Spiega SQL';
$strExport = 'Esporta';
$strExportImportToScale = 'Importa/esporta alla dimensione';
$strExportMustBeFile = 'Il tipo di esportazione selezionato necessita di essere salvato in un file!';
$strExtendedInserts = 'Inserimenti estesi';
$strExtra = 'Extra';

$strFailedAttempts = 'Tentativi falliti';
$strField = 'Campo';
$strFieldHasBeenDropped = 'Il campo %s è stato eliminato';
$strFieldInsertFromFileTempDirNotExists = 'Errore nello spostare il file caricato, vedi FAQ 1.11';
$strFields = 'Campi';
$strFieldsEnclosedBy = 'Campo composto da';
$strFieldsEscapedBy = 'Campo impedito da';
$strFieldsTerminatedBy = 'Campo terminato da';
$strFileAlreadyExists = 'Il file %s esiste già sul server: prego, cambiare nome del file o selezionare l\'opzione "sovrascrivi".';
$strFileCouldNotBeRead = 'Il file non può essere letto';
$strFileNameTemplateDescriptionDatabase = 'nome database';
$strFileNameTemplateDescription = 'Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte le seguenti trasformazioni: %3$s. Il testo rimanente resterà invariato.';
$strFileNameTemplateDescriptionServer = 'nome server';
$strFileNameTemplateDescriptionTable = 'nome tabella';
$strFileNameTemplate = 'Nome file template';
$strFileNameTemplateRemember = 'ricorda il template';
$strFiles = 'File';
$strFileToImport = 'File importato';
$strFlushPrivilegesNote = 'N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella dei privilegi di MySQL. Il contenuto di questa tabella può differire dai privilegi usati dal server se sono stati fatti cambiamenti manuali. In questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare.';
$strFlushQueryCache = 'Rinfresca la cache delle query';
$strFlushTable = 'Inizializza ("FLUSH") la tabella';
$strFlushTables = 'Rinfresca (chiudi) tutte le tabelle';
$strFontSize = 'Dimensione font';
$strForeignKeyError = 'Errore nel creare una "foreign key" su %1$s (controlla il tipo di dati)';
$strForeignKeyRelationAdded = 'Relazione "FOREIGN KEY" aggiunta';
$strFormat = 'Formato';
$strFormEmpty = 'Valore mancante nel form!';
$strFreePages = 'Pagine libere';
$strFullText = 'Testo completo';
$strFunction = 'Funzione';
$strFunctions = 'Funzioni';

$strGenBy = 'Generato da';
$strGeneralRelationFeat = 'Caratteristiche Generali di Relazione';
$strGenerate = 'Genera';
$strGeneratePassword = 'Genera Password';
$strGenTime = 'Generato il';
$strGeorgian = 'Georgiano';
$strGerman = 'Tedesco';
$strGlobal = 'globale';
$strGlobalPrivileges = 'Privilegi globali';
$strGlobalValue = 'Valore globale';
$strGo = 'Esegui';
$strGrantOption = 'Grant';
$strGreek = 'Greco';
$strGzip = '"compresso con gzip"';

$strHandler = 'Handler';
$strHasBeenAltered = 'è stato modificato.';
$strHaveToShow = 'Devi scegliere almeno una Colonna da mostrare';
$strHebrew = 'Ebreo';
$strHelp = 'Aiuto';
$strHexForBLOB = 'Usa dati esadecimali per BLOB';
$strHide         = 'Nascondi';
$strHideShowAll = 'Mostra/nascondi tutto';
$strHideShowNoRelation = 'Mostra/nascondi tabella senza relazioni';
$strHome = 'Home';
$strHomepageOfficial = 'Home page ufficiale di phpMyAdmin';
$strHostEmpty = 'Il nome di host è vuoto!';
$strHost = 'Host';
$strHTMLExcel = 'Microsoft Excel 2000';
$strHTMLWord = 'Microsoft Word 2000';
$strHungarian = 'Ungherese';

$strIcelandic = 'Islandese';
$strId = 'ID';
$strIdxFulltext = 'Testo completo';
$strIEUnsupported = 'Internet explorer non supporta questa funzione.';
$strIgnoreDuplicates = 'Ignora le righe duplicate';
$strIgnore = 'Ignora';
$strIgnoreInserts = 'Utilizza gli IGNORE INSERTS';
$strImportExportCoords = 'Importa/esporta le coordinate per PDF schema';
$strImportFiles = 'Importa file';
$strImportFormat = 'Formato del file importato';
$strImport = 'Importa';
$strImportSuccessfullyFinished = 'Importazione eseguita con successo, %d query eseguite.';
$strIndexes = 'Indici';
$strIndexesSeemEqual = 'Gli indici %1$s e %2$s sembrano essere uguali e andrebbero, possibilmente, essere rimossi.';
$strIndexHasBeenDropped = 'L\'indice %s è stato eliminato';
$strIndex = 'Indice';
$strIndexName = 'Nome dell\'indice :';
$strIndexType = 'Tipo di indice :';
$strIndexWarningTable = 'Problemi con gli indici della tabella `%s`';
$strInnoDBAutoextendIncrementDesc = ' La dimensione di incremento per aumentare la dimensione di una tabella autoextending quando diventa piena.';
$strInnoDBAutoextendIncrement = 'Incremento autoextend';
$strInnoDBBufferPoolSizeDesc = 'La dimensione del buffer di memoria InnoDB cacha dati e indici delle proprie tabelle.';
$strInnoDBBufferPoolSize = 'Dimensione del Buffer pool';
$strInnoDBDataFilePath = 'File dati';
$strInnoDBDataHomeDirDesc = 'La parte comune del path della directory per tutti i file dati InnoDB.';
$strInnoDBDataHomeDir = 'Home directory dei dati';
$strInnoDBPages = 'pagine';
$strInnodbStat = 'Stato InnoDB';
$strInsecureMySQL = 'Il file di configurazione in uso contiene impostazioni (root con nessuna password) che corrispondono ai privilegi dell\'account MySQL predefinito. Un server MySQL funzionante con queste impostazioni è aperto a intrusioni, e si dovrebbe realmente riparare a questa falla nella sicurezza.';
$strInsertAsNewRow = 'Inserisci come nuova riga';
$strInsertedRowId = 'Inserita riga id: %1$d';
$strInsert = 'Inserisci';
$strInterface = 'Interfacce';
$strInternalAndForeign = 'Una relazione interna non %è necessaria, quando una corrispondente relazione FOREIGN KEY esiste.';
$strInternalRelationAdded = 'Aggiunte relazioni internet';
$strInternalRelations = 'Relazioni interne';
$strInUse = 'in uso';
$strInvalidAuthMethod = 'Metodo di autenticazione settato nella configurazione non valido:';
$strInvalidColumn = 'Colonna specificata (%s) invalida!';
$strInvalidColumnCount = 'Il contatore delle colonne deve essere superiore a 0.';
$strInvalidCSVFieldCount = 'Contatore di campo non valido nell\'input CSV alla linea %d.';
$strInvalidCSVFormat = 'Formato non valido per l\'input CSV alla linea %d.';
$strInvalidCSVParameter = 'Parametro non valido per importazione CSV: %s';
$strInvalidDatabase = 'Database non valido';
$strInvalidFieldAddCount = 'Deviaggiungere come minimo un campo.';
$strInvalidFieldCount = 'la tabella deve avere come minimo un dato.';
$strInvalidLDIImport = 'Questo plugin non supporta importazioni di dati compressi!';
$strInvalidRowNumber = '%d non è un numero valido di righe.';
$strInvalidServerHostname = 'Nome host per il server %1$s non valido. Controlla la tua configurazione.';
$strInvalidServerIndex = 'Server index non valido: "%s"';
$strInvalidTableName = 'Nome tabella non valido';

$strJapanese = 'Giapponese';
$strJoins = 'Joins';
$strJumpToDB = 'Passa al database "%s".';
$strJustDelete = 'Cancella soltanto gli utenti dalle tabelle dei privilegi.';
$strJustDeleteDescr = 'Gli utenti "cancellati" saranno ancora in grado di accedere al server come al solito, finché i privilegi non verranno ricaricati.';

$strKeepPass = 'Non cambiare la password';
$strKeyCache = 'Key cache';
$strKeyname = 'Nome chiave';
$strKill = 'Rimuovi';
$strKnownExternalBug = 'La %s funzionalità è affetta da un bug noto, vedi %s';
$strKorean = 'Coreano';

$strLandscape = 'Orizzontale';
$strLanguage = 'Lingua';
$strLanguageUnknown = 'Lingua non conosciuta : %1$s.';
$strLatchedPages = 'Latched pages';
$strLatexCaption = 'Sottotitolo della tabella';
$strLatexContent = 'Contenuto della tabella __TABLE__';
$strLatexContinuedCaption = 'Sottotitolo della tabella continuato';
$strLatexContinued = '(continua)';
$strLatexIncludeCaption = 'Includi sottotitolo della tabella';
$strLatexLabel = 'Chiave etichetta';
$strLaTeX = 'LaTeX';
$strLatexStructure = 'Struttura della tabella __TABLE__';
$strLatvian = 'Lituano';
$strLDI = 'CSV usando LOAD DATA';
$strLDILocal = 'Usa LOCAL keyword';
$strLengthSet = 'Lunghezza/Set*';
$strLimitNumRows = 'record per pagina';
$strLinesTerminatedBy = 'Linee terminate da';
$strLinkNotFound = 'Link non trovato';
$strLinksTo = 'Collegamenti a';
$strLithuanian = 'Lituano';
$strLocalhost = 'Locale';
$strLocationTextfile = 'Percorso del file';
$strLogin = 'Connetti';
$strLoginInformation = 'Informazioni di Login';
$strLogout = 'Disconnetti';
$strLogPassword = 'Password:';
$strLogServerHelp = 'Puoi inserire Indirizzo IP/hostname a porta separati dallo spazio.';
$strLogServer = 'Server';
$strLogUsername = 'Nome utente:';
$strLongOperation = 'Questa operazione potrebbe impiegare molto tempo. Procedere comunque?';

$strMaxConnects = 'max. connessioni contemporanee';
$strMaximalQueryLength = 'Lunghezza massima di una query creata';
$strMaximumSize = 'Dimensione massima: %s%s';
$strMbExtensionMissing = 'L\'estensione PHP mbstring non è stata trovata e sembra che si stia utilizzando un set di caratteri multibyte. Senza l\'estensione mbstring, phpMyAdmin non è in grado di dividere correttamente le stringhe di caratteri e questo può portare a risultati inaspettati.';
$strMbOverloadWarning = 'Avete abilitato mbstring.func_overload nella configurazione del PHP. Questa opzione è incompatibile con phpMyAdmin e potrebbe causare la corruzione di alcuni dati!';
$strMIME_available_mime = 'Tipi-MIME disponibili';
$strMIME_available_transform = 'Trasformazioni disponibili';
$strMIME_description = 'Descrizione';
$strMIME_MIMEtype = 'tipo MIME';
$strMIME_nodescription = 'Nessuna descrizione è disponibile per questa trasformazione.<br />Prego, chiedere all\'autore cosa %s faccia.';
$strMIME_transformation_note = 'Per una lista di opzioni di trasformazione disponibili e le loro rispettive trasformazioni di tipi-MIME, cliccate su %strasformazione descrizioni%s';
$strMIME_transformation_options_note = 'Prego, immettere i valori per le opzioni di trasformazioneutilizzando questo formato: \'a\', 100, b,\'c\'...<br />Se c\'è la necessità di immettere un backslash ("\") o un apostrofo ("\'") tra questi valori, essi vanno backslashati (per es. \'\\\\xyz\' or \'a\\\'b\').';
$strMIME_transformation_options = 'Opzioni di Transformation';
$strMIME_transformation = 'Trasformazione del Browser';
$strMIMETypesForTable = 'MIME TYPES FOR TABLE';
$strMIME_without = 'Tipi-MIME stampati in italics non hanno una funzione di trasformazione separata';
$strModifications = 'Le modifiche sono state salvate';
$strModifyIndexTopic = 'Modifica un indice';
$strModify = 'Modifica';
$strMoveMenu = 'Muovi menù';
$strMoveTableOK = 'La tabella %s è stata spostata in %s.';
$strMoveTableSameNames = 'Impossibile spostare la tabella su se stessa!';
$strMoveTable = 'Sposta la tabella nel (database<b>.</b>tabella):';
$strMultilingual = 'multilingua';
$strMyISAMDataPointerSizeDesc = 'Dimensione del puntatore predefinito in Bytes, che deve essere usata da CREATE TABLE per le tabelle MyISAM quando non è stata specificata l\'opzione MAX_ROWS.';
$strMyISAMDataPointerSize = 'Domensione del puntatore dati';
$strMyISAMMaxExtraSortFileSizeDesc = 'Se il file temporaneo è usato per la creazione veloce di un indice MyISAM, occuperebbe più spazio dell\'utilizzo del metodo key cache con la quantità ivi specificata: perciò si deve prediligere il metodo key cache.';
$strMyISAMMaxExtraSortFileSize = 'Dimensione massima per i file temporanei nella creazione di un indice';
$strMyISAMMaxSortFileSizeDesc = 'La dimensione massima dei file temporanei MySQL può essere utilizzata nella rigenerazione di un indice MyISAM (durante un REPAIR TABLE, ALTER TABLE, o LOAD DATA INFILE).';
$strMyISAMMaxSortFileSize = 'Dimensione massima dei file temporanei di ordinamento';
$strMyISAMRecoverOptionsDesc = 'La modalità di irppristino automatico di tabelle MyISAM corrotte, come impostato tramite l\'opzione di lan cio del server --myisam-recover.';
$strMyISAMRecoverOptions = 'Modalità di ripristino automatico';
$strMyISAMRepairThreadsDesc = 'Se questo valore è maggiore di 1, gli indici della tabella MyISAM vengono creati in parallelo (ogni indice nel suo thread) durante il processo di ordinamento Repair by.';
$strMyISAMRepairThreads = 'Thread di riparazione';
$strMyISAMSortBufferSizeDesc = 'Il buffer che viene allocato nell\'ordinamento degli indici MyISAM durante un REPAIR TABLE o nella creazione degli indici con CREATE INDEX o ALTER TABLE.';
$strMyISAMSortBufferSize = 'Ordina la dimensione del buffer';
$strMySQLCharset = 'Set di caratteri MySQL';
$strMysqlClientVersion = 'Versione MySQL client';
$strMySQLConnectionCollation = 'collation della connessione di MySQL';
$strMysqlLibDiffersServerVersion = 'Le tue librerie di PHP per MySQL versione %s sono diverse dalla versione di MySQL server %s. Potrebbe causare comportamenti imprevedibili.';
$strMySQLSaid = 'Messaggio di MySQL: ';
$strMySQLShowProcess = 'Visualizza processi in esecuzione';

$strName = 'Nome';
$strNext = 'Prossimo';
$strNoActivity = 'Nessuna attività da %s secondi o più, si prega di autenticarsi nuovamente';
$strNoDatabases = 'Nessun database';
$strNoDatabasesSelected = 'Nessun database selezionato.';
$strNoDataReceived = 'Non sono stati ricevuti dati da importare. O non è stato indicato alcun nome file, oppure è stato superata la dimensione massima consentita per il file, impostata nella configurazione di PHP. Vedi FAQ 1.16.';
$strNoDescription = 'nessuna Description';
$strNoDetailsForEngine = 'Non è disponibile nessuna informazione dettagliata sullo stato di questo motore di memorizzazione.';
$strNoDropDatabases = 'I comandi "DROP DATABASE" sono disabilitati.';
$strNoExplain = 'Non Spiegare SQL';
$strNoFilesFoundInZip = 'Non sono stati trovati file ZIP all\'interno dell\'archivio!';
$strNoFrames = 'phpMyAdmin funziona meglio con browser che supportano frames';
$strNoIndex = 'Nessun indice definito!';
$strNoIndexPartsDefined = 'Nessuna parte di indice definita!';
$strNoModification = 'Nessun cambiamento';
$strNone = 'Nessuno';
$strNo = ' No ';
$strNoOptions = 'Questo formato non ha opzioni';
$strNoPassword = 'Nessuna Password';
$strNoPermission = 'Il server web non possiede i privilegi per salvare il file %s.';
$strNoPhp = 'senza codice PHP';
$strNoPrivileges = 'Nessun Privilegio';
$strNoRights = 'Non hai i permessi per effettuare questa operazione!';
$strNoRowsSelected = 'Nessuna riga selezionata';
$strNoSpace = 'Spazio insufficiente per salvare il file %s.';
$strNoTablesFound = 'Non ci sono tabelle nel database.';
$strNoThemeSupport = 'Nessun supporto per i temi, si prega di controllare la configurazione e/o i temi nella cartella %s.';
$strNotNumber = 'Questo non è un numero!';
$strNotOK = 'non OK';
$strNotSet = '<b>%s</b> tabella non trovata o non settata in %s';
$strNoUsersFound = 'Nessun utente trovato.';
$strNoValidateSQL = 'Non Validare SQL';
$strNull = 'Null';
$strNumberOfFields = 'Numero di campi';
$strNumberOfTables = 'Numero di tabelle';
$strNumSearchResultsInTable = '%s corrisponde/ono nella tabella <i>%s</i>';
$strNumSearchResultsTotal = '<b>Totale:</b> <i>%s</i> corrispondenza/e';
$strNumTables = 'Tabelle';

$strOK = 'OK';
$strOpenDocumentSpreadsheet = 'Foglio di calcolo nel formato Open Document';
$strOpenDocumentText = 'Testo nel formato Open Document';
$strOpenNewWindow = 'Apri una nuova finestra di PhpMyAdmin';
$strOperations = 'Operazioni';
$strOperator = 'Operatore';
$strOptimize = 'Ottimizza';
$strOptimizeTable = 'Ottimizza tabella';
$strOptions = 'Opzioni';
$strOr = 'Oppure';
$strOverhead = 'In eccesso';
$strOverwriteExisting = 'Sovrascrivi file(s) esistente/i';

$strPacked = 'Compresso';
$strPageNumber = 'Numero pagina:';
$strPagesToBeFlushed = 'Pagine che devono essere flushate';
$strPaperSize = 'Dimensioni carta';
$strPartialImport = 'Importazione parziale';
$strPartialText = 'Testo parziale';
$strPartitionDefinition = 'Definizione Partizioni';
$strPartitioned = 'partizionato';
$strPartitionMaintenance = 'Manutenzione partizione';
$strPartition = 'Partizione %s';
$strPasswordChanged = 'La password per l\'utente %s è cambiata con successo.';
$strPasswordEmpty = 'La password è vuota!';
$strPasswordHashing = 'Password Hashing';
$strPasswordNotSame = 'La password non coincide!';
$strPassword = 'Password';
$strPBXTCheckpointFrequencyDesc = 'L\'ammontare dei dati scritti sul log delle trasazioni, prima che sia eseguito un checkpoint. Il valore di default è 24MB.';
$strPBXTCheckpointFrequency = 'Frequheckpoint';
$strPBXTDataFileGrowSizeDesc = 'Dimensione dell\'incremento del file (.xtd) con gli "handle data".';
$strPBXTDataFileGrowSize = 'Dimensione incremento del file dei dati';
$strPBXTDataLogThresholdDesc = 'La dimensione massima di un file con i log. Il valore di default è 64MB. PBXT può creare un massimo di 32000 log dei dati, che sono usati da tutte le tabelle. Il valore può essere incrementato per aumentare la dimensione massima dei dati che possono essere memorizzati complessivamente nel database.';
$strPBXTDataLogThreshold = 'Dimensione del log dei dati';
$strPBXTGarbageThresholdDesc = 'La percentuale di dati "spazzatura" in un file di log prima che questo debba essere compattato. Il valore deve essere compreso tra 1 e 99. Il valore di default è 50.';
$strPBXTGarbageThreshold = 'Dimensione del cestino';
$strPBXTIndexCacheSizeDesc = 'This is the amount of memory allocated to the index cache. Il valore di default è 32MB. La memoria allocata qui è usata solo per la cache delle pagine di indice.';
$strPBXTIndexCacheSize = 'Dimensione cache degli indici';
$strPBXTLogBufferSizeDesc = 'La dimensione del buffer usata quando si scrive un log dei dati. Il valore di default è 256MB. Il motore allora un buffer per ciascun thread, ma solo se è necessario scrivere un log dei dati.';
$strPBXTLogBufferSize = 'Dimensione del buffer dei log';
$strPBXTLogCacheSizeDesc = 'L\'ammontare di memoria allocata per la cache del log delle trasazioni. Il valore di default è 16MB.';
$strPBXTLogCacheSize = 'Dimensione cache dei log';
$strPBXTLogFileCountDesc = 'Questo è il numero dei file di log della trasazioni (pbxt/system/xlog*.xt) che il sistema conserva. Se il numero dei log è superiore i file più sono cancellati, altrimenti vengono rinominati e gli viene assegnato il numero più alto.';
$strPBXTLogFileCount = 'Numero dei file di log';
$strPBXTLogFileThresholdDesc = 'La dimensione del log delle trasazioni prima di un rollover, quando viene creato un nuovo file. Il valore di default è 16MB.';
$strPBXTLogFileThreshold = 'Soglia dei file di log';
$strPBXTRecordCacheSizeDesc = 'L\'ammontare della memoria allocata nella cache dei record, usata per la cache dei dati della tabella. The default value is 32MB. This memory is used to cache changes to the handle data (.xtd) and row pointer (.xtr) files.';
$strPBXTRecordCacheSize = 'Dimensione cache dei record';
$strPBXTRowFileGrowSizeDesc = 'Dimensione dell\'incremento del file (.xtr) con i puntatori delle righe.';
$strPBXTRowFileGrowSize = 'Dimensione incremento del file delle righe';
$strPBXTTransactionBufferSizeDesc = 'La dimensione del buffer globale dei log di trasazione (il motore alloca 2 buffer di questa dimensione). Il valore di default è 1MB.';
$strPBXTTransactionBufferSize = 'Dimensione buffer delle transazioni';
$strPdfDbSchema = 'Schema del database "%s" - Pagina %s';
$strPdfInvalidTblName = 'La tabella "%s" non esiste!';
$strPdfNoTables = 'Nessuna Tabella';
$strPDF = 'PDF';
$strPDFReportExplanation = '(Genera un report contenete i dati di una singola tabella)';
$strPDFReportTitle = 'Titolo del Report';
$strPerHour = 'all\'ora';
$strPerMinute = 'al minuto';
$strPerSecond = 'al secondo';
$strPersian = 'Persiano';
$strPhoneBook = 'rubrica';
$strPhp = 'Crea il codice PHP';
$strPHPExtension = 'Estensioni PHP';
$strPHPVersion = 'Versione PHP';
$strPlayAudio = 'Avvia audio';
$strPleaseSelectPrimaryOrUniqueKey = 'Seleziona la chiave primaria o una chiave univoca';
$strPmaDocumentation = 'Documentazione di phpMyAdmin';
$strPmaUriError = 'La direttiva <tt>$cfg[\'PmaAbsoluteUri\']</tt> DEVE essere impostata nel file di configurazione!';
$strPolish = 'Polacco';
$strPortrait = 'Verticale';
$strPos1 = 'Inizio';
$strPrevious = 'Precedente';
$strPrimaryKeyHasBeenDropped = 'La chiave primaria è stata eliminata';
$strPrimaryKeyName = 'Il nome della chiave primaria deve essere... PRIMARY!';
$strPrimaryKeyWarning = '("PRIMARY" <b>deve</b> essere il nome di, e <b>solo di</b>, una chiave primaria!)';
$strPrimary = 'Primaria';
$strPrint = 'Stampa';
$strPrintViewFull = 'Vista stampa (con full text)';
$strPrintView = 'Visualizza per stampa';
$strPrivDescAllPrivileges = 'Comprende tutti i privilegi tranne GRANT.';
$strPrivDescAlter = 'Permette di alterare la struttura di tabelle esistenti.';
$strPrivDescAlterRoutine = 'Permette l\'alterazione e l\'eliminazione di routines memorizzate.';
$strPrivDescCreateDb = 'Permette di creare nuove tabelle e nuovi databases.';
$strPrivDescCreateRoutine = 'Permette la creazione di routines memorizzate.';
$strPrivDescCreateTbl = 'Permette di creare nuove tabelle.';
$strPrivDescCreateTmpTable = 'Permette di creare tabelle temporanee.';
$strPrivDescCreateUser = 'Permette di creare, cancellare e rinominare gli account utente.';
$strPrivDescCreateView = 'Permette la creazione di nuove viste.';
$strPrivDescDelete = 'Permette di cancellare dati.';
$strPrivDescDropDb = 'Permette di eliminare databases e tabelle.';
$strPrivDescDropTbl = 'Permette di eliminare tabelle.';
$strPrivDescEvent = 'Permette di impostare gli eventi per lo scheduler';
$strPrivDescExecute5 = 'Permette l\'esecuzione di routines memorizzate.';
$strPrivDescExecute = 'Permette di eseguire procedure memorizzate; Non ha effetto in questa versione di MySQL.';
$strPrivDescFile = 'Permette di importare dati da e esportare dati in file.';
$strPrivDescGrant = 'Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei privilegi.';
$strPrivDescIndex = 'Permette di creare ed eliminare gli indici.';
$strPrivDescInsert = 'Permette di inserire e sovrascrivere dati.';
$strPrivDescLockTables = 'Permette di bloccare le tabelle per il thread corrente.';
$strPrivDescMaxConnections = 'Limita il numero di nuove connessioni che un utente può aprire in un\'ora.';
$strPrivDescMaxQuestions = 'Limita il numero di query che un utente può mandare al server in un\'ora.';
$strPrivDescMaxUpdates = 'Limita il numero di comandi che possono cambiare una tabella o un database che un utente può eseguire in un\'ora.';
$strPrivDescMaxUserConnections = 'Limite di connessioni simultanee che un utente può fare.';
$strPrivDescProcess = 'Permette di vedere i processi di tutti gli utenti';
$strPrivDescReferences = 'Non ha alcun effetto in questa versione di MySQL.';
$strPrivDescReload = 'Permette di ricaricare i parametri del server e di resettare la cache del server.';
$strPrivDescReplClient = 'Accorda il diritto ad un utente di domandare dove sono i masters/slaves.';
$strPrivDescReplSlave = 'Necessario per la replicazione degli slaves.';
$strPrivDescSelect = 'Permette di leggere i dati.';
$strPrivDescShowDb = 'Accorda l\'accesso alla lista completa dei databases.';
$strPrivDescShowView = 'Permette di effettuare query del tipo SHOW CREATE VIEW.';
$strPrivDescShutdown = 'Permette di chiudere il server.';
$strPrivDescSuper = 'Permette altre connessioni, anche se è stato raggiunto il massimo numero di connessioni; Necessario per molte operazioni di amministrazione come il settaggio di variabili globali o la cancellazione dei threads di altri utenti.';
$strPrivDescTrigger = 'Permette di creare e di eliminare i triggers';
$strPrivDescUpdate = 'Permette di cambiare i dati.';
$strPrivDescUsage = 'Nessun privilegio.';
$strPrivileges = 'Privilegi';
$strPrivilegesReloaded = 'I privilegi sono stati ricaricati con successo.';
$strProcedures = 'Procedure';
$strProcesses = 'Processi';
$strProcesslist = 'Lista Processi';
$strProfiling = 'Profiling';
$strProtocolVersion = 'Versione protocollo';
$strPutColNames = 'Mette i nomi delle colonne alla prima riga';

$strQBEDel = 'Elimina';
$strQBEIns = 'Aggiungi';
$strQBE = 'Query da esempio';
$strQueryCache = 'Cache delle query';
$strQueryFrame = 'Finestra della Query';
$strQueryOnDb = 'SQL-query sul database <b>%s</b>:';
$strQueryResultsOperations = 'Risultato delle operazioni di Query';
$strQuerySQLHistory = 'Storico dell\'SQL';
$strQueryStatistics = '<b>Query delle Statistiche</b>: Dall\'avvio, %s query sono state effettuate sul server.';
$strQueryTime = 'La query ha impiegato %01.4f sec';
$strQueryType = 'Tipo di Query';
$strQueryWindowLock = 'Non sovrascrivere questa query da fuori della finestra';

$strReadRequests = 'Richieste di lettura';
$strRebuild = 'Ricrea';
$strReceived = 'Ricevuti';
$strRecommended = 'raccomandato';
$strRecords = 'Record';
$strReferentialIntegrity = 'Controlla l\'integrità delle referenze:';
$strRefresh = 'Aggiorna';
$strRelationalDisplayField = 'Mosta il campo relazionale';
$strRelationalKey = 'Chiave relazionale';
$strRelationalSchema = 'Schema relazionale';
$strRelationDeleted = 'Relazione cancellata';
$strRelationNotWorking = 'Le caratteristiche aggiuntive sono state disattivate per funzionare con le tabelle linkate. Per scoprire perché clicca %squi%s.';
$strRelationsForTable = 'RELATIONS FOR TABLE';
$strRelations = 'Relazioni';
$strRelationView = 'Vedi relazioni';
$strReloadingThePrivileges = 'Caricamento dei privilegi in corso';
$strReloadPrivileges = 'Ricarica i privilegi';
$strReload = 'Ricarica';
$strRemovePartitioning = 'Rimuove partizionamento';
$strRemoveSelectedUsers = 'Rimuove gli utenti selezionati';
$strRenameDatabaseOK = 'Il DataBase %s è stato rinominato in %s';
$strRenameTableOK = 'La tabella %s è stata rinominata %s';
$strRenameTable = 'Rinomina la tabella in';
$strRepair = 'Ripara';
$strRepairTable = 'Ripara tabella';
$strReplaceNULLBy = 'Sostituisci NULL con';
$strReplaceTable = 'Sostituisci i dati della tabella col file';
$strReplication = 'Replicazione';
$strReset = 'Riavvia';
$strResourceLimits = 'Limiti di risorse';
$strRestartInsertion = 'Riprendi inserimento con la riga %s';
$strReType = 'Reinserisci';
$strRevokeAndDeleteDescr = 'Gli utenti UTILIZZERANNO comunque il privilegio finché i privilegi non saranno ricaricati.';
$strRevokeAndDelete = 'Revoca tutti i privilegi attivi agli utenti e dopo li cancella.';
$strRevokeMessage = 'Hai revocato i privilegi per %s';
$strRevoke = 'Revoca';
$strRomanian = 'Rumeno';
$strRoutineReturnType = 'Tipo di risultato';
$strRoutines = 'Routines';
$strRowLength = 'Lunghezza riga';
$strRowsAffected = '%1$d riga/e modificata.';
$strRowsDeleted = '%1$d riga/e cancellata.';
$strRowsFrom = 'righe a partire da';
$strRowsInserted = '%1$d riga/e inserita.';
$strRowSize = 'Dimensione riga';
$strRowsModeFlippedHorizontal = 'orizzontale (headers ruotati)';
$strRowsModeHorizontal = ' orizzontale ';
$strRowsModeOptions = ' in modalità %s e ripeti gli headers dopo %s celle ';
$strRowsModeVertical = ' verticale ';
$strRows = 'Righe';
$strRowsStatistic = 'Statistiche righe';
$strRunning = 'in esecuzione su %s';
$strRunQuery = 'Invia Query';
$strRunSQLQuery = 'Esegui la/e query SQL sul database %s';
$strRunSQLQueryOnServer = 'Eseguendo query SQL sul server %s';
$strRussian = 'Russo';

$strSaveOnServer = 'Salva sul server nella directory %s';
$strSavePosition = 'Salva la posizione';
$strSave = 'Salva';
$strScaleFactorSmall = 'Il fattore di scala è troppo piccolo per riempire lo schema nella pagina';
$strSearch = 'Cerca';
$strSearchFormTitle = 'Cerca nel database';
$strSearchInField = 'Campi contenuti:';
$strSearchInTables = 'Nella/e tabella/e:';
$strSearchNeedle = 'parola/e o valore/i da cercare (carattere jolly: "%"):';
$strSearchOption1 = 'almeno una delle parole';
$strSearchOption2 = 'tutte le parole';
$strSearchOption3 = 'la frase esatta';
$strSearchOption4 = 'come espressione regolare';
$strSearchResultsFor = 'Cerca i risultati per "<i>%s</i>" %s:';
$strSearchType = 'Trova:';
$strSecretRequired = 'Adesso c\'è bisogno di una password per il file di configurazione (blowfish_secret).';
$strSelectADb = 'Prego, selezionare un database';
$strSelectAll = 'Seleziona tutto';
$strSelectBinaryLog = 'Selezionare il log binario da visualizzare';
$strSelectFields = 'Seleziona campi (almeno uno):';
$strSelectForeignKey = 'Seleziona Foreign Key';
$strSelectNumRows = 'nella query';
$strSelectReferencedKey = 'Seleziona le chiavi referenziali';
$strSelectTables = 'Seleziona Tables';
$strSend = 'Salva con nome...';
$strSent = 'Spediti';
$strServerChoice = 'Scelta del server';
$strServerNotResponding = 'Il server non risponde';
$strServer = 'Server';
$strServers = 'Servers';
$strServerStatusDelayedInserts = 'Inserimento ritardato';
$strServerStatus = 'Informazioni di Runtime';
$strServerStatusUptime = 'Questo server MySQL sta girando da %s. E\' stato avviato il %s.';
$strServerTabVariables = 'Variabili';
$strServerTrafficNotes = '<b>Traffico del server</b>: Queste tabelle mostrano le statistiche del traffico di rete di questo server MySQL dal momento del suo avvio.';
$strServerVars = 'Variabili e parametri del Server';
$strServerVersion = 'Versione MySQL';
$strSessionStartupErrorGeneral = 'Non posso far partire la sessione senza errori, controlla gli errori nel log di PHP e/o del tuo server web e configura correttamente la tua installazione di PHP.';
$strSessionValue = 'Valore sessione';
$strSetEnumVal = 'Se il tipo di campo è "enum" o "set", immettere i valori usando il formato: \'a\',\'b\',\'c\'...<br />Se comunque dovete mettere dei backslash ("\") o dei single quote ("\'") davanti a questi valori anteporre un "\" (per esempio \'\\\\xyz\' o \'a\\\'b\').';
$strSetupCannotLoadConfig = 'Impossibile caricare o salvare la configurazione';
$strSetupConfigurationFile = 'File di configurazione';
$strSetupDefaultLanguage = 'Lingua predefinita';
$strSetupDefaultServer = 'Server predefinito';
$strSetupDisplay = 'Visualizza';
$strSetupDonateLink = 'Dona';
$strSetupDownload = 'Scarica';
$strSetuperror_incorrect_value = 'Valore non corretto';
$strSetupExport_compression_name = 'Compressione';
$strSetupExport_format_name = 'Formato';
$strSetupFalse = 'no';
$strSetupForm_Import_export = 'Importa / esporta';
$strSetupForm_Left_frame = 'Frame di navigazione';
$strSetupForm_Left_tables_desc = 'Opzioni di visualizzazione tabelle';
$strSetupForm_Left_tables = 'tabelle';
$strSetupForm_Security = 'Sicurezza';
$strSetupForm_Server_config = 'Configurazione del server';
$strSetupForm_Server_desc = 'Inserisci i parametri di connessione al server';
$strSetupForm_Server = 'Impostazioni di base';
$strSetupForm_Server_pmadb = 'Database di PMA';
$strSetupFormset_customization = 'Personalizzazione';
$strSetupFormset_export = 'Personalizza le opzioni di esportazione';
$strSetupFormset_features = 'Caratteristiche';
$strSetupFormset_left_frame = 'Personalizza frame di navigazione';
$strSetupFormset_main_frame = 'Personalizza frame principale';
$strSetupForm_Startup = 'Avvio';
$strSetupIgnoreErrors = 'Ignora errori';
$strSetupInsecureConnection = 'Connessione non sicura';
$strSetupLeftDisplayLogo_desc = 'Mostra logo nel frame di sinistra';
$strSetupLeftDisplayLogo_name = 'Visualizza logo';
$strSetupLeftFrameLight_name = 'Usa versione leggera';
$strSetupLoad = 'Carica';
$strSetupMemoryLimit_name = 'Limite memoria';
$strSetupNewServer = 'Nuovo server';
$strSetupNoServers = 'Non ci sono server configurati';
$strSetupOptionNone = '- nessuno -';
$strSetupOverview = 'Panoramica';
$strSetupRestoreDefaultValue = 'Ripristinare valori predefiniti';
$strSetupServersAdd = 'Aggiungi un nuovo server';
$strSetupServers_auth_type_desc = 'Metodo di autenticazione da usare';
$strSetupServers_auth_type_name = 'Tipo di autenticazione';
$strSetupServers_connect_type_name = 'Tipo di connessione';
$strSetupServersEdit = 'Modifica server';
$strSetupSetValue = 'Imposta valore: %s';
$strSetupShowForm = 'Visualizza form';
$strSetupSQLQuery_Edit_name = 'Modifica';
$strSetupSQLQuery_Refresh_name = 'Aggiorna';
$strSetupSQLQuery_ShowAsPHP_name = 'Crea codice PHP';
$strSetupTrue = 'sì';
$strSetupVersionCheck = 'Controllo versione';
$strSetupVersionCheckLink = 'Controlla l\'ultima versione';
$strSetupWarning = 'Attenzione';
$strShowAll = 'Mostra tutti';
$strShowColor = 'Mostra il colore';
$strShowDatadictAs = 'Formato del Data Dictionary';
$strShowFullQueries = 'Mostra query complete';
$strShowGrid = 'Mostra la griglia';
$strShowHideLeftMenu = 'Mostra/nascondi il menù di sinistra';
$strShowingBookmark = 'Mostrando i segnalibri';
$strShowingPhp = 'Mostrando il codice PHP';
$strShowingRecords = 'Visualizzazione record ';
$strShowingSQL = 'Mostrando la query SQL';
$strShowKeys = 'Mostra solo le chiavi';
$strShow = 'Mostra';
$strShowOpenTables = 'Mostra le tabelle aperte';
$strShowPHPInfo = 'Mostra le info sul PHP';
$strShowSlaveHosts = 'Mostra gli hosts slave';
$strShowSlaveStatus = 'Mostra lo stato degli slave';
$strShowStatusBinlog_cache_disk_useDescr = 'Il numero delle transazioni che usano la cache temporanea del log binario, ma che oltrepassano il valore di binlog_cache_size e usano un file temporaneo per salvare gli statements dalle transazioni.';
$strShowStatusBinlog_cache_useDescr = 'Il numero delle transazioni che usano la cache temporanea del log binario.';
$strShowStatusCreated_tmp_disk_tablesDescr = 'Il numero delle tabelle temporanee create automaticamente sul disco dal server mentre esegue i comandi. Se il valore Created_tmp_disk_tables è grande, potresti voler aumentare il valore tmp_table_size, per fare im modo che le tabelle temporanee siano memory-based anzichè disk-based.';
$strShowStatusCreated_tmp_filesDescr = 'Numero di file temporanei che mysqld ha creato.';
$strShowStatusCreated_tmp_tablesDescr = 'Il numero di tabelle temporanee create automaticamente in memoria dal server durante l\'esecuzione dei comandi.';
$strShowStatusDelayed_errorsDescr = 'Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori (probabilmete chiave dublicata).';
$strShowStatusDelayed_insert_threadsDescr = 'Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato INSERT DELAYED occupa un thread.';
$strShowStatusDelayed_writesDescr = 'Il numero di righe INSERT DELAYED scritte.';
$strShowStatusFlush_commandsDescr  = 'Il numero di comandi FLUSH eseguiti.';
$strShowStatusHandler_commitDescr = 'Il numero di comandi interni COMMIT eseguiti.';
$strShowStatusHandler_deleteDescr = 'Il numero di volte in cui una riga è stata cancellata da una tabella.';
$strShowStatusHandler_discoverDescr = 'Il server MySQL può chiedere al motore di storage NDB Cluster se conosce una tabella sulla base di un nome dato. Questo è chaiamto discovery. Handler_discover indica il numero di volte che una tabella è stata trovata.';
$strShowStatusHandler_read_firstDescr = 'Il numero di volte che il primo valore è stato letto da un indice. Se è troppo alto è probabile che il server stia facendo molte scansioni complete degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia indicizzata.';
$strShowStatusHandler_read_keyDescr = 'Il numero di richieste per leggere una riga basata su di una chiave. Se è alta, è un buon indice che le tue query e le tue tabelle sono correttamente indicizzate.';
$strShowStatusHandler_read_nextDescr = 'Il numero di richieste per leggere la riga successiva nell\'ordine delle chiavi. Questo valore è incrementato se stai facendo una query su di una colonna indice con un range costante, oppure se stai facendo una scansione degli indici.';
$strShowStatusHandler_read_prevDescr = 'Il numero di richieste per leggere la riga precedente nell\'ordine delle chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare ORDER BY ... DESC.';
$strShowStatusHandler_read_rndDescr = 'Il numero di richieste per leggere una riga basata su una posizione fissa. Questo valore è alto se stai facendo molte richieste che richiedono un ordinamento dei risultati. Probabilmente hai molte query che che richiedono a MySQL di leggere l\'intera tabella oppure ci sono dei joins che non usano le chiavi correttamente.';
$strShowStatusHandler_read_rnd_nextDescr = 'Il numero di richieste per leggere la riga successiva in un file di dati. Questo valore è alto se stai facendo molte scansioni della tabella. Generalmente è un segnale che le tue tabelle non sono correttamente indicizzate, o che le query non sono state scritte per trarre vantaggi dagli indici che hai.';
$strShowStatusHandler_rollbackDescr = 'Il numero di comandi ROLLBACK interni.';
$strShowStatusHandler_updateDescr = 'Il numero di richieste per aggiornare una riga in una tabella.';
$strShowStatusHandler_writeDescr = 'Il numero di richieste per inserire una riga in una tabella.';
$strShowStatusInnodb_buffer_pool_pages_dataDescr = 'Il numero di pagine che contengono dati (sporchi o puliti).';
$strShowStatusInnodb_buffer_pool_pages_dirtyDescr = 'Il numero di pagine attualmente sporche.';
$strShowStatusInnodb_buffer_pool_pages_flushedDescr = 'Il numero di buffer pool pages che hanno avuto richiesta di essere aggiornate.';
$strShowStatusInnodb_buffer_pool_pages_freeDescr = 'Il numero di pagine libere.';
$strShowStatusInnodb_buffer_pool_pages_latchedDescr = 'Il numero di pagine bloccate in un InnoDB buffer pool. Queste pagine sono attualmente in lettura o in scittura e non possono essere aggiornate o rimosse per altre ragioni.';
$strShowStatusInnodb_buffer_pool_pages_miscDescr = 'Il numero di pagine occupate perchè sono state allocate per amministrazione, come row locks o per hash index adattivi. Questo valore può essere calcolato come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data.';
$strShowStatusInnodb_buffer_pool_pages_totalDescr = 'Il numero totale di buffer pool, in pagine.';
$strShowStatusInnodb_buffer_pool_read_ahead_rndDescr = 'Il numero di read-aheads "random" InnoDB iniziate. Questo accade quando una query legge una porzione di una tabella, ma in ordine casuale.';
$strShowStatusInnodb_buffer_pool_read_ahead_seqDescr = 'Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB esegue una scansione completa sequenziale di una tabella.';
$strShowStatusInnodb_buffer_pool_read_requestsDescr = 'Il numero di richieste logiche che InnoDb ha fatto.';
$strShowStatusInnodb_buffer_pool_readsDescr = 'Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool e che devono fare una lettura di una pagina singola.';
$strShowStatusInnodb_buffer_pool_wait_freeDescr = 'Normalmente le sritture nel buffer pool InnoDB vengono effettuate in background. Tuttavia se è necessario leggere o creare una pagina, e non sono disponibile pagine pulite è necessario attendere che le pagine siano aggiornate prima. Questo contatore conta le istanze di queste attese. Se la dimesione del buffer pool è stata settata correttamente questo valore dovrebbe essere basso.';
$strShowStatusInnodb_buffer_pool_write_requestsDescr = 'Il numero di scritture effettuate nel buffer pool InnoDB.';
$strShowStatusInnodb_data_fsyncsDescr = 'Il numero delle operazioni fsync() fino ad ora.';
$strShowStatusInnodb_data_pending_fsyncsDescr = 'Il numero di operazioni fsync() in attesa.';
$strShowStatusInnodb_data_pending_readsDescr = 'Il numero di letture in attesa.';
$strShowStatusInnodb_data_pending_writesDescr = 'Il numero di scritture in attesa.';
$strShowStatusInnodb_data_readDescr = 'La quantità di dati letti fino ad ora, in bytes.';
$strShowStatusInnodb_data_readsDescr = 'Il numero totale di dati letti.';
$strShowStatusInnodb_data_writesDescr = 'Il numero totale di dati scritti.';
$strShowStatusInnodb_data_writtenDescr = 'La quantità di dati scritti fino ad ora, in bytes.';
$strShowStatusInnodb_dblwr_pages_writtenDescr = 'Il numero di scritture doublewrite che sono state eseguite ed il numero che sono state scritte a questo scopo.';
$strShowStatusInnodb_dblwr_writesDescr = 'Il numero di scritture doublewrite che sono state eseguite ed il numero che sono state scritte a questo scopo.';
$strShowStatusInnodb_log_waitsDescr = 'Il numero di attese che abbiamo avuto perchè il buffer di log era troppo piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare.';
$strShowStatusInnodb_log_write_requestsDescr = 'Il numero di richieste di scrittura dei log.';
$strShowStatusInnodb_log_writesDescr = 'Il numero scritture fisiche del log file.';
$strShowStatusInnodb_os_log_fsyncsDescr = 'Il numero di scritture fsync fatte sul log file.';
$strShowStatusInnodb_os_log_pending_fsyncsDescr = 'Il numero degli fsyncs in sospeso sul log file.';
$strShowStatusInnodb_os_log_pending_writesDescr = 'Il numero di scritture in sospeso sul log file.';
$strShowStatusInnodb_os_log_writtenDescr = 'Il numero di bytes scritti sul log file.';
$strShowStatusInnodb_pages_createdDescr = 'Il numero di pagine create.';
$strShowStatusInnodb_page_sizeDescr = 'La dimesione di-compilazione delle pagine InnoDB (default 16KB). Molti valori sono conteggiati nelle pagine; la dimesione delle pagine permette di convertirli facilmente in bytes.';
$strShowStatusInnodb_pages_readDescr = 'Il numero di pagine lette.';
$strShowStatusInnodb_pages_writtenDescr = 'Il numero di pagine scritte.';
$strShowStatusInnodb_row_lock_current_waitsDescr = 'Il numero di row locks attualmente in attesa.';
$strShowStatusInnodb_row_lock_time_avgDescr = 'Il tempo medio per l\'acquisizione di un row lock, in millisecondi.';
$strShowStatusInnodb_row_lock_timeDescr = 'Il tempo totale per l\'acquisizione di un row locks, in millisecondi.';
$strShowStatusInnodb_row_lock_time_maxDescr = 'Il tempo massimo per l\'acquisizione di un row lock, in millisecondi.';
$strShowStatusInnodb_row_lock_waitsDescr = 'Il numero di volte che un row lock ha dovuto attendere.';
$strShowStatusInnodb_rows_deletedDescr = 'Il numero di righe cancellate da una tabella InnoDB.';
$strShowStatusInnodb_rows_insertedDescr = 'Il numero di righe inserite da una tabella InnoDB.';
$strShowStatusInnodb_rows_readDescr = 'Il numero di righe lette da una tabella InnoDB.';
$strShowStatusInnodb_rows_updatedDescr = 'Il numero di righe aggiornate da una tabella InnoDB.';
$strShowStatusKey_blocks_not_flushedDescr = 'Il numero di blocchi chaive aggiunti nella cache chiave che sono stati cambiati, ma che non sono stai aggiornati su disco. E\' conosciuto con il nome di Not_flushed_key_blocks.';
$strShowStatusKey_blocks_unusedDescr = 'Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore per determinare quanta cache chiave è in uso.';
$strShowStatusKey_blocks_usedDescr = 'Il numero di blocchi usati nella cache chiave. The number of used blocks in the key cache. Questo valore è un\'importante segnale che indica il numero massimo di blocchi che sono stati in uso contemporaneamente.';
$strShowStatusKey_read_requestsDescr = 'Il numero di richieste per le ggere un blocco chiave dalla cache.';
$strShowStatusKey_readsDescr = 'Il numero di letture fisiche dal disco di un blocco chiave. Se Key_reads è grande allora il valore key_buffer_size è probabilmente troppo piccolo. IIl rapporto di cache miss rate può essere calcolato come Key_reads/Key_read_requests.';
$strShowStatusKey_write_requestsDescr = 'Il numero di richieste per scrivere una blocco chiave nella cache.';
$strShowStatusKey_writesDescr = 'Il numero di scritture fisiche di un blocco chiave sul disco.';
$strShowStatusLast_query_costDescr = 'Il costo totale dell\'ultima query compilata così come computato dall\'ottimizzatore delle query. Utile per comparare il costo di differenti query per la stessa operazione di query. Il valore di default è 0, che significa che nessuna query è stata ancora compilata.';
$strShowStatusNot_flushed_delayed_rowsDescr = 'In numero di righe in attesa di essere scritte nella coda INSERT DELAYED.';
$strShowStatusOpened_tablesDescr = 'Il numero di tabelle che sono state aperte. Se il valore opened_tables è grande, probabilmente il valore di table cache è troppo piccolo.';
$strShowStatusOpen_filesDescr = 'Il numero di file che sono aperti.';
$strShowStatusOpen_streamsDescr = 'il numero di stream che sono aperti (usato principalmente per il logging).';
$strShowStatusOpen_tablesDescr = 'Il numero di tabelle che sono aperte.';
$strShowStatusQcache_free_blocksDescr = 'Il numero di blocchi di memoria liberi nella cache delle query.';
$strShowStatusQcache_free_memoryDescr = 'L\'ammontare di memoria libera nella cache delle query.';
$strShowStatusQcache_hitsDescr = 'Il numero di cache hits.';
$strShowStatusQcache_insertsDescr = 'Il numero di query aggiunte alla cache.';
$strShowStatusQcache_lowmem_prunesDescr = 'Il numero di query che sono state rimosse dalla cache per liberare memoria per la cache di nuove query. Questa informazione può aiutarti per parametrare la dimensione della cache delle query. La cache delle query usa una strategia di "meno usate recentemente" (LRU - least recently used) per decidere quali query rimuovere dalla cache.';
$strShowStatusQcache_not_cachedDescr = 'Il numero di query non in cache (impossibilità di inserirle nella cache oppure non inserite per i settaggi del parametro query_cache_type).';
$strShowStatusQcache_queries_in_cacheDescr = 'Il numero di query registrate nella cache.';
$strShowStatusQcache_total_blocksDescr = 'Il numero totale di blocchi nella cache delle query.';
$strShowStatusReset = 'Reset';
$strShowStatusRpl_statusDescr = 'Lo sato delle repliche failsafe (non ancora implementato).';
$strShowStatusSelect_full_joinDescr = 'Il numero di joins che non usano gli indici. (Se questo valore non è 0, dovresti controllare attentamente gli indici delle tue tabelle.)';
$strShowStatusSelect_full_range_joinDescr = 'Il numero di joins che usano una ricerca limitata su di una tabella di riferimento.';
$strShowStatusSelect_range_checkDescr = 'Il numero di joins senza chiavi che controllano per l\'uso di una chiave dopo ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli indici delle tue tabelle.)';
$strShowStatusSelect_rangeDescr = 'Il numero di joins che usano un range sulla prima tabella. (Non è, solitamente, un valore critico anche se è grande.)';
$strShowStatusSelect_scanDescr = 'Il numero di join che hanno effettuato una scansione completa della prima tabella.';
$strShowStatusSlave_open_temp_tablesDescr = 'Il numero di tabelle temporaneamente aperte da processi SQL slave.';
$strShowStatusSlave_retried_transactionsDescr = 'Numero totale di volte (dalla partenza) in cui la replica slave SQL ha ritentato una transazione.';
$strShowStatusSlave_runningDescr = 'Questa chiave è ON se questo è un server slave connesso ad un server master.';
$strShowStatusSlow_launch_threadsDescr = 'Numero di processi che hanno impiegato più di "slow_launch_time" secondi per partire.';
$strShowStatusSlow_queriesDescr = 'Numero di query che hanno impiegato più di "long_query_time" seconds.';
$strShowStatusSort_merge_passesDescr = 'Il numero di fusioni passate all\'algoritmo di ordianemento che sono state fatte. Se questo valore è grande, dovresti incrementare la variabile di sistema sort_buffer_size.';
$strShowStatusSort_rangeDescr = 'Il numero di ordinamenti che sono stati eseguiti in un intervallo.';
$strShowStatusSort_rowsDescr = 'Il numero di righe ordinate.';
$strShowStatusSort_scanDescr = 'Il numero di ordinamenti che sono stati fatti leggendo la tabella.';
$strShowStatusTable_locks_immediateDescr = 'Il numero di volte che un table lock è stato eseguito immediatamente.';
$strShowStatusTable_locks_waitedDescr = 'Il numero di volte che un table lock è stato eseguito immediatamente ed era necessaria un\'attesa. Se è alto, potresti avere dei problemi con le performance, dovresti prima ottimizzare le query, oppure sia utilizzare le repliche, sia dividere le tabelle.';
$strShowStatusThreads_cachedDescr = 'Il numero dei processi nella cache dei processi. L\'hit rate della cache può essere calcolato come processi_creati/connessioni. Se questo valore è rosso devi aumentare la tua thread_cache_size.';
$strShowStatusThreads_connectedDescr = 'Il numero di connessioni correntemente aperte.';
$strShowStatusThreads_createdDescr = 'Il numero di processi creati per gestire le connessioni. Se Threads_created è grosso, devi probabilmente aumentare il valore thread_cache_size. (Normalmente questo non fornisce un significatico incremento delle performace se hai una buona implementazione dei processi.)';
$strShowStatusThreads_runningDescr = 'Il numero di processi non in attesa.';
$strShowTableDimension = 'Mostra la dimensione delle tabelle';
$strShowTables = 'Mostra le tabelle';
$strShowThisQuery = 'Mostra di nuovo questa query';
$strSimplifiedChinese = 'Cinese Semplificato';
$strSingly = '(singolarmente)';
$strSize = 'Dimensione';
$strSkipQueries = 'Numero di record (query) da saltare a partire dall\'inizio';
$strSlovak = 'Slovacco';
$strSlovenian = 'Sloveno';
$strSmallBigAll = 'Espandi/Contrai';
$strSnapToGrid = 'Calamita alla griglia';
$strSocketProblem = '(o il socket del server locale MySQL non è correttamente configurato)';
$strSortByKey = 'Ordina per chiave';
$strSorting = 'Ordinando';
$strSort = 'Ordinamento';
$strSpaceUsage = 'Spazio utilizzato';
$strSpanish = 'Spagnolo';
$strSplitWordsWithSpace = 'Le parole sono separate da spazi (" ").';
$strSQLCompatibility = 'Modo di compatibilità SQL';
$strSQLExportType = 'Tipo di esportazione';
$strSQLParserBugMessage = 'C\'è la possibilità che ci sia un bug nel parser SQL. Per favore, esaminate la query accuratamente, e controllate che le virgolette siano corrette e non sbagliate. Altre possibili cause d\'errori possono essere che si stia cercando di uploadare un file binario al di fuori di un\'area di testo virgolettata. Si può anche provare la query MySQL dalla riga di comando di MySQL. L\'errore qui sotto restituito dal server MySQL, se ce n\'è uno, può anche aiutare nella diagnostica del problema. Se ci sono ancora problemi, o se il parser SQL di phpMyAdmin sbaglia quando invece l\'interfaccia a riga di comando non mostra problemi, si può ridurre la query SQL in ingresso alla singola query che causa problemi, e inviare un bug report con i dati riportati nella sezione CUT qui sotto:';
$strSQLParserUserError = 'Pare che ci sia un errore nella query SQL immessa. L\'errore del server MySQL mostrato qui sotto, se c\'è, può anche aiutare nella risoluzione del problema';
$strSQLQuery = 'query SQL';
$strSQLResult = 'Risultato SQL';
$strSQL = 'SQL';
$strSQPBugInvalidIdentifer = 'Identificatore Non Valido';
$strSQPBugUnclosedQuote = 'Virgolette Non Chiuse';
$strSQPBugUnknownPunctuation = 'Stringa di Punctuation Sconosciuta';
$strStandInStructureForView = 'Struttura Stand-in per le viste';
$strStatCheckTime = 'Ultimo controllo';
$strStatCreateTime = 'Creazione';
$strStatement = 'Istruzioni';
$strStatisticsOverrun = 'Su di un server sovraccarico, il contatore dei bytes potrebbe incrementarsi, e per questa ragione le statistiche riportate dal server MySQL potrebbero non essere corrette.';
$strStatUpdateTime = 'Ultimo cambiamento';
$strStatus = 'Stato';
$strStorageEngine = 'Motore di Memorizzazione';
$strStorageEngines = 'Motori di Memorizzazione';
$strStrucCSV = 'dati CSV';
$strStrucData = 'Struttura e dati';
$strStrucExcelCSV = 'CSV per dati MS Excel';
$strStrucNativeExcel = 'Dati nativi di MS Excel';
$strStrucOnly = 'Solo struttura';
$strStructPropose = 'Proponi la struttura della tabella';
$strStructureForView = 'Struttura per la vista';
$strStructure = 'Struttura';
$strSubmit = 'Invia';
$strSuccess = 'La query è stata eseguita con successo';
$strSuhosin = 'Sul server è in esecuzione Suhosin. Controlla la documentazione: %sdocumentation%s per possibili problemi.';
$strSum = 'Totali';
$strSwedish = 'Svedese';
$strSwekeyAuthenticating = 'Autenticazione...';
$strSwekeyAuthFailed = 'Autentificazione hardware fallita';
$strSwekeyNoKeyId = 'Il file %s non contiente nessuna chiave id';
$strSwekeyNoKey = 'Nessuna chiave di autentificazione valida inserita';
$strSwitchToDatabase = 'Passare al Database copiato';
$strSwitchToTable = 'Passa alla tabella copiata';

$strTableAlreadyExists = 'La tabella %s esiste già!';
$strTableAlteredSuccessfully = 'La tabella %1$s è già stata modificata con successo';
$strTableComments = 'Commenti sulla tabella';
$strTableEmpty = 'Il nome della tabella è vuoto!';
$strTableHasBeenCreated = 'La tabella %1$s è stata creata.';
$strTableHasBeenDropped = 'La tabella %s è stata eliminata';
$strTableHasBeenEmptied = 'La tabella %s è stata svuotata';
$strTableHasBeenFlushed = 'La tabella %s è stata inizializzata';
$strTableIsEmpty = 'La tabella sembra essere vuota!';
$strTableMaintenance = 'Amministrazione tabella';
$strTableName = 'Nome tabella';
$strTableOfContents = 'Tabella dei contenuti';
$strTableOptions = 'Opzioni della tabella';
$strTables = '%s tabella(e)';
$strTableStructure = 'Struttura della tabella';
$strTable = 'Tabella';
$strTakeIt = 'prendilo';
$strTblPrivileges = 'Privilegi relativi alle tabelle';
$strTempData = 'Dati temporanei';
$strTextAreaLength = ' A causa della sua lunghezza,<br /> questo campo non può essere modificato ';
$strTexyText = 'Testo "Texy!"';
$strThai = 'Thai';
$strThemeDefaultNotFound = 'Tema di default %s non trovato!';
$strThemeNoPreviewAvailable = 'Nessuna preview disponibile.';
$strThemeNotFound = 'Tema %s non trovato!';
$strThemeNoValidImgPath = 'Nessun percorso per le immagini per il tema %s trovato!';
$strThemePathNotFound = 'Percorso per il tema non trovato %s!';
$strTheme = 'Tema / Stile';
$strThisHost = 'Questo Host';
$strThreads = 'Processi';
$strThreadSuccessfullyKilled = 'Il thread %s è stato terminato con successo.';
$strTimeoutInfo = 'Una precedente importazione è entrata in timeout, dopo un nuovo inoltro riprenderà dalla posizione: %d.';
$strTimeoutNothingParsed = 'Nell\'ultima esecuzione nessun dato è stato processato, questo, solitamente, vuole dire che che phpMyAdmin non è in grado di ultimare l\'operazione fino a che non verrà aumentato il parametro php time limits.';
$strTimeoutPassed = 'Superato il tempo limite dello script, se vuoi finire l\'importazione inoltra nuovamente il file e il processo riprenderà.';
$strTime = 'Tempo';
$strToFromPage = 'da/per pagina';
$strToggleScratchboard = '(dis)attiva scratchboard';
$strToggleSmallBig = 'Contrai/Espandi';
$strToSelectRelation = 'Per selezionare una relazione, click :';
$strTotal = 'Totali';
$strTotalUC = 'Totale';
$strTraditionalChinese = 'Cinese Tradizionale';
$strTraditionalSpanish = 'Spagnolo tradizionale';
$strTraffic = 'Traffico';
$strTransactionCoordinator = 'Coordinatore delle transazioni';
$strTransformation_application_octetstream__download = 'Visualizza un collegamento per trasferire i dati di un campo in formato binario.  La prima opzione è il nome del file binario.  La seconda opzione è un nome di campo possibile di una riga della tabella che contiene il nome di schedario.  Se fornite una seconda opzione dovete avere la prima opzione settata ad una stringa vuota';
$strTransformation_application_octetstream__hex = 'Mostra una rappresentazione esadecimale dei dati. Il primo parametro, opzionale, specifica ogni quanto deve essere aggiunto uno spazio (default a 2 nibbles).';
$strTransformation_image_jpeg__inline = 'Mostra un thumbnalil cliccabile; opzioni: larghezza,altezza in pixel (mantiere la proporzione iniziale)';
$strTransformation_image_jpeg__link = 'Mostra un link a questa immagine (download blob diretto, i.e.).';
$strTransformation_image_png__inline = 'Vedi immagine/jpeg: inline';
$strTransformation_text_plain__dateformat = 'Mostra i campi TIME, TIMESTAMP, DATETIME o il TIMESTAMP UNIX come data formattata. La prima opzione è l\'offset (in ore) che verrà aggiunto all\'ora (Default: 0). Usare la seconda opzione per specificare un differente formato di data/ora. La terza opzione determina se vuoi vedere l\'ora locale o UTC (usa "local" o "utc" per questo). In relazione a questo, il formato data ha differenti valori - per "local" guarda la documentazione della funzione PHP strftime(); per "utc" viene usata la funzione gmdate().';
$strTransformation_text_plain__external = 'SOLO PER LINUX: Lancia un\'applicazione esterna e riempie i dati dei campi tramite lo standard input. Restituisce lo standard output dell\'applicazione. L\'impostazione predefinita è Tidy, per stampare in maniera corretta il codice HTML. Per motivi di sicurezza, dovete editare manualmente il file libraries/transformations/text_plain__external.inc.php e inserire gli strumenti che permettete di utilizzare. La prima opzione è così il numero del programma che volete utilizzare e la seconda sono i parametri per il programma. Il terzo parametro, se impostato a 1 convertirà l\'output utilizzando htmlspecialchars() (Predefinito: 1). Un quarto parametro, se impostato a 1 inserirà un NOWRAP al contenuto della cella così che l\'intero output sarà mostrato senza essere riformattato (Predefinito: 1)';
$strTransformation_text_plain__formatted = 'Preserva l\'originale formattazione del campo. Nessun Escaping viene applicato.';
$strTransformation_text_plain__imagelink = 'Mostra un collegamento ad una immagine esterna; il campo contiene il nome del file; la prima opzione è un prefisso come "http://tuodominio.com/", la seconda opzione è la larghezza in pixel, la terza è l\'altezza.';
$strTransformation_text_plain__link = 'Mostra un collegamento, il campo contiene il nome del file; la prima opzione è un prefisso come "http://tuodominio.com/", la seconda opzione è un titolo per il collegamento.';
$strTransformation_text_plain__sql = 'Formatta il testo come query SQL con evidenziazione della sintassi.';
$strTransformation_text_plain__substr = 'Mostra soltanto una parte della stringa. La prima opzione è l\'offset che serve a definire dove inizia l\'output del vostro testo (Prefinito: 0). La seconda opzione è un offset che indica quanto testo viene restituito. Se vuoto, restituisce tutto il testo rimanente. La terza opzione definisce quali caratteri saranno aggiunti in fondo all\'output quando una soptto-stringa viene restituita (Predefinito: ...) .';
$strTriggers = 'Triggers';
$strTruncateQueries = 'Tronca le Query Mostrate';
$strTurkish = 'Turco';
$strType = 'Tipo';

$strUkrainian = 'Ucraino';
$strUncheckAll = 'Deseleziona tutti';
$strUnicode = 'Unicode';
$strUnique = 'Unica';
$strUnknown = 'sconosciuto';
$strUnselectAll = 'Deseleziona tutto';
$strUnsupportedCompressionDetected = 'Stai cercando di importare un file con un tipo di compressione non supportato. Altrimenti il supporto per questo tipo di compressione non è stato ancora implementato o è stato disabilitato dalla tua configurazione.';
$strUpdatePrivMessage = 'Hai aggiornato i permessi per %s.';
$strUpdateProfileMessage = 'Il profilo è stato aggiornato.';
$strUpdateQuery = 'Aggiorna Query';
$strUpdComTab = 'Prego leggere la documentazione su come aggiornare la vostra tabella Column_comments';
$strUpgrade = 'Si dovrebbe aggiornare %s alla versione %s o successiva.';
$strUploadErrorCantWrite = 'Non riesco a scrivere il file su disco.';
$strUploadErrorExtension = 'Caricamento del file interrotto per estensione errata.';
$strUploadErrorFormSize = 'Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML.';
$strUploadErrorIniSize = 'Il file caricato eccede il parametro upload_max_filesize in php.ini.';
$strUploadErrorNoTempDir = 'Non trovo la cartella temporanea.';
$strUploadErrorPartial = 'Il file è stato solo parzialmente caricato.';
$strUploadErrorUnknown = 'Errore sconosciuto nel caricamento del file.';
$strUploadLimit = 'Stai probabilmente cercando di caricare sul server un file troppo grosso. Fai riferimento alla documentazione %sdocumentation%s Per i modi di aggirare questo limite.';
$strUploadsNotAllowed = 'Non è permesso l\'upload dei file su questo server.';
$strUsage = 'Utilizzo';
$strUseBackquotes = 'Usa i backquotes con i nomi delle tabelle e dei campi';
$strUseHostTable = 'Utilizza la Tabella dell\'Host';
$strUserAlreadyExists = 'L\'utente %s esiste già!';
$strUserEmpty = 'Il nome utente è vuoto!';
$strUserName = 'Nome utente';
$strUserNotFound = 'L\'utente selezionato non è stato trovato nella tabella dei privilegi.';
$strUserOverview = 'Vista d\'insieme dell\'utente';
$strUsersDeleted = 'Gli utenti selezionati sono stati cancellati con successo.';
$strUsersHavingAccessToDb = 'Utenti che hanno accesso a "%s"';
$strUser = 'Utente';
$strUseTabKey = 'Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL+frecce per spostarlo altrove';
$strUseTables = 'Utilizza tabelle';
$strUseTextField = 'Utilizza campo text';
$strUseThisValue = 'Usa questa opzione';

$strValidateSQL = 'Valida SQL';
$strValidatorError = 'L\'SQL validator non può essere inizializzato. Prego controllare di avere installato le estensioni php necessarie come descritto nella %sdocumentazione%s.';
$strValue = 'Valore';
$strVar = 'Variabile';
$strVersionInformation = 'Informazioni sulla versione';
$strViewDumpDatabases = 'Visualizza il dump (schema) dei databases';
$strViewDumpDB = 'Visualizza dump (schema) del database';
$strViewDump = 'Visualizza dump (schema) della tabella';
$strViewHasAtLeast = 'Questa visuale ha, come minimo, questo numero di righe. Per informazioni controlla la %sdocumentazione%s.';
$strViewHasBeenDropped = 'La vista %s è stata eliminata';
$strViewImage = 'Visualizza immagine';
$strViewName = 'Nome VISTA';
$strViewVideo = 'Visualizza video';
$strView = 'Vista';

$strWebServerUploadDirectory = 'directory di upload del web-server';
$strWebServerUploadDirectoryError = 'La directory impostata per l\'upload non può essere trovata';
$strWebServer = 'Web server';
$strWelcome = 'Benvenuto in %s';
$strWestEuropean = 'Europeo Occidentale';
$strWiki = 'Wiki';
$strWildcard = 'wildcard';
$strWindowNotFound = 'La finestra destinataria del browser non può essere aggiornata. Può darsi che sia stata chiusa la finestra madre o che il vostro browser stia bloccando gli aggiornamenti fra browsers a causa di qualche impostazione di sicurezza';
$strWithChecked = 'Se selezionati:';
$strWriteRequests = 'Richieste di scrittura';
$strWrongUser = 'Nome utente o password errati. Accesso negato.';

$strXML = 'XML';

$strYes = 'Sì';

$strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
$strZip = '"compresso con zip"';

// To translate:
$strAndSmall = 'and';  //to translate
$strApplyChanges='Apply Selected Changes';  //to translate

$strBLOBRepository = 'BLOB Repository';  //to translate
$strBLOBRepositoryDisableAreYouSure = 'Are you sure you want to disable all BLOB references for database %s?';  //to translate
$strBLOBRepositoryDisableStrongWarning = 'You are about to DISABLE a BLOB Repository!';  //to translate
$strBLOBRepositoryRemove = 'Remove BLOB Repository Reference';  //to translate
$strBLOBRepositoryUpload = 'Upload to BLOB repository';  //to translate

$strClickToSelect = 'Click to select';  //to translate
$strClickToUnselect = 'Click to unselect';  //to translate
$strConfigDirectoryWarning = 'Directory [code]config[/code], which is used by the setup script, still exists in your phpMyAdmin directory. You should remove it once phpMyAdmin has been configured.';  //to translate
$strCouldNotConnectSource = 'Could not connect to the source';  //to translate
$strCouldNotConnectTarget = 'Could not connect to the target';  //to translate
$strCreateUserDatabasePrivileges = 'Grant all privileges on database &quot;%s&quot;';  //to translate
$strCurrentServer = 'Current server';  //to translate

$strDatabaseNotExisting = '\'%s\' database does not exist.';  //to translate 
$strDatabase_src = 'Source database';  //to translate
$strDatabase_trg = 'Target database';  //to translate
$strDataDiff = 'Data Difference';  //to translate
$strDataSyn = 'Data Synchronization';  //to translate
$strDifference = 'Difference';  //to translate
$strDoNotAutoIncrementZeroValues = 'Do not use AUTO_INCREMENT for zero values';  //to translate
$strDumpAllRows = 'Dump all rows';  //to translate

$strFullStart = 'Full start';  //to translate
$strFullStop = 'Full stop';  //to translate

$strGetMoreThemes = 'Get more themes!';  //to translate
$strGoToDatabase = 'Go to database';  //to translate
$strGoToTable = 'Go to table';  //to translate
$strGoToView = 'Go to view';  //to translate

$strHaveBeenSynchronized = 'Selected target tables have been synchronized with source tables.';  //to translate
$strHostTableExplanation = 'When Host table is used, this field is ignored and values stored in Host table are used instead.';  //to translate

$strImportColNames = 'Column names in first row';  //to translate
$strImportEmptyRows = 'Do not import empty rows';  //to translate
$strImportLargeFileUploading = 'The file being uploaded is probably larger than the maximum allowed size or this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) browsers.';  //to translate
$strImportNoticePt1 = 'The following structures have either been created or altered. Here you can:';  //to translate
$strImportNoticePt2 = 'View a structure`s contents by clicking on its name';  //to translate
$strImportNoticePt3 = 'Change any of its settings by clicking the corresponding "Options" link';  //to translate
$strImportNoticePt4 = 'Edit its structure by following the "Structure" link';  //to translate
$strImportODSCurrency = 'Import currencies ($5.00 to 5.00)';  //to translate
$strImportODS = 'Open Document Spreadsheet';  //to translate
$strImportODSPercents = 'Import percentages as proper decimals (12.00% to .12)';  //to translate
$strImportProceedingFile = 'The file is being processed, please be patient.';  //to translate
$strImportUploadInfoNotAvailable = 'Please be patient, the file is being uploaded. Details about the upload are not available.';  //to translate
$strImportXLS = 'Excel 97-2003 XLS Workbook';  //to translate
$strImportXLSX = 'Excel 2007 XLSX Workbook';  //to translate

$strLoginWithoutPassword = 'Login without a password is forbidden by configuration (see AllowNoPassword)';  //to translate

$strMediaWiki = 'MediaWiki Table';  //to translate

$strNavTableFilter = 'Filter';  //to translate
$strNoneDefault = 'None';  //to translate
$strNotPresent = 'not present';  //to translate

$strPhpArray = 'PHP array';  //to translate
$strPort = 'Port';  //to translate

$strQueriesExecuted = 'The following queries have been executed:';  //to translate

$strRemoteServer = 'Remote server';  //to translate
$strRemoveCRLF = 'Remove CRLF characters within fields';  //to translate
$strReplicationAddLines = 'Now, add the following lines at the end of your my.cnf and please restart the MySQL server afterwards.';  //to translate
$strReplicationAddSlaveUser = 'Add slave replication user';  //to translate
$strReplicationChangedSuccesfully = 'Master server changed succesfully to %s';  //to translate
$strReplicationConfiguredMaster = 'This server is configured as master in a replication process.';  //to translate
$strReplicationControlSlave = 'Control slave:';  //to translate
$strReplicationErrorGetPosition = 'Unable to read master log position. Possible privilege problem on master.';  //to translate
$strReplicationErrorMasterConnect = 'Unable to connect to master %s.';  //to translate
$strReplicationMasterChooseAll = 'Replicate all databases; Ignore:';  //to translate
$strReplicationMasterChooseIgn = 'Ignore all databases; Replicate:';  //to translate
$strReplicationMasterChooseMode = 'This server is not configured as master server in a replication process. You can choose from either replicating all databases and ignoring certain (useful if you want to replicate majority of databases) or you can choose to ignore all databases by default and allow only certain databases to be replicated. Please select the mode:';  //to translate
$strReplicationMasterConfiguration = 'Master configuration';  //to translate
$strReplicationMaster = 'Master replication';  //to translate
$strReplicationRestartServer = 'Once you restarted MySQL server, please click on Go button. Afterwards, you should see a message informing you, that this server <b>is</b> configured as master';  //to translate
$strReplicationSelectDatabases = 'Please select databases:';  //to translate
$strReplicationServernConfiguredMaster = 'This server is not configured as master in a replication process. Would you like to <a href="%s">configure</a> it?';  //to translate
$strReplicationShowConnectedSlavesNote = 'Only slaves started with the --report-host=host_name option are visible in this list.';  //to translate
$strReplicationShowConnectedSlaves = 'Show connected slaves';  //to translate
$strReplicationShowMasterStatus = 'Show master status';  //to translate
$strReplicationSkippingErrorWarn = 'Skipping error(s) might lead into unsynchronized master and slave!';  //to translate
$strReplicationSlaveChangeMaster = 'Change or reconfigure master server';  //to translate
$strReplicationSlaveConfiguration = 'Slave configuration';  //to translate
$strReplicationSlaveConfigured = 'Server is configured as slave in a replication process. Would you like to:';  //to translate
$strReplicationSlaveErrorManagement = 'Error management:';  //to translate
$strReplicationSlaveIOThread = 'IO Thread %s only';  //to translate
$strReplicationSlaveNotConfigured = 'This server is not configured as slave in a replication process. Would you like to <a href="%s">configure</a> it?';  //to translate
$strReplicationSlaveReset = 'Reset slave';  //to translate
$strReplicationSlaveSeeStatus = 'See slave status table';  //to translate
$strReplicationSlaveSkipCurrentError = 'Skip current error';  //to translate
$strReplicationSlaveSkipNextErrors = 'errors.';  //to translate
$strReplicationSlaveSkipNext = 'Skip next';  //to translate
$strReplicationSlave = 'Slave replication';  //to translate
$strReplicationSlaveSQLThread = 'SQL Thread %s only';  //to translate
$strReplicationStatusInfo = 'This MySQL server works as %s in <b>replication</b> process. For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.';  //to translate
$strReplicationStatus_master = 'Master status';  //to translate
$strReplicationStatus = 'Replication status';  //to translate
$strReplicationStatus_slave = 'Slave status';  //to translate
$strReplicationSynchronize = 'Synchronize databases with master';  //to translate
$strReplicationUnableToChange = 'Unable to change master';  //to translate
$strReplicationUnknownError = 'Unknown error';  //to translate

$strSessionGCWarning = 'Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie validity configured in phpMyAdmin, because of this, your login will expire sooner than configured in phpMyAdmin.';  //to translate
$strSettings = 'settings';  //to translate
$strSetupAllowAnywhereRecoding_name = 'Allow character set conversion';  //to translate
$strSetupAllowArbitraryServer_desc = 'If enabled user can enter any MySQL server in login form for cookie auth';  //to translate
$strSetupAllowArbitraryServerMsg = 'This [a@?page=form&amp;formset=features#tab_Security]option[/a] should be disabled as it allows attackers to bruteforce login to any MySQL server. If you feel this is necessary, use [a@?page=form&amp;formset=features#tab_Security]trusted proxies list[/a]. However, IP-based protection may not be reliable if your IP belongs to an ISP where thousands of users, including you, are connected to.';  //to translate
$strSetupAllowArbitraryServer_name = 'Allow login to any MySQL server';  //to translate
$strSetupAllowUserDropDatabase_name = 'Show &quot;Drop database&quot; link to normal users';  //to translate
$strSetupBlowfishSecretCharsMsg = 'Key should contain alphanumerics, letters [em]and[/em] special characters';  //to translate
$strSetupblowfish_secret_desc = 'Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] authentication';  //to translate
$strSetupBlowfishSecretLengthMsg = 'Key is too short, it should have at least 8 characters';  //to translate
$strSetupBlowfishSecretMsg = 'You didn\'t have blowfish secret set and enabled cookie authentication so the key was generated for you. It is used to encrypt cookies.';  //to translate
$strSetupblowfish_secret_name = 'Blowfish secret';  //to translate
$strSetupBrowseMarkerEnable_desc = 'Highlight selected rows';  //to translate
$strSetupBrowseMarkerEnable_name = 'Row marker';  //to translate
$strSetupBrowsePointerEnable_desc = 'Highlight row pointed by the mouse cursor';  //to translate
$strSetupBrowsePointerEnable_name = 'Highlight pointer';  //to translate
$strSetupBZipDump_desc = 'Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for import and export operations';  //to translate
$strSetupBZipDump_name = 'Bzip2';  //to translate
$strSetupBZipDumpWarning = '[a@?page=form&amp;formset=features#tab_Import_export]Bzip2 compression and decompression[/a] requires functions (%s) which are unavailable on this system.';  //to translate
$strSetupCannotLoadConfigMsg = 'Please create web server writable folder [em]config[/em] in phpMyAdmin top level directory as described in [a@../Documentation.html#setup_script]documentation[/a]. Otherwise you will be only able to download or display it.';  //to translate
$strSetupCharEditing_desc = 'Defines which type of editing controls should be used for CHAR and VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/kbd] - allows newlines in fields';  //to translate
$strSetupCharEditing_name = 'CHAR fields editing';  //to translate
$strSetupCharTextareaCols_desc = 'Number of columns for CHAR/VARCHAR textareas';  //to translate
$strSetupCharTextareaCols_name = 'CHAR textarea columns';  //to translate
$strSetupCharTextareaRows_desc = 'Number of rows for CHAR/VARCHAR textareas';  //to translate
$strSetupCharTextareaRows_name = 'CHAR textarea rows';  //to translate
$strSetupCheckConfigurationPermissions_name = 'Check config file permissions';  //to translate
$strSetupClear = 'Clear';  //to translate
$strSetupCompressOnFly_desc = 'Compress gzip/bzip2 exports on the fly without the need for much memory; if you encounter problems with created gzip/bzip2 files disable this feature';  //to translate
$strSetupCompressOnFly_name = 'Compress on the fly';  //to translate
$strSetupConfirm_desc = 'Whether a warning (&quot;Are your really sure...&quot;) should be displayed when you\'re about to lose data';  //to translate
$strSetupConfirm_name = 'Confirm DROP queries';  //to translate
$strSetupDefaultCharset_desc = 'Default character set used for conversions';  //to translate
$strSetupDefaultCharset_name = 'Default character set';  //to translate
$strSetupDefaultTabDatabase_desc = 'Tab that is displayed when entering a database';  //to translate
$strSetupDefaultTabDatabase_name = 'Default database tab';  //to translate
$strSetupDefaultTabServer_desc = 'Tab that is displayed when entering a server';  //to translate
$strSetupDefaultTabServer_name = 'Default server tab';  //to translate
$strSetupDefaultTabTable_desc = 'Tab that is displayed when entering a table';  //to translate
$strSetupDefaultTabTable_name = 'Default table tab';  //to translate
$strSetupDirectoryNotice = 'This value should be double checked to ensure that this directory is neither world accessible nor readable or writable by other users on your server.';  //to translate
$strSetupDisplayDatabasesList_desc = 'Show database listing as a list instead of a drop down';  //to translate
$strSetupDisplayDatabasesList_name = 'Display databases as a list';  //to translate
$strSetupDisplayServersList_desc = 'Show server listing as a list instead of a drop down';  //to translate
$strSetupDisplayServersList_name = 'Display servers as a list';  //to translate
$strSetupEndOfLine = 'End of line';  //to translate
$strSetuperror_connection = 'Could not connect to MySQL server';  //to translate
$strSetuperror_empty_pmadb_password = 'Empty phpMyAdmin control user password while using pmadb';  //to translate
$strSetuperror_empty_pmadb_user = 'Empty phpMyAdmin control user while using pmadb';  //to translate
$strSetuperror_empty_signon_session = 'Empty signon session name while using signon authentication method';  //to translate
$strSetuperror_empty_signon_url = 'Empty signon URL while using signon authentication method';  //to translate
$strSetuperror_empty_user_for_config_auth = 'Empty username while using config authentication method';  //to translate
$strSetuperror_form = 'Submitted form contains errors';  //to translate
$strSetuperror_incorrect_ip_address = 'Incorrect IP address: %s';  //to translate
$strSetuperror_incorrect_port = 'Not a valid port number';  //to translate
$strSetuperror_missing_field_data = 'Missing data for %s';  //to translate
$strSetuperror_nan_nneg = 'Not a non-negative number';  //to translate
$strSetuperror_nan_p = 'Not a positive number';  //to translate
$strSetupExecTimeLimit_desc = 'Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no limit)';  //to translate
$strSetupExecTimeLimit_name = 'Maximum execution time';  //to translate
$strSetupExport_asfile_name = 'Save as file';  //to translate
$strSetupExport_charset_name = 'Character set of the file';  //to translate
$strSetupExport_file_template_database_name = 'Database name template';  //to translate
$strSetupExport_file_template_server_name = 'Server name template';  //to translate
$strSetupExport_file_template_table_name = 'Table name template';  //to translate
$strSetupExport_onserver_name = 'Save on server';  //to translate
$strSetupExport_onserver_overwrite_name = 'Overwrite existing file(s)';  //to translate
$strSetupExport_remember_file_template_name = 'Remember file name template';  //to translate
$strSetupForceSSL_desc = 'Force secured connection while using phpMyAdmin';  //to translate
$strSetupForceSSLMsg = 'This [a@?page=form&amp;formset=features#tab_Security]option[/a] should be enabled if your web server supports it';  //to translate
$strSetupForceSSL_name = 'Force SSL connection';  //to translate
$strSetupForeignKeyDropdownOrder_desc = 'Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is the referenced data, [kbd]id[/kbd] is the key value';  //to translate
$strSetupForeignKeyDropdownOrder_name = 'Foreign key dropdown order';  //to translate
$strSetupForeignKeyMaxLimit_desc = 'A dropdown will be used if fewer items are present';  //to translate
$strSetupForeignKeyMaxLimit_name = 'Foreign key limit';  //to translate
$strSetupForm_Browse = 'Browse mode';  //to translate
$strSetupForm_Browse_desc = 'Customize browse mode';  //to translate
$strSetupForm_Edit_desc = 'Customize edit mode';  //to translate
$strSetupForm_Edit = 'Edit mode';  //to translate
$strSetupForm_Export_defaults_desc = 'Customize default export options';  //to translate
$strSetupForm_Export_defaults = 'Export defaults';  //to translate
$strSetupForm_Import_defaults_desc = 'Customize default common import options';  //to translate
$strSetupForm_Import_defaults = 'Import defaults';  //to translate
$strSetupForm_Import_export_desc = 'Set import and export directories and compression options';  //to translate
$strSetupForm_Left_databases = 'Databases';  //to translate
$strSetupForm_Left_databases_desc = 'Databases display options';  //to translate
$strSetupForm_Left_frame_desc = 'Customize appearance of the navigation frame';  //to translate
$strSetupForm_Left_servers_desc = 'Servers display options';  //to translate
$strSetupForm_Left_servers = 'Servers';  //to translate
$strSetupForm_Main_frame = 'Main frame';  //to translate
$strSetupForm_Other_core_settings_desc = 'Settings that didn\'t fit enywhere else';  //to translate
$strSetupForm_Other_core_settings = 'Other core settings';  //to translate
$strSetupForm_Query_window_desc = 'Customize query window options';  //to translate
$strSetupForm_Query_window = 'Query window';  //to translate
$strSetupForm_Security_desc = 'Please note that phpMyAdmin is just a user interface and its features do not limit MySQL';  //to translate
$strSetupForm_Server_config_desc = 'Advanced server configuration, do not change these options unless you know what they are for';  //to translate
$strSetupForm_Server_login_options_desc = 'Enter login options for signon authentication';  //to translate
$strSetupForm_Server_login_options = 'Signon login options';  //to translate
$strSetupForm_Server_pmadb_desc = 'Configure phpMyAdmin database to gain access to additional features, see [a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in documentation';  //to translate
$strSetupFormset_import = 'Customize import defaults';  //to translate
$strSetupForm_Sql_box_desc = 'Customize links shown in SQL Query boxes';  //to translate
$strSetupForm_Sql_box = 'SQL Query box';  //to translate
$strSetupForm_Sql_queries_desc = 'SQL queries settings, for SQL Query box options see [a@?page=form&amp;formset=main_frame#tab_Sql_box]Navigation frame[/a] settings';  //to translate
$strSetupForm_Sql_queries = 'SQL queries';  //to translate
$strSetupForm_Startup_desc = 'Customize startup page';  //to translate
$strSetupForm_Tabs_desc = 'Choose how you want tabs to work';  //to translate
$strSetupForm_Tabs = 'Tabs';  //to translate
$strSetupGZipDump_desc = 'Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import and export operations';  //to translate
$strSetupGZipDump_name = 'GZip';  //to translate
$strSetupGZipDumpWarning = '[a@?page=form&amp;formset=features#tab_Import_export]GZip compression and decompression[/a] requires functions (%s) which are unavailable on this system.';  //to translate
$strSetupHomepageLink = 'phpMyAdmin homepage';  //to translate
$strSetupIconvExtraParams_name = 'Extra parameters for iconv';  //to translate
$strSetupIgnoreMultiSubmitErrors_desc = 'If enabled PMA continues computing multiple-statement queries even if one of the queries failed';  //to translate
$strSetupIgnoreMultiSubmitErrors_name = 'Ignore multiple statement errors';  //to translate
$strSetupImport_allow_interrupt_desc = 'Allow interrupt of import in case script detects it is close to time limit. This might be good way to import large files, however it can break transactions.';  //to translate
$strSetupImport_allow_interrupt_name = 'Partial import: allow interrupt';  //to translate
$strSetupImport_format_desc = 'Default format, mind that this list depends on location (database, table) and only SQL is always avaiable';  //to translate
$strSetupImport_format_name = 'Format of imported file';  //to translate
$strSetupImport_skip_queries_desc = 'Number of records (queries) to skip from start';  //to translate
$strSetupImport_skip_queries_name = 'Partial import: skip queries';  //to translate
$strSetupInsecureConnectionMsg1 = 'You are not using a secure connection, all data (including sensitive, like passwords) is transferred unencrypted!';  //to translate
$strSetupInsecureConnectionMsg2 = 'If your server is also configured to accept HTTPS requests follow [a@%s]this link[/a] to use a secure connection.';  //to translate
$strSetupInsertRows_desc = 'How many rows can be inserted at one time';  //to translate
$strSetupInsertRows_name = 'Number of inserted rows';  //to translate
$strSetupLeftDefaultTabTable_name = 'Target for quick access icon';  //to translate
$strSetupLeftDisplayServers_desc = 'Display server choice at the top of the left frame';  //to translate
$strSetupLeftDisplayServers_name = 'Display servers selection';  //to translate
$strSetupLeftFrameDBSeparator_desc = 'String that separates databases into different tree levels';  //to translate
$strSetupLeftFrameDBSeparator_name = 'Database tree separator';  //to translate
$strSetupLeftFrameDBTree_desc = 'Only light version; display databases in a tree (determined by the separator defined below)';  //to translate
$strSetupLeftFrameDBTree_name = 'Display databases in a tree';  //to translate
$strSetupLeftFrameLight_desc = 'Disable this if you want to see all databases at once';  //to translate
$strSetupLeftFrameTableLevel_name = 'Maximum table tree depth';  //to translate
$strSetupLeftFrameTableSeparator_desc = 'String that separates tables into different tree levels';  //to translate
$strSetupLeftFrameTableSeparator_name = 'Table tree separator';  //to translate
$strSetupLeftLogoLink_name = 'Logo link URL';  //to translate
$strSetupLeftLogoLinkWindow_desc = 'Open the linked page in the main window ([kbd]main[/kbd]) or in a new one ([kbd]new[/kbd])';  //to translate
$strSetupLeftLogoLinkWindow_name = 'Logo link target';  //to translate
$strSetupLeftPointerEnable_desc = 'Highlight server under the mouse cursor';  //to translate
$strSetupLeftPointerEnable_name = 'Enable highlighting';  //to translate
$strSetupLetUserChoose = 'let the user choose';  //to translate
$strSetupLightTabs_desc = 'Use less graphically intense tabs';  //to translate
$strSetupLightTabs_name = 'Light tabs';  //to translate
$strSetupLoginCookieDeleteAll_desc = 'If enabled logout deletes cookies for all servers, otherwise only for current one. Setting this to FALSE makes it easy to forget to log out from other server, when you are using more of them.';  //to translate
$strSetupLoginCookieDeleteAll_name = 'Delete all cookies on logout';  //to translate
$strSetupLoginCookieRecall_desc = 'Define whether the previous login should be recalled or not in cookie authentication mode';  //to translate
$strSetupLoginCookieRecall_name = 'Recall user name';  //to translate
$strSetupLoginCookieStore_desc = 'Define how long (in seconds) a login cookie should be stored in browser. Default 0 means that it will be kept for existing session only, that is it will be deleted as soon as you close the browser window. This is recommended for non-trusted environments.';  //to translate
$strSetupLoginCookieStore_name = 'Login cookie store';  //to translate
$strSetupLoginCookieValidity_desc = 'Define how long (in seconds) a login cookie is valid';  //to translate
$strSetupLoginCookieValidityMsg = '[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] should be should be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may pose a security risk such as impersonation.';  //to translate
$strSetupLoginCookieValidity_name = 'Login cookie validity';  //to translate
$strSetupMaxCharactersInDisplayedSQL_desc = 'Maximum number of characters used when a SQL query is displayed';  //to translate
$strSetupMaxCharactersInDisplayedSQL_name = 'Maximum displayed SQL length';  //to translate
$strSetupMaxDbList_desc = 'Maximum number of databases displayed in left frame and database list';  //to translate
$strSetupMaxDbList_name = 'Maximum databases';  //to translate
$strSetupMaxRows_desc = 'Number of rows displayed when browsing a result set. If the result set contains more rows, &quot;Previous&quot; and &quot;Next&quot; links will be shown.';  //to translate
$strSetupMaxRows_name = 'Maximum number of rows to display';  //to translate
$strSetupMaxTableList_desc = 'Maximum number of tables displayed in table list';  //to translate
$strSetupMaxTableList_name = 'Maximum tables';  //to translate
$strSetupMemoryLimit_desc = 'The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] ([kbd]0[/kbd] for no limit)';  //to translate
$strSetupNavigationBarIconic_desc = 'Use only icons, only text or both';  //to translate
$strSetupNavigationBarIconic_name = 'Iconic navigation bar';  //to translate
$strSetupOBGzip_desc = 'use GZip output buffering for increased speed in HTTP transfers';  //to translate
$strSetupOBGzip_name = 'GZip output buffering';  //to translate
$strSetupOrder_desc = '[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, DATETIME and TIMESTAMP, ascending order otherwise';  //to translate
$strSetupOrder_name = 'Default sorting order';  //to translate
$strSetupPersistentConnections_desc = 'Use persistent connections to MySQL databases';  //to translate
$strSetupPersistentConnections_name = 'Persistent connections';  //to translate
$strSetupPropertiesIconic_desc = 'Use only icons, only text or both';  //to translate
$strSetupPropertiesIconic_name = 'Iconic table operations';  //to translate
$strSetupProtectBinary_desc = 'Disallow BLOB or BLOB and BINARY fields from editing';  //to translate
$strSetupProtectBinary_name = 'Protect binary fields';  //to translate
$strSetupQueryHistoryDB_desc = 'Enable if you want DB-based query history (requires pmadb). If disabled, this utilizes JS-routines to display query history (lost by window close).';  //to translate
$strSetupQueryHistoryDB_name = 'Permanent query history';  //to translate
$strSetupQueryHistoryMax_desc = 'How many queries are kept in history';  //to translate
$strSetupQueryHistoryMax_name = 'Query history length';  //to translate
$strSetupQueryWindowDefTab_desc = 'Tab displayed when opening a new query window';  //to translate
$strSetupQueryWindowDefTab_name = 'Default query window tab';  //to translate
$strSetupRecodingEngine_desc = 'Select which functions will be used for character set conversion';  //to translate
$strSetupRecodingEngine_name = 'Recoding engine';  //to translate
$strSetupRevertErroneousFields = 'Try to revert erroneous fields to their default values';  //to translate
$strSetupSaveDir_desc = 'Directory where exports can be saved on server';  //to translate
$strSetupSaveDir_name = 'Save directory';  //to translate
$strSetupServerAuthConfigMsg = 'You set [kbd]config[/kbd] authentication type and included username and password for auto-login, which is not a desirable option for live hosts. Anyone who knows phpMyAdmin URL can directly access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/kbd].';  //to translate
$strSetupServerExtensionMsg = 'You should use mysqli for performance reasons';  //to translate
$strSetupServerNoPasswordMsg = 'You allow for connecting to the server without a password.';  //to translate
$strSetupServers_AllowDeny_order_desc = 'Leave blank if not used';  //to translate
$strSetupServers_AllowDeny_order_name = 'Host authentication order';  //to translate
$strSetupServers_AllowDeny_rules_desc = 'Leave blank for defaults';  //to translate
$strSetupServers_AllowDeny_rules_name = 'Host authentication rules';  //to translate
$strSetupServers_AllowNoPassword_name = 'Allow logins without a password';  //to translate
$strSetupServers_AllowRoot_name = 'Allow root login';  //to translate
$strSetupServers_auth_swekey_config_desc = 'Config file for [a@http://swekey.com]SweKey hardware authentication[/a], relative to phpMyAdmin root directory, eg. ./swekey.conf';  //to translate
$strSetupServers_auth_swekey_config_name = 'SweKey config file';  //to translate
$strSetupServers_bookmarktable_desc = 'Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] support, suggested: [kbd]pma_bookmark[/kbd]';  //to translate
$strSetupServers_bookmarktable_name = 'Bookmark table';  //to translate
$strSetupServers_column_info_desc = 'Leave blank for no column comments/mime types, suggested: [kbd]pma_column_info[/kbd]';  //to translate
$strSetupServers_column_info_name = 'Column information table';  //to translate
$strSetupServers_compress_desc = 'Compress connection to MySQL server';  //to translate
$strSetupServers_compress_name = 'Compress connection';  //to translate
$strSetupServers_connect_type_desc = 'How to connect to server, keep tcp if unsure';  //to translate
$strSetupServers_controlpass_name = 'Control user password';  //to translate
$strSetupServers_controluser_desc = 'A special MySQL user configured with limited permissions, more information available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]';  //to translate
$strSetupServers_controluser_name = 'Control user';  //to translate
$strSetupServers_CountTables_desc = 'Count tables when showing database list';  //to translate
$strSetupServers_CountTables_name = 'Count tables';  //to translate
$strSetupServers_designer_coords_desc = 'Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/kbd]';  //to translate
$strSetupServers_designer_coords_name = 'Designer table';  //to translate
$strSetupServers_DisableIS_desc = 'More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]';  //to translate
$strSetupServers_DisableIS_name = 'Disable use of INFORMATION_SCHEMA';  //to translate
$strSetupServerSecurityInfoMsg = 'If you feel this is necessary, use additional protection settings - [a@?page=servers&amp;mode=edit&amp;id=%1$d#tab_Server_config]host authentication[/a] settings and [a@?page=form&amp;formset=features#tab_Security]trusted proxies list[/a]. However, IP-based protection may not be reliable if your IP belongs to an ISP where thousands of users, including you, are connected to.';  //to translate
$strSetupServers_extension_desc = 'What PHP extension to use, use mysqli if supported';  //to translate
$strSetupServers_extension_name = 'PHP extension to use';  //to translate
$strSetupServers_hide_db_desc = 'Hide databases matching regular expression (PCRE)';  //to translate
$strSetupServers_hide_db_name = 'Hide databases';  //to translate
$strSetupServers_history_desc = 'Leave blank for no SQL query history support, suggested: [kbd]pma_history[/kbd]';  //to translate
$strSetupServers_history_name = 'SQL query history table';  //to translate
$strSetupServers_host_desc = 'Hostname where MySQL server is running';  //to translate
$strSetupServers_host_name = 'Server hostname';  //to translate
$strSetupServers_LogoutURL_name = 'Logout URL';  //to translate
$strSetupServers_nopassword_desc = 'Try to connect without password';  //to translate
$strSetupServers_nopassword_name = 'Connect without password';  //to translate
$strSetupServers_only_db_desc = 'You can use MySQL wildcard characters (% and _), escape them if you want to use their literal instances, i.e. use \'my\_db\' and not \'my_db\'';  //to translate
$strSetupServers_only_db_name = 'Show only listed databases';  //to translate
$strSetupServers_password_desc = 'Leave empty if not using config auth';  //to translate
$strSetupServers_password_name = 'Password for config auth';  //to translate
$strSetupServers_pdf_pages_desc = 'Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]';  //to translate
$strSetupServers_pdf_pages_name = 'PDF schema: pages table';  //to translate
$strSetupServers_pmadb_desc = 'Database used for relations, bookmarks, and PDF features. See [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for no support. Suggested: [kbd]phpmyadmin[/kbd]';  //to translate
$strSetupServers_pmadb_name = 'PMA database';  //to translate
$strSetupServers_port_desc = 'Port on which MySQL server is listening, leave empty for default';  //to translate
$strSetupServers_port_name = 'Server port';  //to translate
$strSetupServers_relation_desc = 'Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links[/a] support, suggested: [kbd]pma_relation[/kbd]';  //to translate
$strSetupServers_relation_name = 'Relation table';  //to translate
$strSetupServers_ShowDatabasesCommand_desc = 'SQL command to fetch available databases';  //to translate
$strSetupServers_ShowDatabasesCommand_name = 'SHOW DATABASES command';  //to translate
$strSetupServers_SignonSession_desc = 'See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/a] for an example';  //to translate
$strSetupServers_SignonSession_name = 'Signon session name';  //to translate
$strSetupServers_SignonURL_name = 'Signon URL';  //to translate
$strSetupServerSslMsg = 'You should use SSL connections if your web server supports it';  //to translate
$strSetupServers_socket_desc = 'Socket on which MySQL server is listening, leave empty for default';  //to translate
$strSetupServers_socket_name = 'Server socket';  //to translate
$strSetupServers_ssl_desc = 'Enable SSL for connection to MySQL server';  //to translate
$strSetupServers_ssl_name = 'Use SSL';  //to translate
$strSetupServers_table_coords_desc = 'Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]';  //to translate
$strSetupServers_table_coords_name = 'PDF schema: table coordinates';  //to translate
$strSetupServers_table_info_desc = 'Table to describe the display fields, leave blank for no support; suggested: [kbd]pma_table_info[/kbd]';  //to translate
$strSetupServers_table_info_name = 'Display fields table';  //to translate
$strSetupServers_user_desc = 'Leave empty if not using config auth';  //to translate
$strSetupServers_user_name = 'User for config auth';  //to translate
$strSetupServers_verbose_check_desc = 'Disable if you know that your pma_* tables are up to date. This prevents compatibility checks and thereby increases performance';  //to translate
$strSetupServers_verbose_check_name = 'Verbose check';  //to translate
$strSetupServers_verbose_desc = 'A user-friendly description of this server. Leave blank to display the hostname instead.';  //to translate
$strSetupServers_verbose_name = 'Verbose name of this server';  //to translate
$strSetupShowAll_desc = 'Whether a user should be displayed a &quot;show all (records)&quot; button';  //to translate
$strSetupShowAll_name = 'Allow to display all the rows';  //to translate
$strSetupShowChgPassword_desc = 'Please note that enabling this has no effect with [kbd]config[/kbd] authentication mode because the password is hard coded in the configuration file; this does not limit the ability to execute the same command directly';  //to translate
$strSetupShowChgPassword_name = 'Show password change form';  //to translate
$strSetupShowCreateDb_name = 'Show create database form';  //to translate
$strSetupShowFunctionFields_desc = 'Display the function fields in edit/insert mode';  //to translate
$strSetupShowFunctionFields_name = 'Show function fields';  //to translate
$strSetupShowHiddenMessages = 'Show hidden messages (#MSG_COUNT)';  //to translate
$strSetupShowPhpInfo_desc = 'Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] output';  //to translate
$strSetupShowPhpInfo_name = 'Show phpinfo() link';  //to translate
$strSetupShowServerInfo_name = 'Show detailed MySQL server information';  //to translate
$strSetupShowSQL_desc = 'Defines whether SQL queries generated by phpMyAdmin should be displayed';  //to translate
$strSetupShowSQL_name = 'Show SQL queries';  //to translate
$strSetupShowStats_desc = 'Allow to display database and table statistics (eg. space usage)';  //to translate
$strSetupShowStats_name = 'Show statistics';  //to translate
$strSetupShowTooltipAliasDB_desc = 'If tooltips are enabled and a database comment is set, this will flip the comment and the real name';  //to translate
$strSetupShowTooltipAliasDB_name = 'Display database comment instead of its name';  //to translate
$strSetupShowTooltipAliasTB_desc = 'When setting this to [kbd]nested[/kbd], the alias of the table name is only used to split/nest the tables according to the $cfg[\'LeftFrameTableSeparator\'] directive, so only the folder is called like the alias, the table name itself stays unchanged';  //to translate
$strSetupShowTooltipAliasTB_name = 'Display table comment instead of its name';  //to translate
$strSetupShowTooltip_name = 'Display table comments in tooltips';  //to translate
$strSetupSkipLockedTables_desc = 'Mark used tables and make it possible to show databases with locked tables';  //to translate
$strSetupSkipLockedTables_name = 'Skip locked tables';  //to translate
$strSetupSQLQuery_Explain_name = 'Explain SQL';  //to translate
$strSetupSQLQuery_Validate_name = 'Validate SQL';  //to translate
$strSetupSuggestDBName_desc = 'Suggest a database name on the &quot;Create Database&quot; form (if possible) or keep the text field empty';  //to translate
$strSetupSuggestDBName_name = 'Suggest new database name';  //to translate
$strSetupTrustedProxies_desc = 'Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]';  //to translate
$strSetupTrustedProxies_name = 'List of trusted proxies for IP allow/deny';  //to translate
$strSetupUploadDir_desc = 'Directory on server where you can upload files for import';  //to translate
$strSetupUploadDir_name = 'Upload directory';  //to translate
$strSetupUseDbSearch_desc = 'Allow for searching inside the entire database';  //to translate
$strSetupUseDbSearch_name = 'Use database search';  //to translate
$strSetupVerboseMultiSubmit_desc = 'Show affected rows of each statement on multiple-statement queries. See libraries/import.lib.php for defaults on how many queries a statement may contain.';  //to translate
$strSetupVerboseMultiSubmit_name = 'Verbose multiple statements';  //to translate
$strSetupVersionCheckDataError = 'Reading of version failed. Maybe you\'re offline or the upgrade server does not respond.';  //to translate
$strSetupVersionCheckInvalid = 'Got invalid version string from server';  //to translate
$strSetupVersionCheckNewAvailable = 'New version of phpMyAdmin is available, you should consider upgrade. New version is %s, released on %s.';  //to translate
$strSetupVersionCheckNewAvailableSvn = 'You are using subversion version, run [kbd]svn update[/kbd] :-)[br]The latest stable version is %s, released on %s.';  //to translate
$strSetupVersionCheckNone = 'No newer stable version is available';  //to translate
$strSetupVersionCheckUnparsable = 'Unparsable version string';  //to translate
$strSetupVersionCheckWrapperError = 'Neither URL wrapper nor CURL is available. Version check is not possible.';  //to translate
$strSetupZipDump_desc = 'Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression for import and export operations';  //to translate
$strSetupZipDumpExportWarning = '[a@?page=form&amp;formset=features#tab_Import_export]Zip compression[/a] requires functions (%s) which are unavailable on this system.';  //to translate
$strSetupZipDumpImportWarning = '[a@?page=form&amp;formset=features#tab_Import_export]Zip decompression[/a] requires functions (%s) which are unavailable on this system.';  //to translate
$strSetupZipDump_name = 'ZIP';  //to translate
$strShowBinaryContentsAsHex = 'Show binary contents as HEX';  //to translate
$strShowBinaryContents = 'Show binary contents';  //to translate
$strShowBLOBContents = 'Show BLOB contents';  //to translate
$strShowMasterStatus = 'Show master status';  //to translate
$strSlaveConfigure = 'Make sure, you have unique server-id in your configuration file (my.cnf). If not, please add the following line into [mysqld] section:';  //to translate
$strSocket = 'Socket';  //to translate
$strStart = 'Start';  //to translate
$strStatic = 'static';  //to translate
$strStop = 'Stop';  //to translate
$strStructureDiff = 'Structure Difference' ;  //to translate
$strStructureLC = 'structure';  //to translate
$strStructureSyn = 'Structure Synchronization';  //to translate
$strSynchronizationNote='Target database will be completely synchronized with source database. Source database will remain unchanged.';  //to translate
$strSynchronizeDb= 'Synchronize Databases';  //to translate
$strSynchronize = 'Synchronize';  //to translate

$strTableAddColumn = 'Add column(s)';  //to translate
$strTableAlterColumn = 'Alter column(s)';  //to translate
$strTableAlterIndex = 'Alter index(s)';  //to translate
$strTableApplyIndex = 'Apply index(s)';  //to translate
$strTableDeleteRows = 'Would you like to delete all the previous rows from target tables?';  //to translate
$strTableInsertRow = 'Insert row(s)';  //to translate
$strTableRemoveColumn = 'Remove column(s)';  //to translate
$strTableRemoveIndex = 'Remove index(s)';  //to translate
$strTableUpdateRow = 'Update row(s)';  //to translate
$strTargetDatabaseHasBeenSynchronized = 'Target database has been synchronized with source database';  //to translate
$strTrackingActivated = 'Tracking of %s.%s is activated.';  //to translate
$strTrackingActivateNow = 'Activate now';  //to translate
$strTrackingActivateTrackingFor = 'Activate tracking for %s.%s';  //to translate
$strTrackingCreateVersion = 'Create version';  //to translate
$strTrackingCreateVersionOf = 'Create version %s of %s.%s';  //to translate
$strTrackingDatabaseLog = 'Database Log';  //to translate
$strTrackingDataDefinitionStatement = 'Data definition statement';  //to translate
$strTrackingDataManipulationStatement = 'Data manipulation statement';  //to translate
$strTrackingDate = 'Date';  //to translate
$strTrackingDeactivateNow = 'Deactivate now';  //to translate
$strTrackingDeactivateTrackingFor = 'Deactivate tracking for %s.%s';  //to translate
$strTrackingExportAs = 'Export as %s';  //to translate
$strTrackingIsActive = 'Tracking is active.';  //to translate
$strTrackingIsNotActive = 'Tracking is not active.';  //to translate
$strTrackingMechanism = 'Tracking Mechanism';  //to translate
$strTrackingReportClose = 'Close';  //to translate
$strTrackingReport = 'Tracking report';  //to translate
$strTrackingShowLogDateUsers = 'Show %s with dates from %s to %s by user %s %s';  //to translate
$strTrackingShowVersions = 'Show versions';  //to translate
$strTrackingSQLDumpFile = 'SQL dump (file download)';  //to translate
$strTrackingSQLDump = 'SQL dump';  //to translate
$strTrackingSQLExecuted = 'SQL statements executed.';  //to translate
$strTrackingSQLExecutionAlert = 'This option will replace your table and contained data.';  //to translate
$strTrackingSQLExecution = 'SQL execution';  //to translate
$strTrackingSQLExported = 'SQL statements exported. Please copy the dump or execute it.';  //to translate
$strTrackingStatements = 'Tracking statements';  //to translate
$strTrackingStatusActive = 'active';  //to translate
$strTrackingStatusNotActive = 'not active';  //to translate
$strTrackingStructureSnapshot = 'Structure snapshot';  //to translate
$strTrackingThCreated = 'Created';  //to translate
$strTrackingThLastVersion = 'Last version';  //to translate
$strTrackingThUpdated = 'Updated';  //to translate
$strTrackingThVersion = 'Version';  //to translate
$strTrackingTrackDDStatements = 'Track these data definition statements:';  //to translate
$strTrackingTrackDMStatements = 'Track these data manipulation statements:';  //to translate
$strTrackingTrackedTables = 'Tracked tables';  //to translate
$strTracking = 'Tracking';  //to translate
$strTrackingTrackTable = 'Track table';  //to translate
$strTrackingUntrackedTables = 'Untracked tables';  //to translate
$strTrackingUsername = 'Username';  //to translate
$strTrackingVersionActivated = 'Tracking for %s.%s , version %s is activated.';  //to translate
$strTrackingVersionCreated = 'Version %s is created, tracking for %s.%s is activated.';  //to translate
$strTrackingVersionDeactivated = 'Tracking for %s.%s , version %s is deactivated.';  //to translate
$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)';  //to translate
$strTrackingVersions = 'Versions';  //to translate

$strXMLError = 'The XML file specified was either malformed or incomplete. Please correct the issue and try again.';  //to translate
$strXMLExportContents = 'Export contents';  //to translate
$strXMLExportFunctions = 'Export functions';  //to translate
$strXMLExportProcedures = 'Export procedures';  //to translate
$strXMLExportStructs = 'Export Structure Schemas (recommended)';  //to translate
$strXMLExportTables = 'Export tables';  //to translate
$strXMLExportTriggers = 'Export triggers';  //to translate
$strXMLExportViews = 'Export views';  //to translate

$strTrackingYouCanExecute = 'You can execute the dump by creating and using a temporary database. Please ensure that you have the privileges to do so.';  //to translate
$strTrackingCommentOut = 'Comment out these two lines if you do not need them.';  //to translate
$strTrackingReportForTable = 'Tracking report for table `%s`';  //to translate
$strDeleteTrackingData = 'Delete tracking data for this table';  //to translate
?>