-
Notifications
You must be signed in to change notification settings - Fork 0
/
it.yml
7866 lines (7848 loc) · 549 KB
/
it.yml
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
635b18c3-c616-4969-b1da-8fc96ac92c67.tempflygeneral.requirement.fail.default_other: '%1
§f%2 §7non può attualmente volare!'
525b9f49-19b7-4c62-a5e1-e1a6b63dd8ad.excellentcratesCrate.Open.Error.Cost.Exp.2: '#d4d9d8Per
aprirlo è necessario #fd5e5e%1 Livelli #d4d9d8!'
5f786c3f-f502-4fd8-8c04-2efee5a4f5aa.PlayerParticlesgui-edit-data-color-brown: '#8b4513Marrone'
8b6df645-e002-4527-9e11-cd0f2845588f.PlayerParticlescommand-error-unknown: '§7Comando
non trovato! "§b/pp help§7" per ulteriori informazioni.'
7f76a1e9-cc3c-4628-bf5f-f5d60d41d500.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_COOLDOWN.Lore.3: '#ffed6a&lCurrent:'
7e3739a4-0c05-49f1-98c1-33b79212791f.gsitMessages.action-sit-world-error: '[P]§7 Non
si può stare seduti in questo mondo!'
df97bc25-c2e5-497b-ab11-464d99ed8797.excellentenchantmentsCommand.Enchant.Done: §aIncantato
con successo!
e29d0117-86d5-46e0-87ed-26809402773b.tempflygeneral.time.daily_login: '%1 §7Hai ricevuto
un bonus giornaliero di §f⌚%2§7!'
dd130f3c-f766-41c1-9a36-7ddc9f416801.excellentenchantmentsFitItemType.WEAPON: Arma
d9c19cca-46be-410b-b707-69c4c0f50f63.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_HOLOGRAM.Lore.12: '#bbff6a▪
#bdc8c9Fare clic a sinistra: #bbff6aAggiungi testo'
73830305-66b3-4472-8d3d-39073a0b4daf.cmd.main.title.s37: '&b&lImpostazioni'
5d56c134-c3f2-4a46-99d0-9f9e518f89b3.excellentcratesEditor.CrateEditorType.KEY_VIRTUAL.Name: '#ffed6a&lVirtuale'
78c07df4-8877-4c43-98d1-244fd73000ab.ia.4.2: su questo server §8(sei un introverso?)
28b64b26-5122-448f-b85a-f766b77338ba.cmd.upgrade.choose.title.s19: '&b&lParticelle'
7c2f1695-b144-41a4-81d5-8f874c1bf4ab.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_CHANCE.Lore.6: '#bbff6a&lAzioni:'
1f091d5f-b3e8-4ed7-a255-cc9edee90fc1.excellentcratesCommand.Key.GiveAll.Done: >-
#d4d9d8Dato #fdf35ex%1#d4d9d8 delle chiavi #fdf35e%2#d4d9d8 a #fdf35eTutti i
giocatori#d4d9d8.
5c747044-89d7-4369-ba4e-0153b6fa4d84.PlayerParticlesdata-no-args: '§7Assenza di argomenti
per l''effetto! Uso del comando: §b/pp data§3 <effetto>'
fdd6351d-20ff-4796-956e-09507bfd9dbb.SuperVanishMessages.OnVanish: '&b&l%1 &8&l┃ &7Sei
ora invisibile!'
81b9df29-b8d5-4ac6-8a5f-e79d4bd6d1a8.tempflycommand.base.givall.1: addall
57ca07bb-65a2-42b8-b669-4da03abd5527.alonsotags.Invalid-player: Il giocatore non è
online!
48db42d4-b8e1-4a77-ac23-ffb5bcbcd327.excellentcratesCommand.Key.Set.Notify: >-
#d4d9d8L'importo del tuo #fdf35e%1#d4d9d8 è stato modificato in
#fdf35ex%2#d4d9d8.
b8f3f280-e9e4-49d6-85f0-a3f59ad56d5d.gsitMessages.action-pose-world-error: '[P]§7
Non si può posare in questo mondo!'
18c699c2-6bd7-45a3-bcc2-84b9a2d51c7a.gsitMessages.action-emote-now-error: '[P]§c Non
puoi emulare in questo momento!'
084f746d-3d51-4db1-ba1c-3b33441f11df.excellentcratesEditor.Crate.BlockPushback.Lore.0: '#bdc8c9Imposta
se il giocatore viene spinto o meno.'
ce620f0d-6013-4f64-b8da-ab1196c02d87.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_EFFECT.Lore.8: '#bbff6a&lAzioni:'
4c84c4b6-c4e9-4e5f-8d16-0f70d854502b.PlayerParticlescommand-descriptions: '§fSono
disponibili i seguenti comandi:'
4f452fb4-43ac-486c-abe2-52a86081bc37.cmd.upgrade.choose.desc.s11: "\n&bDescrizione\n
&b| &7Aumenta i tuoi limiti di p-warps\n &b| &7per impostare più playerwarps!\n
&f\n &3| &fAcquistare più punti\n &3| &fAt: &bᴄᴜʀʀᴇɴᴛʟʏ ɴᴏᴛ ᴀᴠᴀɪʟᴀʙʟᴇ&f!\n&f\n&b&l|
&bᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ"
07e680a3-d1c5-4f69-8929-44f7756d62d1.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_BROADCAST.Lore.5: '#ffed6a▪
#bdc8c9Abilitato: #ffed6a%1'
205f21cb-d3d7-4bcb-bb4a-466473298966.gsitMessages.action-pose-now-error: '[P]§7 Non
puoi posare adesso!'
f92649af-7e51-407f-b32e-4fc40ec4d41b.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_NAME.Name: '#ffed6a&lNome
visualizzato'
77124ef1-201b-457d-ad29-9327d8a1b1bb.tempflygeneral.fly.bypass_enabled: '%1 §7Si è
attivata la modalità di bypass di volo!'
50da3db8-f087-45ae-96fb-ee595fef0e49.PlayerParticlesgui-edit-primary-style-missing-effect: È
necessario selezionare prima un effetto
a901e3f2-5f88-41a8-a34f-ec0f1d82d51a.mpdb.syncInProgress: §Sincronizzazione dei dati
in corso! Attendere prego...
ef3c0faa-b222-4eb4-888a-d194c6558383.triton.setlanguage: La tua lingua è stata cambiata
in &6%1
acc24171-96ef-42b7-84a9-f37ebbcdffee.excellentcratesEditor.CrateEditorType.REWARD_SORT.Lore.0: '#bdc8c9Ordina
automaticamente i premi in'
ff213edb-21c1-4eeb-8f62-04e22872c6af.PlayerParticlesgroup-list-presets: '§7Sono disponibili
i seguenti gruppi preimpostati: §b%1'
c3275e6f-533a-4cf1-9a78-c7defd84ed95.playerpoints.command-reset-usage: '§cUtilizzo:
§b/punti azzerati §3<giocatore>'
05438fac-c9a8-4409-bd9e-24fcee374749.SuperVanishMessages.ShowOtherMessage: '&b&l%1
&8&l┃ &7Il giocatore &e%2&a è ora visibile!'
d7df123f-0531-401b-b2d5-ff371559a7d7.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_COOLDOWN.Lore.10: '#bbff6a▪
#bdc8c9Clicca a sinistra: #bbff6aCambia'
a2e9566e-1e9a-4b63-ab82-596f9f596300.bungee.stop: >-
Il nostro server è stato spento, si prega di riconnettersi tra qualche
istante!
db4a0a2b-c65b-4607-8c6c-cc86d0b9cda7.tempflysystem.help.5: '§6/tf paga [giocatore]
[tempo]'
320d1ff2-1bec-4617-a489-0c8b2959c4b8.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_CHANCE.Name: '#ffed6a&lChance'
0a6a6bb5-fa54-40e9-a3c5-675c0949eeca.tempflycommand.unit.days.recognized.0: d
6f461b68-71bf-4785-b731-8d812ebcce03.alonsotags.Vault-not-available: Il Vault non
sembra essere disponibile in questo server!
59a6a0f4-2d49-4a43-b7e1-4db242057cee.cmd.warps.desc.s21: "&bDescrizione\n &b| &7Clicca
per vedere tutti i teletrasporti disponibili.\n &b| &7Trasporto casuale.\n &b&l|
&bᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ"
71bebce5-410e-4c46-a6e6-396659c64667.cmd.main.title.s42: '&b&lCambiamenti'
65bcde5a-d539-4c2e-82cc-fad1b3e24564.excellentcratesEditor.CrateEditorType.REWARD_OBJECT.Lore.0: '#bdc8c9Chance:
§f%1%'
44574c83-b7e2-4e30-a416-5753ddc1b036.excellentcratesEditor.CrateEditorType.EDITOR_KEYS.Name: '#ffed6a&lKeys'
c4bcd6f4-89ce-4680-a961-a07d13c26c10.cmd.main.title.s28: '&b&l Negozio'
78608a70-26e7-4181-8044-906cca8dd56a.tab.sb.tokens: '§7Tokens:'
b380eccd-b395-4238-930b-54d9316f95df.PlayerParticlesfixed-edit-data-none: '§7Impossibile
modificare l''effetto fisso, l''effetto non richiede alcun dato!'
77af42ce-7792-473f-bac9-aa5dbf670d32.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_PERMISSION.Lore.4: '#ffed6a▪
#bdc8c9Richiesta: #ffed6a%1'
2702a2b8-fb22-428a-80ef-e5d27d3f9ab8.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_NAME.Lore.8: '#bbff6a&lAzioni:'
ee56387a-b803-4617-84ca-5fa1acb42bff.excellentcratesEditor.CrateEditorType.KEY_VIRTUAL.Lore.3: '#ffed6a▪
#bdc8c9Is Virtual: #ffed6a%1'
3ecd0210-e844-4db6-83dc-82eaef241d51.uar.EVENT_RESTART_DELAY_GLOBAL.title: RIAVVIO
RITARDATO
0a627d11-c924-4fd1-9ffd-1e724bee3601.cmd.main.desc.s12: "&bDescrizione\n &b| &7Trasportati
nel warp di altri giocatori\n &b| &7non dimenticare di valutare il loro warp!\n
&3| &fClicca per vedere.\n &4| &cQuesto non è disponibile nei mondi fattoria"
abb5b97b-9243-4d95-8381-c58513124f75.PlayerParticlesfixed-create-success: '§7Il vostro
effetto fisso è stato creato!'
2973914a-7aa5-45a8-82ba-584eb32592a6.alonsotags.Disabled-world: Non è possibile utilizzare
questo comando in questo mondo. Provate più tardi!
2febbaaa-ef7b-40a0-9c73-4318a4907252.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_ITEMS.Lore.0: '#bdc8c9A
elenco di elementi forniti'
df7051c9-0398-45b7-ab1f-bc2c1125400c.excellentcratesCommand.Preview.Desc: Anteprima
della cassa aperta.
8927fb9d-4e07-4bce-b7f4-34a2e9a3eb8b.chatmanager.Footer: §x§f§f§9§9§9§9Godetevi il
gioco %1!
29bd3a3d-8ccc-4dae-850a-141be36c6ee4.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_CONFIG.Name: '#ffed6a&lAnteprima
e animazione'
2c3da0a9-4fbc-4a36-97df-65f18b8a0802.dh.points-lb.title: '[Top 10 dei giocatori con
più punte!]'
85cfe347-b82a-40d4-a026-ed56a6cac759.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_IGNORED_FOR_PERMISSIONS.Lore.0: '#bdc8c9Giocatori
con qualsiasi autorizzazione'
0ea6d324-688e-49d6-9e49-45562f3df03e.tempflysystem.help_extended.1: '§7- Dare a un
giocatore il tempo di volo'
c5d93e84-9308-46d0-b80d-fd64b785377f.dh.money-lb.title: '[Top 10 dei giocatori più
ricchi!]'
de0974e8-d40d-4b2f-aefd-325f9d256881.excellentcratesEditor.CrateEditorType.Reward.Rarity.Lore.7: '#bbff6a▪
#bdc8c9Clicca a sinistra: #bbff6aCambia'
6feb7cd2-391e-42a9-b505-152ff029e410.PlayerParticlescommand-description-fixed: Gestire
gli effetti fissi
7f9eee5d-b8ba-44f5-b9e3-b6a89d3524bd.PlayerParticlesgroup-remove-preset: '§7Non è
possibile rimuovere un gruppo preimpostato!'
917c3a43-d241-4155-9c86-7165f1a9d38b.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_WIN_LIMITS.Lore.11: '#bbff6a&lAzioni:'
6dd5e262-41cf-448b-be0b-31fb20d6a57a.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_OPEN_COST.Lore.11: '#bbff6a▪
#bdc8c9[Q/Drop] Tasto: #bbff6aDisabilita tutto'
6c134544-ada2-4962-ad02-8b626ea67672.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_COMMANDS.Lore.11: '#bbff6a▪
#bdc8c9Clicca a destra: #bbff6aCancella elenco'
d806ba2d-08d7-4ad9-b2ec-de19eeb488ab.excellentcratesEditor.CrateEditorType.KEY_CHANGE_NAME.Lore.9: '#bbff6a&lAzioni:'
cb255b02-eb0b-4294-a8c4-bd2b4d7375b1.tempflycommand.unit.days.tab_complete: giorno
96819d33-756d-477d-8472-b2a8493fdfb4.PlayerParticlesdata-usage-vibration: '§7L''effetto
§b%1 §7richiede §bdati di vibrazione§7! §7Formato: §3<durata>'
67e15770-c23b-40b5-9152-699b7540b1cb.dh.menu.l3: '§7teleporto a curvatura, aggiornamento,'
98f4d965-6cc6-4ad7-bfdb-556c5d54fde6.cmd.main.title.s34: '&b&lGioco'
f8bd1fcb-6fdf-467f-805d-aa5df4f76380.excellentcratesCrate.Open.Reward.Broadcast.0: '<!
prefisso: "false" suono: "BLOCK_NOTE_BLOCK_BELL" !!!>'
fa27bc0c-9c4a-4687-a7d2-cc8ffdaf5ce4.PlayerParticlesfixed-create-looking-too-far: >-
§7Impossibile creare l'effetto fisso, siete troppo lontani dal blocco che state
guardando!
45c68131-453d-4287-951e-f13dfc106e7a.chatmanager.motd: '§7&o (nuovissimo e la migliore
comunità)'
733aff92-e7b5-4e83-a197-81a2450b954b.chatmanger.mention.header: §x§F§F§F§F§F§0§0@
&lMENZIONATO §x§F§F§F§F§0§0@
aa724a8e-ed37-4ba1-816a-f376b359130c.SuperVanishMessages.InvalidUsage: '&b&l%1 &8&l┃
&7Utilizzo non valido, è possibile utilizzare &f/sv help&7 per un elenco di comandi.'
9de142b1-3032-4432-8e41-1d1bdeb978b8.clearlag.will-removed-in: '§b&lWARNING!§b ᴀʟʟ
ɪᴛᴇᴍꜱ/ᴇɴᴛɪᴛɪᴇꜱ ᴡɪʟʟ ʙᴇ ʀᴇᴍᴏᴠᴇᴅ ɪɴ:'
14a974fc-6d7e-422c-96b9-5a1462ead25b.excellentcratesEditor.Reward.Enter.Permissions: '#d4d9d8Invio
#aefd5e[Nodo dei permessi]'
8a0ae19b-e4fb-465b-994b-0875258bbadd.PlayerParticlesfixed-list-success: '§7Si hanno
effetti fissi con questi ID: §b%1'
3547d08a-4f11-46c6-8b60-8f0b3a677389.PlayerParticlesgui-create-particle: §bCreare
una nuova particella
f8a51393-6dbb-43f1-a2d9-2acf208ccd99.tempflyaesthetic.symbols.infinity: ∞
e4302dd9-7e1b-4cd3-92e2-592dba2b2422.tempflygeneral.fly.infinite_disabled: '%1 §7Hai
disattivato il volo infinito!'
d3bf9104-2b4e-4e76-8299-03caa23caed0.hub.move: Sei stato inviato alla §6Lobby§7!
3ca8dfe3-9891-42eb-b345-a9ffbb5d15ce.tempflycommand.base.trails.0: sentieri
86697c9a-00da-4d2b-91b6-159badd99ddd.chatcolor.gui-selected: §eSelezionato
1c02c090-c261-409b-a88a-5c7a7c22808f.excellentenchantmentsCommand.TierBook.Usage: '%1
%2 %3'
6113ed6d-13f2-4724-9771-2b55a0e3acca.cmd.main.desc.s14: "&bDescrizione\n &b| &7Vendere
o fare offerte su casa d'aste\n &b| &7Con un prezzo migliore!\n &3| &fClicca per
vedere."
59a74b0b-2d9c-43fd-9063-c6812d4618c0.PlayerParticlesstyle-invalid: >-
§7Lo stile §c%1 §7non esiste! Utilizzare §b/pp styles §7 per un elenco di stili
utilizzabili.
fc29f7df-7b94-443a-a298-326103fb65be.excellentcratesEditor.CrateEditorType.Reward.Rarity.Lore.3: '#ffed6a&lCurrent:'
515b82f5-1347-4019-8232-e55adf10458e.dh.farmserver.menu.l5: '§7 valgono in modo diverso'
ecd552ec-a57b-4587-8ef3-49b1e4bc0232.tempflygeneral.unit.seconds: s
2c93db2c-fcf2-4dd0-b897-c7baed3a212f.gsitMessages.action-crawl-info: '§7Usare il tasto§f
Shift§7 per alzarsi.'
180db7d5-06ea-4088-823e-596570ba031b.gsitPlugin.plugin-disabled: '[P]§7 Il plugin
è stato disattivato con successo.'
394c5f2e-88e4-428f-a663-325711f73102.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_OPEN_COST.Lore.2: '#bdc8c9apri
questa cassa.'
573d5aa9-e294-4bde-a803-f5f2dea2a0e8.excellentcratesEditor.CrateEditorType.KEY_CHANGE_ITEM.Lore.4: '#ffa76a▪
#bdc8c9Utilizzare l''oggetto con nome, storia, ecc. già pronti.'
0294d1f4-a140-42dd-9a05-b55d6e5dd3ed.excellentenchantmentsFitItemType.BOOTS: Stivali
3e4fb967-fe31-4553-8f79-371d9b4f17de.excellentenchantmentsFitItemType.SWORD: Spada
ff651667-d558-4471-ac65-117f4d1ac07b.ia.9.1: Unisciti alla nostra comunità
8f694166-320d-4be3-8c82-03118dce5061.cmd.main.desc.s23: "&bDescrizione\n &b| &7Qui
puoi sbloccare un determinato\n &b| &7Cosmetici usando i tuoi punti!\n &3| &fClicca
per vedere.\n&bInformazioni\n &8| &fCosmetici sbloccati\n &8| &fCosmetici particellari\n
&8| &fStili Cosmetici\n &8| &fTags Cosmetici\n &8| &fChatColor Cosmetici\n Cosmetici
&8| &fPets"
0cc47b14-581a-4c64-b155-d2f7aed42939.cmd.purchase.choose.desc.s20: "&f\n&bDescrizione\n
&b| &7Acquista il grado usando i gettoni a tua disposizione\n &b| &7e sblocca fantastici
vantaggi!\n&f\n&b&l| &bᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ"
5198688f-785b-49c1-9d9e-01a6300cfb63.SuperVanishMessages.OnVanishCausedByOtherPlayer: '&b&l%1
&8&l┃ &f%2 &7hid, ora sei invisibile!'
f90ab21c-56dc-451c-9bde-0bf938ae1a8b.playerpoints.command-set-success: '§7Impostare
il §b%1 §7di §b%2 §7a §b%3§7.'
24b026d9-baf9-435e-8d45-e2f0d1d84f0b.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_OPEN_COST.Lore.4: '#ffed6a&lCurrent:'
bcae4ea3-37e1-4aad-a2eb-8c4b135589b6.playerpoints.command-take-usage: '§cUtilizzo:
§b/punti prendere §3<giocatore> <importo>'
796e9cf2-a8f3-4a1f-a4d8-2356cf7bb6a3.cmd.purchase.choose.title.s20: '&b&lRanks &7Acquisto'
9167d50b-e748-46f2-95c7-45ded8e945cd.triton.selected: '&bCorrentemente selezionato'
d94e6424-5315-4cdc-9f40-ecf666b8bba2.PlayerParticlesreload-no-permission: '§7Non avete
il permesso di farlo!'
3bc8567f-db4f-4db3-83a7-c302f0c84f20.alonsotags.inactive.lore: |-
§bDescrizione
§b| §7Qui è possibile visualizzare un tag
§b| §7che avete selezionato.
§bInformazioni
§b| §7Tag selezionato: §7N/A
§b| §7Stato: §c&l❌
§c&l| §cᴛʜᴇʀᴇ ᴀʀᴇ ɴᴏᴛ ᴛᴀɢꜱ ꜱᴇʟᴇᴄᴛᴇᴅ
a6e1184d-641b-4222-9eef-4eb0b72be744.cmd.purchase.choose.title.s24: '&b&lVolo &7Acquisto'
b78e73f1-4c8a-42a2-a230-e2c83a30827f.cmd.links.desc.s20: "§f\n§x§7§2§8§9§d§aDescrizione\n
§x§7§2§8§9§d§a| §7Clicca per visualizzare il nostro server ufficiale\n §x§7§2§8§9§d§a|
§7discordare il nostro server ufficiale!\n§f\n§x§7§2§8§9§d§a§l| §x§7§2§8§9§d§aᴄʟɪᴄᴋ
ᴛᴏ ᴠɪᴇᴡ"
9e6317ef-bd4e-47ee-893b-f9f7b2db3615.excellentcratesCrate.Open.Error.NoKey.1: '#fd5e5e&lWhoops!'
44584943-c6a9-4266-8902-83ed58eb40f8.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_NAME.Lore.12: '#bbff6a▪
#bdc8c9Shift-Left: #bbff6aImpostare per l''anteprima'
6e0f0af5-f923-4398-be2a-ef4a85276ed5.excellentcratesEditor.CrateEditorType.EDITOR_KEYS.Lore.3: '#bbff6a▪
#bdc8c9Clicca a sinistra: #bbff6aApri'
ab1d137a-4aca-4e77-9929-21ec07a833d9.excellentcratesCommand.Open.Notify: '#d4d9d8Sei
stato costretto ad aprire #fdf35e%1#d4d9d8.'
067da34c-c686-43fc-9cb2-a99ff8b38a61.uar.COMMAND_FORCE_RESTART.chatMessage: Riavvio
forzato del server in
037024e3-ff54-422e-9cf5-944785aeb307.excellentcratesEditor.Crate.BlockPushback.Name: '#ffed6a&lBlock
Pushback'
8efc9964-ac0b-4775-b104-93c43a771d96.excellentcratesCrate.Error.Invalid: '#fd5e5eCassa
non valida!'
5ac6912e-8d58-497d-bf04-9201bdd872e4.tempflygeneral.fly.speed_limit_other: '%1 §f%2
§8È attualmente limitato alla velocità di volo §f%3§7.'
87ca85e0-c84a-4144-9414-a2559436576d.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_IGNORED_FOR_PERMISSIONS.Name: '#ffed6a&lRestrizioni
di autorizzazione'
d139121e-a03b-4316-8b41-ae83d16dc52b.ia.toggle-sound-off: '§7Hai attivato §c&l❌ §cDisattivato§7
l''annuncio sonoro §8&o(/toggle)'
8b04ebf7-12ad-4492-bb3e-7ae40d9af0e0.excellentcratesEditor.CrateEditorType.KEY_OBJECT.Lore.0: '#ffed6a▪
#bdc8c9Virtuale: #ffed6a%1'
89a1f71e-68ac-4de5-9fad-cac47a96dd26.PlayerParticlesadd-reached-max: >-
§7Impossibile applicare la particella, è stato raggiunto l'importo massimo di §c%1
§7consentito!
46c94e38-5c71-4bfb-975f-bdb3f6311c20.gsitMessages.action-pose-region-error: '[P]§7
Non si può posare in questa regione!'
8d80cec4-efda-4fa2-bfe9-d262728c3174.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_PERMISSION.Lore.1: '#bdc8c9
per aprire questa cassa.'
38cf02be-9578-46d0-815c-f0f1525c6a84.menu.bank.withdrew.title: §Soldi prelevati
11541c0c-67d6-40d2-a034-67e557142863.excellentcratesCommand.Give.Usage: '%1 %2 [importo]
[-s]'
9c277f76-1b58-42fd-82b0-e44c63d32158.SuperVanishMessages.ReappearMessageWithPermission: §x§0§0§F§F§0§0⏩
&f%1 &7&o(Non terminato)
bbbaa67e-e27a-4b57-a8b9-043808468b7c.economydeath.loss: §bSi è morti e si è perso
§6$
43b48310-4c1f-4a80-b83a-8fa1f0528c4b.dh.farmserver.menu.l3: '§7Da qui si può entrare
nei mondi della fattoria.'
6dabf468-e902-4ffa-be73-34d6cfaa2721.gsitMessages.action-pose-location-error: '[P]§7
Non si può posare qui!'
fb578ebb-28c2-4504-b6bc-049187301bdc.excellentcratesEditor.CrateEditorType.KEY_VIRTUAL.Lore.9: '#bbff6a▪
#bdc8c9Clicca a sinistra: #bbff6aToggle'
40016405-ed73-48ae-a64f-637d071deedf.tempflycommand.base.remove.0: rimuovere
808529c7-0bc7-4981-af3d-1162200bc5a0.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_CONFIG.Lore.4: '#ffed6a▪
#bdc8c9Apertura: #ffed6a%1'
3915237f-8382-4a54-9d8f-afb24f04eb5a.excellentcratesEditor.CrateEditorType.Reward.Rarity.Lore.6: '#bbff6a&lAzioni:'
386b6922-f513-400d-8c21-c12d8c95105a.cmd.upgrade.choose.title.s15: Effetti &b&lElytra
e314758d-ddf7-4d4c-a8bb-248921711a6b.SuperVanishMessages.ToggledPickingUpItemsOn: '&b&l%1
&8&l┃ &7Il prelievo di oggetti è ora &aAbilitato&7.'
00917f93-4a95-473b-9c95-5a99a8f37fc0.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_ITEMS.Lore.1: '#bdc8c9quando
il giocatore ottiene questa ricompensa.'
1bd9b640-7526-40b4-a5e8-364628a04109.PlayerParticlesgui-edit-data-color-orange: '#ff8c00Arancione'
0d3e3e9c-5950-4af8-9db0-e53540bda333.excellentcratesEditor.Reward.Enter.WinLimit.Cooldown: '#d4d9d8Invio
#aefd5e[Importo secondi]'
d3181eec-d147-4fe0-8922-8f07ba524184.PlayerParticlesgroup-save-reached-max: >-
§7Impossibile salvare il gruppo, è stato raggiunto il numero massimo di gruppi!
c87a33af-da67-44cb-a6fd-6f9f5ec2c5f1.ia.2.2: o sbloccare altri kit per giocare su
questo server
55be08f7-d642-46c2-ba45-b8a2734425d9.PlayerParticlescommand-descriptions-usage: '§b/pp
§3%1 %2'
bb617f9f-5c92-4d5d-a596-13c5821bd0ff.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_KEYS.Lore.1: '#bdc8c9
può essere usato per aprire questa cassa.'
953765e0-a1db-4425-93ce-c5e9310c9466.tempflycommand.base.trails.1: particelle
23e85751-bb9a-475e-9813-b3dd356850de.cmd.warps.title.s21: '&bRTP Warps'
42e4e38a-447f-4abf-9a6e-429e2babcb9b.cmd.links.title.s29.3: Siete collegati :D
db0037b6-b511-46b5-a1ba-b750134b4a4d.PlayerParticlesgui-edit-style: '§bModifica stile'
9be3699d-3c0a-432c-8b62-fe9c8fdfebcf.excellentcratesCommand.Drop.Usage: '%1 %2 %3
%4 %5'
4dd43cea-b92c-4c00-af85-625d23928199.tempflycommand.syntax_error.cmd_fly.toggle_other: '§b/tf
§3(giocatore) [on / off]'
24f79c85-25e6-4843-9c7d-e4f0ae3b81b1.triton.message-not-found: '&cREPORT: %1'
9800e2b4-1fd9-4fa7-be3d-37c6bd51be93.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_NAME.Lore.9: '#bbff6a▪
#bdc8c9Clicca a sinistra: #bbff6aCambia'
9375c6f2-18a1-4455-b374-5d6a05287926.SuperVanishMessages.OnReappear: '&b&l%1 &8&l┃
&7Non sei più invisibile!'
5184fee0-d33d-41fa-9fd6-44f09c80aac8.menu.bank.menu.deposit: |2-
§aDescrizione
§a| §7Clicca per aprire un deposito
§a| §7menu per conservare il vostro
§a| §7il vostro denaro in banca.
§a&l| §aᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ
012d8054-56a1-4fba-a207-4a3b13adbb36.excellentenchantmentsFitItemType.AXE: Ascia
8df2ac72-9565-4033-8e47-a2c3f6a77d2b.tempflycommand.unit.days.recognized.1: giorno
3181e360-101e-4309-821b-8dc9e7138f81.excellentenchantmentsFitItemType.HOE: Zappare
338808fc-92da-4ce1-9b62-1ad5244b0284.tempflycommand.unit.hours.tab_complete: ora
b587b958-da54-47ca-b7e8-97561bc2534a.excellentcratesEditor.CrateEditorType.KEY_CHANGE_ITEM.Lore.6: '#bbff6a&lAzioni:'
bdfea578-3b9e-49ef-8e88-bc36a23ba3ee.cmd.languages.desc.s25: "&bDescrizione\n &b|
&8Impostazione della lingua\n &b| &7Spagnolo!\n &3| &fClicca per cambiare."
f689acc1-8818-488a-9073-f81694a19cc2.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_HOLOGRAM.Lore.6: '#ffed6a▪
#bdc8c9Abilitato: #ffed6a%1'
b9e86ff4-9b1b-4ad8-804a-f6de23bd4454.cmd.main.desc.s42: "&bDescrizione\n &b| &7Completa
le Sfide in modo da\n &b| &7per ottenere dei bei boni.\n &3| &fClicca per vedere."
dc88127c-6c4f-499d-af91-1002d1c9843f.excellentcratesCrate.Open.Error.Cooldown.OneTimed.2: '#d4d9d8Hai
già aperto questa cassa a tempo unico!'
33c77d75-9c45-4a90-9cac-bd975a1ec38f.gsitMessages.command-gsit-playertoggle-off: >-
[P]§7 Hai §c&l✘§c Disabilitato§7 le interazioni con i clic per playersit! §8&o(/toggle)
14585fdd-1d4f-4414-b3af-301dc2be89fb.PlayerParticlesgroup-remove-success: '§7Rimosso
il gruppo di particelle denominato §b%1§7!'
d6886352-ef51-4d1b-b0a4-f0609ef4bb8d.tempflycommand.unit.seconds.recognized.0: s
52fcb570-5a0c-4e75-9e60-db4416844a43.cmd.main.title.s3: Come si gioca?
7f65ae6d-4771-4e0f-8944-6e76baeac786.tempflygeneral.fly.idle_drop: '%1 §7Hai perso
il volo perché sei inattivo!'
e1ff0a69-5f33-411e-9ddc-cf86451e12cf.mycmd.block.delay: '§7È possibile interagire
nuovamente con questo blocco in §c%1s'
ba0777a1-1f9a-40dc-99b0-171ea9a28790.cmd.purchase.choose.title.s4: Statistiche di
&b%player_name%
d84381be-2c40-4aba-bad8-67c738d2e481.mycmd.cooldown2: '§7Si è saltato il tempo di
attesa di questo comando.'
3dd56804-1a84-4d9d-be31-cd12f861824a.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_NAME.Lore.9: '#bbff6a&lAzioni:'
6b11047a-fdc4-482d-aa6d-69fbc562bb6a.PlayerParticleseffect-invalid: >-
§7L'effetto §c%1 §7non esiste! Utilizzare §b/pp effetti §7 per un elenco di effetti
utilizzabili.
f64cfdc4-ae08-4e19-9b08-48cc7ea9831b.tab.sb.balance: '§7Bilancio:'
e9946006-6c14-4d6c-bcce-e79e96693cc3.playerpoints.noperm: Non avete il permesso di
farlo.
069a5efa-7883-4143-b5b7-17ac0c3fe9ed.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_COMMANDS.Lore.0: '#bdc8c9A
elenco dei comandi da eseguire'
0bbe0ca8-11f8-4c03-9b76-4faf588621de.excellentcratesEditor.CrateEditorType.KEY_CHANGE_ITEM.Lore.2: '#ffa76a&lNotes:'
dada90bc-7cb6-4b76-a60b-d91510dbdd49.excellentcratesEditor.CrateEditorType.CRATE_OBJECT.Name: '#ffed6a&l%1
§7(ID: §f%2§7)'
f58d2498-d8ae-474c-b956-d54357d2efdf.PlayerParticlesgui-edit-data-color-black: '#000000Nero'
91b3a225-63aa-4681-88eb-4c57e5cb05ae.excellentcratesEditor.CrateEditorType.REWARD_OBJECT.Lore.7: '#bbff6a▪
#bdc8c9[Q/Drop] Tasto: #bbff6aCancella #ff6a6a(No Undo)'
bb3a7d07-a74d-44b1-8d8d-e5968dfb0d32.playerpoints.command-give-received: '''§7Hai
ricevuto'
b3eb57b9-5c2d-408c-a95d-48fb78f4b2b8.excellentcratesEditor.Crate.Enter.Block.Location: '#d4d9d8Fare
clic su un #aefd5e[Blocco] #d4d9d8 per farlo crollare.'
4b3b0989-d096-4054-bffc-65b68b687632.alonsotags.Tag-selected: Hai selezionato il tag
§f%1§7!
5ee2b40d-125c-40e2-b96b-22f403febcab.gsitMessages.command-reload: '[P]§7 Le impostazioni
sono state ricaricate con successo.'
32762da6-870c-4010-9ae9-bae297315e48.chatmanager.msg.reply: '§bFare clic su §7 per
rispondere.'
7e884b7d-1e56-4eb8-9324-092202209ce0.PlayerParticlesstyle-no-permission: '§7Non avete
il permesso di farlo!'
de3ed96e-f7a5-4607-9bb8-d818ffa813aa.PlayerParticlesdisabled-worlds: '§7Le particelle
sono disabilitate in questi mondi: §c%1'
9ec00104-3f44-4eba-a628-129b3720a689.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_CONFIG.Lore.8: >-
#ffa76a▪ #bdc8c9Le recensioni si trovano nella sottocartella
#ffa76a/previews/#bdc8c9.
55a1307b-459d-4d0f-842f-75b99fab1d6b.PlayerParticlesdata-invalid-material-not-block: §7Il
materiale del blocco §c%1 §7che avete inserito non è un blocco!
0fad20fc-a3c9-4baf-9e58-8cebb2aa3881.cmd.main.desc.s3: "&7In &bSurvival&7, ti forniamo\n
&7diversi mondi che puoi\n&7esplorare per creare le\n&7proprie fondamenta!\n&7Questo
significa che puoi rivendicare la tua terra,\n&7creare il tuo clan, invitare i tuoi
amici\n&7e iniziare a conquistare la modalità di gioco!\n&7Per ricevere &bEsaltanti
Ricompense&7 mentre si gioca\n&7giocare, fare &b/votare"
15878977-20f7-4765-94e8-7afbf63bc2d2.tab.sb.playtime: '§7Ora di gioco:'
20bcacd9-2c57-4d92-9480-e50c6bf759d0.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_PREVIEW.Lore.4: '#ff6a6a▪
#bdc8c9Questo oggetto è #ff6a6aNOT#bdc8c9 dato ai giocatori!'
5efda3dc-5498-4ee5-b71c-6d8896d9fa65.PlayerParticlesgui-select-data-description: Imposta
i dati della particella su §b%1
1500ca6f-5a8a-4920-b557-8e7aabc98334.excellentenchantmentsCommand.List.Desc: Elenco
di tutti gli incantamenti personalizzati.
581a2d39-6e21-4661-ba9e-bf1e0e90ff33.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_ITEMS.Lore.6: '#bbff6a&lAzioni:'
e3aa3ef5-a0ae-42e2-acd9-f8ffd0bb8560.excellentcratesCommand.ResetCooldown.Desc: Ripristina
il cooldown di apertura delle casse del giocatore.
4cbce461-7bcb-4c00-9889-8f9c2f3ea170.PlayerParticlescommand-description-info: Ottiene
la descrizione di una delle particelle attive
c9606f76-0763-4afc-8698-bdb02452d2aa.excellentcratesEditor.CrateEditorType.KEY_VIRTUAL.Lore.2: '#ffed6a&lCurrent:'
e20c1f3e-6185-4ba7-8c58-f23e76cce346.PlayerParticlesgui-edit-primary-style: §bModifica
stile primario
c835cce4-6b50-44e0-afc3-bfe5008af7e8.PlayerParticlesfixed-info-invalid-args: '§7Impossibile
ottenere informazioni, l''ID specificato deve essere un numero!'
ee36c596-a3a0-4c77-9b46-06eea710bdab.SuperVanishMessages.InvalidSender: '&b&l%1 &8&l┃
&7Per eseguire questo comando devi essere un giocatore!'
4027f72e-de89-400a-938b-bfdb69640d8f.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_IGNORED_FOR_PERMISSIONS.Lore.5: '#bdc8c9%1'
24d1eddd-e6d4-4d57-91df-fa4e9d87ca64.mycmd.ECONOMY_COST: '§7Questo comando costa %1.
Nuovo saldo %2'
00d5f7bd-6fe1-4020-b714-aeebee09c212.mycmd.hours: 'ore '
c314ad4d-993f-42eb-8ed4-4062e505b13f.excellentenchantmentsCommand.Enchant.Usage: '%1
%2'
30c59881-f59f-444f-b6ab-6636831baab0.tab.ani.4.3: ᴄᴜʀʀᴇɴᴛʟʏ ɴᴏᴛ ᴀᴠᴀɪʟᴀʙʟᴇ
96f1bfb6-af3d-42b3-9226-231fdfc0a250.PlayerParticlesdata-invalid-material-not-item: §7Il
materiale dell'articolo §c%1 §7inserito non è un articolo!
e8c1ea88-3dc9-4654-abcc-b796ae39cffc.alonsotags.close: '§c&l❌ §Chiudere'
13604518-9e49-4fa2-9307-aa1937a8e463.excellentcratesEditor.CrateEditorType.REWARD_CREATE.Lore.2: '#bbff6a&lAzioni:'
c351f873-253f-4a94-8f7c-5e9a2784d65d.mycmd.interaction.delay: '§7È necessario attendere
§c%1 secondi§8)§7 per interagire di nuovo'
c943633e-b269-48b7-b0dc-1ab6bfb55496.PlayerParticlesfixed-remove-success: '§7Il tuo
effetto fisso con ID §b%1 §7è stato rimosso!'
73346859-b0e7-411a-8831-83d202f05774.excellentenchantmentsFitItemType.ARMOR: Armatura
9a2322ea-59f7-40f0-a9ca-8e1764b73ed4.tempflycommand.base.help.1: comandi
306fce84-ad32-40fe-9345-1c4be40f8fd2.cmd.main.title.s16: '&b&lKits'
97dff352-462f-42fb-b535-c88be3754d1f.cmd.upgrade.choose.desc.s25: "&bDescrizione\n
&b| &7Aggiorna i limiti dei tuoi gruppi di particelle\n &b| &7per aggiungere altri
gruppi!\n&f\n &3| &fAcquista altri punti\n &3| &fAt: &bᴄᴜʀʀᴇɴᴛʟʏ ɴᴏᴛ ᴀᴠᴀɪʟᴀʙʟᴇ&f!\n
&f\n&b&l| &bᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ"
fe6745eb-03bc-4a58-87be-e6e7edb47772.cmd.warps.desc.s23: "&bDescrizione\n &b| &7Clicca
per visualizzare tutti i warp disponibili\n &b| &7giocatore.\n &4| &cQuesto non
è disponibile nei mondi fattoria\n&b&l| &bᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ"
caf15856-7ee3-41a1-92d0-3f07fc8bbdba.cmd.main.title.s4: '&b&lProfilo &f%1'
aba1aa16-956e-41ef-9ffc-17801aa804e6.excellentenchantmentsCommand.TierBook.Done: Dato
il libro incantato di §6%1§7 a §6%2§7.
ec3e513a-1625-4834-ba0b-0fcbe7fce809.excellentcratesEditor.CrateEditorType.REWARD_SORT.Lore.6: '#bbff6a▪
#bdc8c9[Num 3]: #bbff6aPer nome'
0ed0155e-15e2-4984-9e72-8b78619cbda3.cmd.main.title.s41: '&b&lSocial Media'
2235f2c1-0993-467d-bfa5-5d420654753b.SuperVanishMessages.UndismissedRecreationWarning: '&b&l%1
&8&l┃ &7Stai ricevendo notifiche su questa ricreazione.'
86e9c49e-574c-4bd1-8e35-5df6bc19b93c.gsitPlugin.plugin-link: '[P]§7 Collegamento con§f
%Link%§7 riuscito!'
93ba4e4d-149f-452f-85a9-19061fe76369.PlayerParticlesgui-next-page-button: '§bNext
&l→'
9513e856-4993-45a3-8d66-f52f2f9356e1.excellentenchantmentsCommand.Enchant.Desc: Incanta
l'oggetto in mano.
3ff5cf63-7fd3-403f-8ebd-5010f1396558.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_CONFIG.Lore.13: '#bbff6a▪
#bdc8c9Clicca a destra: #bbff6aDisabilita apertura'
67d9ffcf-6fd5-4d94-a9fb-ae9a2c75f392.SuperVanishMessages.NotVanishedError: '&b&l%1
&8&l┃ &7Non sei invisibile!'
c5bb923a-5d61-4a7f-9c37-6e7424fad93a.PlayerParticlesdata-invalid-item: '§6I dati dell''articolo
inseriti non sono validi! Formato:§c <nome articolo>'
dd088a57-7e87-4194-ade3-2fb2459f2a8b.PlayerParticlesgui-edit-data: '§bModifica dati'
61a4f30f-ea95-41eb-bbc3-9cb2d7e880f1.PlayerParticlesfixed-edit-effect-no-permission: '§7Non
avete il permesso di farlo!'
a8f13995-1b81-4601-961c-5f4fec61dac8.playerpoints.command-help-title: '§bComandi disponibili:'
7e5c15b8-904e-43c5-afa5-492f92b766f0.cmd.main.desc.s39: "&bDescrizione\n &b| &7Ricerca
gli incantesimi personalizzati\n &b| &7e con cosa sono in conflitto\n &3| &fClicca
per visualizzare.\n&bInformazioni\n &8▪ &7Incantimenti: &f0"
7bf2582f-98ca-44b5-8def-573fc41015d3.PlayerParticlesfixed-create-effect-invalid: >-
§7Impossibile creare un effetto fisso, un effetto con il nome §b%1 §7non esiste!
6484579f-7243-41af-89ad-729fcfdc6595.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_BROADCAST.Lore.7: '#bbff6a&lAzioni:'
57e7fd27-115f-4e8d-bcc3-e7ac506eaaf9.cmd.main.title.s32: '&b&lBanca'
9b7ff383-388f-41db-ba79-f5a16e33a587.excellentcratesEditor.Crate.BlockPushback.Lore.2: '#bdc8c9impossibile
aprirlo.'
e22f4d4c-2298-4835-8996-b2a122c6af3d.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_PERMISSION.Lore.7: '#bbff6a&lAzioni:'
a32c1014-683f-4e9c-a93b-4620d0453357.excellentenchantmentsFitItemType.PICKAXE: Piccone
02a91cda-e2b6-4dc3-b691-0a80cf1a19e4.excellentenchantmentsFitItemType.SHOVEL: Pala
0656cded-dc9a-48c0-a4db-628838050929.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_NAME.Lore.1: '#bdc8c9È
usato nelle GUI e nei messaggi.'
d9b5f7cf-221b-4181-be94-909c099adc40.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_NAME.Lore.7: >-
#ff6a6a▪ #bdc8c9Questo è il nome dell'oggetto della ricompensa
#ff6a6aNOT#bdc8c9!
8b95bcee-b5f0-4ba6-8547-de6910b75f25.excellentenchantmentsCommand.Enchant.Desc: Incanta
l'oggetto in mano.
a7686a9f-978d-48f9-9ad4-c84dc8e60b37.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_LOCATION.Name: '#ffed6a&lBlocchi
allegati'
b346f9a6-ab10-4635-8733-80fda5d83636.dh.your-money: '§Il vostro equilibrio:'
fbfad255-0adb-4c75-a8dc-302c0133d19a.excellentcratesCommand.Key.Usage: '[aiuto]'
6c223038-d909-480e-b39d-f4cb6cf34ffc.excellentcratesEditor.CrateEditorType.CRATE_CREATE.Lore.1: '#bbff6a&lAzioni:'
e67ac88a-c487-4b0a-8a08-a423a5dd8872.playerpoints.command-look-description: '§8 -
§b/guarda punti §3<giocatore> §8- §fVisualizza i punti di un giocatore'
d8ee0104-eaa4-4c52-bd7c-0fb339c06358.PlayerParticlesother-success: '§7Eseguito comando
/pp per §b%1§7. Uscita:'
c4423a12-f578-4c37-977d-c3cff0d3a5ff.excellentcratesCommand.Key.Give.Notify: '#d4d9d8Hai
ricevuto #fdf35ex%1#d4d9d8 di #fdf35e%2#d4d9d8!'
e3b4f343-0769-4a8e-9cc3-ef1d46125016.PlayerParticlesreload-success: '§7Il plugin è
stato ricaricato!'
a4e44fb7-2fce-4f59-b429-e53f93d9d58e.tempflygeneral.fly.speed_other: '%1 §f%2 §7hanno
impostato la loro velocità su §f%3§7.'
e73c8454-c17c-48ec-9a00-65fe800e5998.excellentcratesCrate.Open.Error.NoHoldKey.1: '#fd5e5e&lWhoops!'
565e9075-4f5e-48be-86aa-9f475dbdc59a.excellentcratesCommand.Key.Take.Desc: Prendete
la chiave da un giocatore.
7918bf54-f98c-44c6-acee-763a41dfabf6.tempflygeneral.requirement.fail.combat: '%1 §7Si
è attualmente etichettati per il combattimento!'
0d258305-d1ce-443e-be6e-2de8bd9829ed.bungeeguard.no-data-kick-message: >-
§Non è stato possibile unirsi al nostro Proxy, provare a utilizzare §bplay.[lang]prefisso[/lang]§cinstead.
1500f380-1bcd-4b86-80ae-e20aedf5185c.excellentenchantmentsCommand.Enchant.Done: §aIncantato
con successo!
66e11832-3c33-4470-a59d-a6a351692489.PlayerParticlesrandom: Casuale
8f2dcadd-b81a-429f-a74d-687ec3a22ed6.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_NAME.Lore.4: '#ffed6a▪
#bdc8c9Nome visualizzato: #ffed6a%1'
1ed1d1e1-5f8c-42fe-97fa-321849d3472d.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_CONFIG.Lore.14: '#bbff6a▪
#bdc8c9Shift-Left: #bbff6aCambia Anteprima'
4de844f6-e0a9-4eda-b3a4-c48df1e538ad.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_ITEM.Name: '#ffed6a&lCrate
Articolo'
639bab74-b8b9-48a8-870b-e691b9ab2301.PlayerParticlesedit-success-style: '§7La particella
con ID §b%1 §7 ha cambiato il suo stile in §b%2§7!'
7dc5672e-92a8-4956-af52-c17efe4de963.cmd.languages.desc.s31: "&bDescrizione\n &b|
&8Impostare la lingua\n &b| &7Italiano!\n &3| &fClicca per cambiare."
2eed45e5-bd36-435a-9043-c4fa1801b3b7.SuperVanishMessages.UpdateWarning: '&b&l%1 &8&l┃
&7Attenzione! La ricreazione di &f%2 &7resetta &f%3&7. Utilizzare &f/sv recreatefiles
confirm&7 se si desidera continuare.'
651be845-adb7-44ca-a460-0a83f1ab913d.excellentcratesEditor.CrateEditorType.KEY_CHANGE_ITEM.Name: '#ffed6a&lElemento
chiave'
c3596185-d77f-4651-869b-417f39a69bc8.tempflycommand.base.help.0: Aiuto
b3a26c2f-4492-4ae8-bb2e-933363a60625.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_PREVIEW.Lore.8: '#bbff6a▪
#bdc8c9Clicca a destra: #bbff6aPrendi copia'
2e430b91-c25c-45fa-81aa-8b09ca0c47ce.gsitMessages.action-emote-stop: '[P]§a Hai smesso
di fare l''emoticon.'
98b6ec5b-d351-4020-ae6b-ec32a3c0c195.cmd.main.title.s21: '&b&lPremio Giornaliero &7Premio'
421b1765-551f-4f90-a7a8-cb17e33dd9d5.triton.detected-language: La tua lingua è stata
impostata automaticamente su &7%1
fbe9bce1-3536-4e83-8db3-8d269123282e.PlayerParticlesgui-edit-primary-data-missing-effect: È
necessario selezionare prima un effetto
bed33c40-df74-48f5-a21e-684c31ff0ff3.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_HOLOGRAM.Lore.15: '#bbff6a▪
#bdc8c9Shift-Destra: #bbff6aCambia l''offset Y'
1c832922-35be-4a63-88cb-3c569c2a6161.menu.bank.deposit: |2-
§aDescrizione
§a| §7Depositare il denaro
§a| §7in banca
§a| §7Deposito: §f$%1
§a&l| §aᴄʟɪᴄᴋ ᴛᴏ ᴅᴇᴘᴏꜱɪᴛ
2a5b98ee-3537-4f8b-9e6a-f1c682dbf3a0.triton.selector-gui-name: '&bSelezionare una
lingua'
97477f6f-1f60-4eb8-bb84-5c8ee1db7936.excellentcratesEditor.Crate.BlockPushback.Lore.1: '#bdc8c9back
dal blocco cassa quando'
1f7b0769-0201-4d98-b80b-0d5a7dd204ce.PlayerParticlescommand-description-use: Modificare
la particella primaria
e84ccda1-a060-43f8-b987-761ab76d1e14.tab.ani.players: 'Tᴏᴛᴀʟ ᴘʟᴀʏᴇʀs:'
eb17bb7b-cb6d-42af-b86c-cd470e72fa88.cmd.links.desc.s29.1: "&f\n§x§7§2§8§9§d§aDescrizione\n
§x§7§2§8§9§d§a| &7Qualcosa è andato storto!\n §x§7§2§8§9§d§a| &7riportalo su Discord.\n
&f\n§x§7§2§8§9§d§aModulo menu Discord"
39cf9ff4-482f-44f4-9f98-5af8e953ed57.playerpoints.command-giveall-usage: '§cUtilizzo:
§b/punti daretutto §3<importo>'
e3110a09-565b-4cb5-b979-cd4483be936d.tab.ani.2.2: '§fᴡᴇʟᴄᴏᴍᴇ ᴛᴏ Hᴀᴍsᴛᴇʀɢᴀᴍᴇs.ᴇᴜ ʏᴏᴜ
ᴀʀᴇ'
c82eaf59-7f3d-4f4f-be82-b0ee60452226.excellentcratesEditor.CrateEditorType.KEY_CHANGE_NAME.Name: '#ffed6a&lNome
visualizzato'
75b55c5c-b2ff-42fc-8d81-1a6118faf6b9.excellentcratesEditor.Crate.Enter.PreviewConfig: '#d4d9d8Invio
#aefd5e[Nome anteprima]'
b66c6fb3-c929-42de-be51-2bf8a53dc53c.excellentcratesCrate.Open.Error.InventorySpace.2: '#d4d9d8Pulisci
gli slot dell''inventario per aprire la cassa!'
209d378a-2920-465f-82c6-2fcab5e8de9d.excellentenchantmentsCommand.TierBook.Error: §cTipo
non valido!
78883c33-72b2-4f43-8c15-d0e6e66d1b8e.PlayerParticlescommand-description-group-load: >-
§b/pp carico gruppo §3<nome> §8- §fCarica tutte le particelle salvate in un gruppo
c3f228d2-3063-4010-92be-9cdcc9a7c650.excellentcratesEditor.CrateEditorType.KEY_CHANGE_NAME.Lore.6: '#ff6a6a&lAvviso:'
17116b74-327f-4364-bcc8-ab25bc8ecb76.excellentcratesCrate.Open.Error.Cooldown.OneTimed.0: '<!
tipo: "titoli:20:80:20" suono: "ENTITY_VILLAGER_NO" !>'
294e884d-716a-4ec4-b721-dcc725974e26.bungee.restart.connect.title: §bIl server è in
fase di avvio.
78063a85-641e-44aa-b4ec-dfad56b1aeac.ia.6.2: Si può vendere della merce qui dentro!
c9e54d23-43e9-4f29-a6ef-5e4286054ab0.alonsotags.Target-not-loaded: >-
Non è stato possibile caricare il giocatore di destinazione. Il giocatore deve
riconnettersi al server!
6d4c051f-b755-4001-a0e7-4aa565ba62db.cmd.links.title.s29.1: '&4&lRiportatemi!'
75bf0cca-4f89-4e96-9a9a-06675b55e669.cmd.upgrade.choose.desc.s19: "&bDescrizione\n
&b| &7Aumenta i limiti delle tue particelle\n &b| &7per impostare più particelle!\n
&f\n &3| &fAcquista più punti\n &3| &fAt: &bᴄᴜʀʀᴇɴᴛʟʏ ɴᴏᴛ ᴀᴠᴀɪʟᴀʙʟᴇ&f!\n&f\n&b&l|
&bᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ"
79705fcf-d4e0-474c-85b1-bc92679e563a.PlayerParticlesgui-edit-primary-data-description: Modificare
i dati della particella primaria
d9998c47-7988-4f4d-a2e0-db6bcca04d7c.bungee.restart.subtitle: §Vi connetteremo una
volta che il server sarà tornato §6online§b.
163135e6-2637-42d6-806b-c5d9c22c7dcb.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_KEYS.Lore.8: >-
#ff6a6a▪ #bdc8c9Se le chiavi fornite non sono valide, non sarà possibile
aprire la cassa!
7f795320-81c3-4fbc-9a24-c8105b45c9f7.excellentcratesCommand.ResetCooldown.Done: '#d4d9d8Ripristina
il cooldown aperto di #fdf35e%1#d4d9d8 per #fdf35e%2#d4d9d8.'
6ce13825-a593-4604-a0fd-1ada246fed1e.tempflygeneral.time.set_other: '%1 §f%2 §7hanno
impostato il loro tempo su §f⌚%3§7.'
0c787b6e-e7cb-45e1-9935-2794399e8052.tempflygeneral.info.header: '§3&m §b&m §f&m [§b&l
Temp Fly §f&m §b&m §3&m &r'
0a101927-870c-4c0a-acde-4fd0bb976149.excellentcratesEditor.CrateEditorType.REWARD_CREATE.Lore.4: '#bbff6a▪
#bdc8c9Drag & Drop: #bbff6aCreazione veloce'
0ffa23ba-9c66-45b0-a15e-8553fc6b0ee4.alonsotags.Tag-not-selected: Non è stato selezionato
alcun tag.
5b616015-c3ac-4c91-a85e-c7f495aa17f2.tempflygeneral.invalid.sender: '%1 §7Solo i giocatori
possono usare questo comando!'
4b06dee8-4c63-4cbf-a3c0-699d4fa0970e.uar.COMMAND_USER_VIEWINTERVAL.chatMessage: server
riavviato %1 fa...
441021fd-7f1c-4869-8a4c-7050e6cb394b.tempflygeneral.fly.speed_restricted: '%1 §7Non
è consentito modificare la velocità di volo!'
fc082b04-c38a-4eb5-8246-a6c2c17b7c23.PlayerParticlesfixed-create-effect-no-permission: '§7Impossibile
creare l''effetto fisso, non si ha l''autorizzazione ad usarlo §b%1§7!'
3e39398b-9f2c-4868-8f43-a79f73c415bd.cmd.main.title.chapter2: '&6Capitolo 2'
6f1869d6-dd9d-4720-8080-980a4b1f8d47.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_CONFIG.Lore.12: '#bbff6a▪
#bdc8c9Clicca a sinistra: #bbff6aCambia apertura'
73b4c043-60ec-4591-aca7-3e7cf11296a1.tempflycommand.base.shop.0: negozio
6851f9d5-867e-4f1b-831a-aa3f3bef280d.uar.COMMAND_USER_VIEWINTERVAL.subtitle: Riavvio
in
50e6770f-6677-4317-8f93-481da17aa88c.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_BROADCAST.Lore.8: '#bbff6a▪
#bdc8c9Clicca a sinistra: #bbff6aToggle'
fda11bc6-495b-4203-8133-ba8535d3771c.uar.EVENT_RESTART_GLOBAL.chatMessage: Riavvio...
vi ricolleghiamo!
a18c88dd-6b04-4a9b-99ee-7ca825a4d43b.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_OPEN_COST.Lore.5: '#ffed6a▪
#bdc8c9Money: #ffed6a%1'
e621da97-a053-4b01-9746-2353436043c7.tempflygeneral.time.decay: '%1 §7Hai perso §f⌚%2
§7per inattività!'
acaf95ad-0c30-4bc9-8622-34230ea5ca44.PlayerParticlescommand-description-group-remove: '§b/pp
gruppo rimuove§3 <nome> §8-§f Rimuove un gruppo memorizzato'
1c54fa5a-58da-42e6-9200-e6a475817770.chatcolor.gui-click-to-select: '§bClick §8|§7
Seleziona'
e64edf27-30cb-48e5-a966-ab0ec24eb20c.tempflygeneral.unit.days: d
51824031-2922-4420-aa64-5f74c6d1d5c3.PlayerParticlesedit-success-effect: '§7La vostra
particella con ID §b%1 §7 ha cambiato il suo effetto in §b%2§7!'
48d1660b-8b7c-400e-997b-d8c121c48086.PlayerParticlesgui-load-a-preset-group-description: Caricare
un gruppo di particelle predefinito
26e3c7ed-35ff-4d81-9717-d3c1cd5e87b7.mycmd.npc.nocmd: '§7Questo PNG non ha comandi
da eseguire.'
1b91a56e-8af0-4f04-96d0-e83c0c64bbbf.excellentcratesCrate.Open.Reward.Broadcast.1: '#d4d9d8'
037ce5b0-151c-4b5c-bf93-7a655a3e8f4d.PlayerParticlesgui-edit-data-color-yellow: '#ffff00Giallo'
f0f160d2-c68b-46ea-97e1-d57bf2557bd9.PlayerParticlesgui-click-to-edit-particle: '§bClick
§8|§7 modifica l''effetto, lo stile o i dati di questa particella'
338d03cb-01b6-4209-a8c8-775648c12715.excellentcratesCommand.ResetLimit.Desc: >-
Ripristina il limite di vincita della ricompensa per la cassa e la ricompensa
specificate.
426d8cab-7fb2-4e2d-9329-9195b5d7aec6.tempflygeneral.unit.hours: h
b3dda760-84af-43b6-9f7c-98483b9a6c89.gsitMessages.action-sit-kick-error: '[P]§7 Qualcuno
è già seduto qui!'
e577a611-82d0-47c3-ac4f-06bf582d73b5.PlayerParticlescommand-description-group-save: >-
§b/pp salvataggio gruppo §3<nome> §8- §fSalva tutte le particelle attive in un nuovo
gruppo
e3126160-f5cb-4d68-98b0-f8644b788945.excellentcratesEditor.CrateEditorType.EDITOR_CRATES.Name: '#ffed6a&lCrates'
6913e6ee-c8a2-43b9-bc50-eb9d7352dddc.dh.money-updated: '§7Hai aggiornato la classifica
di §fMoney§7!'
3c656321-780c-40cb-a220-af031ca8b3a6.mycmd.second: 'secondo '
79bc8486-3e8d-4306-8836-081acdfbf935.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_BROADCAST.Lore.2: '#bdc8c9qualcuno
ottiene questa ricompensa.'
b9f6a371-85e4-435c-b33f-6d9aeaacc8c4.PlayerParticlesfixed-clear-no-args: '§6Non avete
fornito un raggio per cancellare gli effetti fissi!'
76a30780-6ac1-4c7a-8237-61db9208d1b6.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_NAME.Lore.0: '#bdc8c9Imposta
il nome di visualizzazione della cassa.'
4a88808c-53e7-4583-ace6-51be331d2030.menu.bank.menu.interest.title: §Interessi bancari
b71fd07b-ee6f-404b-86f3-1dd3051afb86.cmd.main.title.s10: '&b&lLavori'
56d9e049-712b-4250-8071-78994967d7cf.cmd.main.desc.s21: "&bDescrizione\n &b| &7Richiedete
i vostri premi &fDAILY&7, &fWEEKLY&7 e &fMONTHLY&7 disponibili.\n &b| &fMONTHLY&7
premi!\n &3| &fClicca per visualizzare.\n&bInformazioni\n &8▪ &7Giornaliero: &f⌚%1\n
&8▪ &7Settimanale: &f⌚%2\n &8▪ &7Mensile: &f⌚%3"
93dc9087-b27d-451b-8fe1-d5330f164b2d.cmd.purchase.choose.desc.s4: "&f\n&b&lInformazioni\n
&8▪ &7Nome: &f%nome_giocatore%\n &8▪ &7Tokens: &f⛃%tmtokens_get_tokens_fixed%"
b2595b19-a406-42a8-8622-cfe87b06129f.excellentcratesCommand.Give.Done: '#d4d9d8Dato
#fdf35ex%1#d4d9d8 di #fdf35e%2#d4d9d8 cassa/e a #fdf35e%3#d4d9d8.'
7fda98b3-a09b-43a2-b2ad-1eb4b9a5b93b.PlayerParticlesother-no-permission: '§7Non avete
il permesso di farlo!'
839aa4ec-276c-45f4-8817-0018d098b22d.PlayerParticlescommand-description-version: Visualizzare
la versione e l'autore del plugin
a50a864c-fd0f-4968-833d-60bce1191cf8.PlayerParticlesgui-load-a-preset-group: '§bCarica
un gruppo preimpostato'
0440e1dc-5d9c-439a-9b57-01f1a9f6982e.gsitPlugin.plugin-version: >-
[P]§7 Questo plugin non può essere utilizzato con questa versione del server! §f%Versione%§7!
2b06711e-6a66-4aa7-bd0c-715e91ef7c56.mycmd.seconds: 'secondi '
346825be-ced3-45f6-b20c-928fc7dcd0cb.playerpoints.command-give-description: '§8 -
§b/Dare punti §3<giocatore> <importo> §8- §fDare punti a un giocatore'
e491f4e4-3f2a-4678-a711-16d0ed4b180e.excellentcratesCrate.Open.Error.NoRewards.2: '#d4d9d8Non
ci sono ricompense per te! Prova più tardi.'
4ab2bb40-2773-4965-b9c4-d0e472cbe179.PlayerParticlesfixed-create-out-of-range: >-
§7Impossibile creare un effetto fisso, è necessario trovarsi entro §b%1 §7blocchi
dalla posizione desiderata!
68fc7f46-0971-4aae-9f9d-868c0b4bfab7.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_COOLDOWN.Name: '#ffed6a&lApertura
Cooldown'
bd0d47b3-e030-4db2-904f-504501434a0c.excellentcratesCommand.ResetLimit.Done.Reward: >-
#d4d9d8Ripristina il limite di vincita #fdf35e%1#d4d9d8 per la ricompensa
#fdf35e%2#d4d9d8 di #fdf35e%3#d4d9d8.
a3c18b28-e866-4eb2-8b9a-398661ba211e.cmd.main.desc.s25: "&bDescrizione\n &b| &7Visualizza
tutte le regioni warp disponibili per te\n &b| &7Per teletrasportarsi!\n &3| &fClicca
per visualizzare.\n&bInformazioni\n &8▪ &fServer Warps\n &8▪ &fRTP Warps"
953d352e-683c-4117-abb2-f298807814b1.cmd.main.desc.s19: "&bDescrizione\n &b| &7Aggiornamenti
&f Case&7, &fAsta\n &b| &fP-Warps&7, &fQuests&7, &f...\n &b| &7Limita l'utilizzo
dei tuoi punti!\n &3| &fClicca per visualizzare.\n&bInformazioni\n &8▪ &7Punti:
&f%Punti_giocatore%\n &8▪ &7Miglioramenti disponibili\n &8▶ &fQuests\n &8▶
&fPlayerWarps\n &8▶ &fCasa d'aste\n &8▶ &fBottega delle casse\n &8▶ &fCasa\n\
\ &8▶ &fParticelle (Stili)\n &8▶ &fParticelle (Gruppi)\n &8▶ &fLavori\n\
\ &8▶ &7e altro ancora..."
b7704ff0-e16f-4c0c-a606-a8736d628eba.playerpoints.command-reset-success: '§7Ripristinare
il §b%1§7 per il §b%2§7.'
0a13f292-8b95-43ad-a001-7f25232287bc.excellentenchantmentsCommand.Book.Done: Dato
il libro incantato di §6%1§7 a §6%2§7.
7de42667-35e9-42e6-bcce-984d030877d1.tab.sb.tempfly: '§7TempFly: '
9ea2b862-70f8-4bec-9fba-bd248cc57a04.cmd.kits.choose.desc.s20: "\n&bDescrizione\n
&b| &7Clicca per visualizzare le categorie di un kit gratuito\n &b| &7qui è possibile
visualizzare, visualizzare in anteprima e o richiedere\n &b| &7corsi gratuiti dal
server\n\n&b&l| &bᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ"
cdf41f09-3872-4961-b496-b8aaeb9b72c1.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_HOLOGRAM.Lore.14: '#bbff6a▪
#bdc8c9Shift-Left: #bbff6aToggle'
bd2b66ba-0484-4943-8c49-ccbb285be0a3.playerpoints.command-take-description: >-
§8 - §b/Prendere punti §3<giocatore> <importo> §8- §fPrendere punti da un giocatore
4d6d15b5-cdbc-4f76-a356-05980fe0af26.excellentcratesCrate.Open.Error.Cost.Money.0: '<!
tipo: "titoli:20:80:20" suono: "ENTITY_VILLAGER_NO" !>'
9416c7a8-06d0-4dc4-8c0a-12eecb64921b.mycmd.warmup1: '§6Il comando sarà eseguito tra
§c%1 secondi.'
21034ce2-0571-4deb-b3e4-c736229f7c22.excellentcratesCommand.Menu.Usage: '[menu]'
e5a3a9a5-0ff0-46dc-a342-bcfb1f4ca046.PlayerParticlescommand-descriptions-help-other: '§b/ppo
§3<giocatore> <comando> §8-§f Eseguire un comando come giocatore'
970c09ff-5d48-4a76-8bcb-78503760f08c.gsitMessages.action-emote-none-error: '[P]§c
Non stai usando un''emote in questo momento!'
fe53cff0-c261-4e11-abae-4da8d3461ef2.cmd.main.title.s36: '&b&lVota'
3adee27d-64c3-4193-af67-00ab68b9597d.tempflygeneral.fly.enabled_other: '%1 §f%2 §7è
ora in volo'
bcd6a436-a8f3-492b-a864-fe8dfbe9018f.mpdb.configReload: >-
§6Ricaricamento della configurazione completato! Controllare il log del server o
la console per i dettagli.
c97dc8ff-9512-4920-aac8-ebefb9da1ae6.tempflysystem.help_extended.2: '§6/tf rimuovere
[giocatore] [tempo]'
99974143-295c-48a3-8855-8b74e24995c3.PlayerParticlesgui-edit-data-color-green: '#008000Verde'
d523ee65-8ce6-40d6-a350-50eec16512cc.tempflycommand.unit.seconds.tab_complete: secondo
dbd7629d-dde4-4249-a4f4-5584e9ea2a4e.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_CONFIG.Lore.11: '#bbff6a&lAzioni:'
a522eab3-dd94-40fc-a799-8c74d92d5e51.excellentenchantmentsCommand.TierBook.Desc: Regala
un libro incantato.
d05b9d82-8070-4141-bb03-f4340f9c5a35.PlayerParticlesgui-color-info: '§f'
db66fb6f-7da4-41ad-a471-8775890524ee.PlayerParticlesgui-edit-primary-data-unavailable: L'effetto
primario non utilizza alcun dato
80b82f60-3eb5-46d5-91e7-603d9351a7ce.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_OPEN_COST.Lore.6: '#ffed6a▪
#bdc8c9Exp Livelli: #ffed6a%1'
c98ecd5a-64da-4dbb-ae13-27c3289a73da.excellentcratesCommand.Key.Give.Desc: Consegnare
la chiave a un giocatore.
a8b89707-62ea-456e-8eaa-1fe9ebe00459.tempflycommand.base.infinite.0: infinito
a9f345e3-e9e4-4604-bc19-996c55ffd861.excellentcratesEditor.CrateEditorType.KEY_CREATE.Lore.2: '#bbff6a&lAzioni:'
16890293-4f02-4b25-bac3-d975111a1d8f.PlayerParticlesgui-save-group-full: Avete raggiunto
il numero massimo di gruppi
69a5578d-241a-4a4c-97ff-763b693ad980.PlayerParticlesfixed-edit-effect-invalid: >-
§7Impossibile modificare l'effetto fisso, un effetto con il nome §c%1 §7non esiste!
cfc73e9c-4642-4c78-8b17-2ecf29a5a13d.PlayerParticlescommand-description-toggle: Attiva/disattiva
la visibilità delle particelle
82c773d3-f974-4e79-9b67-6f39777e470b.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_WIN_LIMITS.Lore.0: '#bdc8c9Impostazione
della frequenza e del numero di volte del giocatore'
77539ecb-cf2d-4d8c-b541-55214092bff4.excellentenchantmentsFitItemType.ELYTRA: Elytra
9441b785-bc11-4245-8118-ea13553c24dd.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_EFFECT.Lore.5: '#ffed6a▪
#bdc8c9Particella: #ffed6a%1'
f626f93c-258d-43cf-875b-329086824919.gsitMessages.action-crawl-now-error: '[P]§7 Non
puoi strisciare adesso!'
9a6f0dd4-30d6-4116-a2db-08b4222abe9b.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_NAME.Lore.6: '#ff6a6a&lAvviso:'
14bcb7fa-e0d5-4a4e-b419-f6e20a0aba7d.PlayerParticlescommand-description-effects: Visualizza
un elenco di effetti utilizzabili
98fce703-dfe0-4050-b922-e10345f094ac.gsitMessages.command-sender-error: '[P]§7 Questo
mittente non può eseguire questo comando!'
d7481d9f-438a-43c1-8022-8be4bac0801f.playerpoints.command-reset-description: >-
§8 - §b/ripristino dei punti §3<giocatore> §8- §fRipristino dei punti di un giocatore
f3ccb623-fe8f-4f39-82a5-f7467dc76a19.tempflygeneral.time.given_other: '%1 §f%2 §7got
§f⌚%3§7.'
05f0cd53-1e9f-42d0-a277-a8d75d298fe7.tempflygeneral.invalid.economy: >-
%1 §7Per utilizzare il negozio è necessario che sia installata un'economia §8(§fvault§8)§7!
f4cacba0-1722-4c0b-b38a-9391d2ffcd81.excellentcratesEditor.Reward.Enter.Command: '#d4d9d8Invio
#aefd5e[Comando]'
b489e079-2e06-4881-85e0-6a0e56d9cf3a.excellentcratesCommand.Key.Set.Desc: Imposta
l'importo delle chiavi per un giocatore.
7582f4c9-b332-491f-a644-f01ea31fdf5c.PlayerParticlesfixed-list-none: §7Non avete effetti
fissi!
dae4458e-13bf-48b0-b056-7cffd9854a28.PlayerParticlesremove-effect-success: '§7Rimosso
§b%1 §7 delle vostre particelle con l''effetto di §b%2§7!'
ed717aff-586d-42c0-a5cf-5fc553c90cee.mpdb.loginSyncConfirmation: '[lang]prefisso[/lang]§6Sincronizzazione
dei dati completata!'
5a5c2daa-8242-43e9-a27c-8f7a30133efc.excellentcratesCrate.Open.Error.NoHoldKey.0: '<!
tipo: "titoli:20:80:20" suono: "ENTITY_VILLAGER_NO" !>'
ff3c25b3-bacc-4cca-93f3-6025f6ff52b0.excellentcratesEditor.Reward.Enter.Id: '#d4d9d8Inserire
#aefd5e[Identificatore ricompensa]'
1b27590a-a2d0-4679-a4ca-2375a82ea858.excellentenchantmentsError.NoEnchant: §cIncanto
non valido.
d669dc67-1b20-4001-a40c-20dfd629ac2c.PlayerParticlesfixed-create-style-invalid: >-
§7Impossibile creare un effetto fisso, uno stile con il nome §c%1 §7non esiste!
0ae160ea-62e2-4db1-8dfb-25cec33f0261.mycmd.warmup2: '§7Si è saltato il riscaldamento
di questo comando.'
ac449efd-209d-495d-a820-31078e7e444a.PlayerParticlescommand-description-data: Controllare
il tipo di dati utilizzati da un effetto
afa6d00c-dd83-44c7-abd8-50903c351cf1.SuperVanishMessages.HelpHeader: '&b&l&m &r &b&lVANISH
&8| &f&lHELP &8(&f1&8/&f1&8) &b&l&m &r'
281a73ab-5a60-4342-afe7-668cd700a1df.SuperVanishMessages.VanishMessageWithPermission: §x§F§F§0§0§0§0⏪
&f%1 &7&o(Svanito)
0251e97f-5189-46f5-b846-1e8a85cd9226.SuperVanishMessages.SilentJoinMessageForAdmins: §x§F§F§9§9§9§9⏪
&f%1
05ef982d-46b1-4cb3-be84-486a7ac321a4.PlayerParticlescommand-description-fixed-list: '§b/pp
lista fissa §8-§f Elenca tutti gli ID degli effetti fissi.'
8cacf16a-224c-4db6-862a-90c5c03f38c9.excellentcratesCommand.Menu.Done.Others: '#d4d9d8Aperto
il menu della cassa #fdf35e%1#d4d9d8 per #fdf35e%2#d4d9d8.'
1b6caa61-ca28-47d2-a688-4b670b5a8028.dh.playtime-lb: CLASSIFICA DEI TEMPI DI GIOCO
fba14d8f-56e1-4948-9221-bd06d97d21d7.excellentcratesMenu.Invalid: '#fd5e5eMenu non
esiste!'
8495a4a6-5408-45e5-9f28-92111aefc3df.tempflygeneral.invalid.number: '%1 §f%2 §7 non
è un numero valido!'
55e01ea9-5325-4f16-b6ec-8aaa45acd5f1.cmd.links.desc.s22: "§f\n§x§f§7§b§5§2§9Descrizione\n
§x§f§7§b§5§2§9| §7Clicca per vedere il nostro sito ufficiale!\n §x§f§7§b§5§2§9|
§7sito ufficiale!\n§f\n§x§f§7§b§5§2§9§l| §x§f§7§b§5§2§9ᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ"
69eae38a-3208-4763-ada7-f1b3536daf0b.PlayerParticlescommand-description-remove: Rimuove
alcune particelle
e0574790-b1f1-4125-aa90-bae69b0aea7d.tempflycommand.base.bypass.0: bypass
31990252-b654-42de-9fdb-3f1f2ab80c19.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_EFFECT.Name: '#ffed6a&lEffetti
di blocco'
f5a0be37-15f1-4c89-980c-df5dc4759132.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_IGNORED_FOR_PERMISSIONS.Lore.4: '#ffed6a&lCurrent:'
c83c5797-2dd7-434d-a604-ecee3c0c6301.PlayerParticlesremove-style-none: §7Non sono
state applicate particelle con lo stile §b%1§7!
f6f7c2e8-00f3-4595-ac81-327e503aff91.playerpoints.command-pay-received: '§7Sei stato
pagato §b&l%1§b%2§7 da §b%3§7.'
adaa7eaa-493b-4b8c-a31b-5599a0274123.PlayerParticlesremove-effect-style-none: §7Non
sono state applicate particelle con l'effetto o lo stile §b%1§7!
d5b8846e-219b-45a5-81ab-8b7b715bf28a.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_LOCATION.Lore.7: '#bbff6a&lAzioni:'
b9e86347-31b3-4fc4-8b69-bb043db0e123.excellentenchantmentsFitItemType.ARMOR: Armatura
1d1f01b3-816c-4a3d-b7b5-c915ef2f3df2.cmd.kits.choose.desc.s24: "\n&bDescrizione\n
&b| &7Clicca per visualizzare le categorie del kit del donatore\n &b| &7qui è possibile
visualizzare, visualizzare in anteprima e o reclamare\n &b| &7corsi di donazione
dal server\n\n&b&l| &bᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ"
56007461-8022-44c6-8488-c2a86a21e7f9.tempflysystem.help.6: '§7- inviare un altro giocatore
a tempo di volo'
76af474b-ddea-4b99-93b9-be6663956c0e.tempflygeneral.info.minutes: '§fMinuti: §b%1'
440ed012-4150-43de-b76f-9e78faf03783.PlayerParticlestoggle-off: '§7Le particelle sono
state modificate §coff§7!'
92e1232e-74a5-4fcc-871b-85758f590161.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_COMMANDS.Lore.10: >-
#bbff6a▪ #bdc8c9Fare clic con il tasto sinistro: #bbff6aAggiungi un
appuntamento per oggi
0a8c0fe8-436c-4d8b-8094-8b021e7894cd.dh.points-updated: '§7Hai aggiornato la classifica
dei §punti§7!'
7fca2fbb-8769-4715-ada9-b9fe477af4eb.excellentcratesCommand.Key.Show.Format.List.2: '§7'
fc9f57b3-25f0-4f24-bdb1-0c9bc4981503.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_COMMANDS.Name: '#ffed6a&lComandi
di esecuzione'
e425d3ee-4dbe-4f9e-9506-65b2e99f745c.cmd.links.title.s22: §x§f§7§b§5§2§9Sito web
09100892-fe81-45bc-9745-dd566a410a75.tab.ani.2.4: '§fɢᴇᴛ ꜰʀᴇᴇ ʀᴇᴡᴀʀᴅꜱ ʙʏ ꜱᴜᴘᴘᴏʀᴛɪɴɢ
Hᴀᴍsᴛᴇʀɢᴀᴍᴇs.ᴇᴜ'
8f2ce7ee-cf79-487d-88b4-0b0ccd08117f.gsitMessages.action-pose-kick-error: '[P]§7 Qualcuno
sta già posando qui!'
a2e28288-595d-416b-aa1a-ea4316e3af0b.cmd.links.title.s24: §x§a§3§c§8§3§4Store
7255b834-b573-4940-afdc-7f9b52a9704e.clearlag.autoremoval: '§c&l| §cᴛʜᴇʀᴇ ᴀʀᴇ §4%1§c
ᴇɴᴛɪᴛɪᴇꜱ ᴏɴ ᴛʜᴇ ɢʀᴏᴜɴᴅ ʀᴇᴍᴏᴠᴇᴅ!'
799d7d0c-7b71-4462-9d65-285127d22793.excellentenchantmentsFitItemType.PICKAXE: Piccone
34836667-5a55-4d72-878f-8e7738c97c06.ia.8.2: 'insieme al gioco.[lang]prefisso[/lang]!'
7c826754-397d-4ce9-b807-41a5487a2397.PlayerParticlesgui-particle-name: '§b&lPARTICLE
§8┃ §f#%1'
710890a6-0735-453a-bb0f-7fab8171da58.PlayerParticlesuse-particle-modified: >-
§7La vostra particella primaria è stata modificata per utilizzare l'effetto §b%1§7,
lo stile §b%2§7 e i dati §b%3§7!
b1205123-48be-47b9-82da-308c1187abe1.excellentcratesEditor.CrateEditorType.REWARD_OBJECT.Lore.1: '#bdc8c9Rarità:
§f%1'
db64f04c-dd42-4c06-ba30-b629a9332da1.chatcolor.gui-available: §aDisponibile
fdfcadbb-7804-43cb-ac13-6f5e56f926c7.PlayerParticlesgui-disabled: '§6L''amministratore
del server ha disattivato l''interfaccia grafica!'
0d3556b7-5d27-43d3-983c-00f97a028742.tempflycommand.unit.minutes.recognized.1: min
de75bebd-a51e-4f11-b797-03eeecacff77.cmd.main.desc.s37: "&bDescrizione\n &b| &7Gestisci
le tue impostazioni qui\n &b| &7abilita o disabilita una determinata\n &b| &7funzioni!\n
&3| &fClicca per visualizzare.\n&bInformazioni\n &8| &a■ &nLIME_GLASS&7 (Abilitato)\n
&8| &c■ &nRED_GLASS&7 (Disabilitato)"
438ca918-82f2-442b-a267-a619d963063b.excellentcratesEditor.CrateEditorType.KEY_VIRTUAL.Lore.8: '#bbff6a&lAzioni:'
4979bb80-c91f-46bc-9865-15cfa549fe8b.excellentcratesEditor.CrateEditorType.KEY_VIRTUAL.Lore.5: '#ffa76a&lNotes:'
3f8d560e-55f2-4683-9b8e-4dcfbff68592.PlayerParticlesrainbow: '§cR§6a§ei§an§bb§9o§dw'
58f43545-d1c1-447f-88fb-f8958f019dc9.excellentcratesEditor.CrateEditorType.CRATE_CREATE.Lore.0: '#bdc8c9Crea
una nuova cassa.'
69cb362f-f1a5-4c66-91b2-1c666300a012.cmd.main.desc.s4: "&bInformazioni:\n &8| &7Classifica:
&b%1\n &8| &7Gioco: &b%2"
2514638a-acf6-42b8-982d-b780d5fcb490.PlayerParticlesgui-edit-data-description: '§bClick
§8|§7 modifica i dati di questa particella'
b74e6675-3e2b-4481-b459-78dda018fb74.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_HOLOGRAM.Name: '#ffed6a&lBlock
Hologram'
e1e06c68-f792-4d7b-a435-6f55ddb3d74f.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_WIN_LIMITS.Lore.4: '#ffed6a▪
#bdc8c9Amount: #ffed6a%1'
abb850ea-0714-466c-b6c9-7bc3b50909f0.PlayerParticlesstyle-list: '§7È possibile utilizzare
i seguenti stili: §a%1'
139b05c5-ac07-4057-8a8a-709c6d9557e5.PlayerParticlesgui-edit-primary-effect: §bModifica
effetto primario
b1a65e31-09d0-498b-9394-3cf10168fb5f.PlayerParticlesdata-invalid-note: >-
§7I dati della nota inseriti non sono validi! Formato:§c <0-24>|<§brainbow>|<random>
fe62e35e-2b4e-4a8e-9738-06f38e63a334.playerpoints.command-me-success: '§7Hai §b&l%1§b%2§7.'
05f1a19e-1900-40bc-a2e7-b28d7f884ac2.cmd.main.desc.s30: "&bDescrizione\n &b| &7Accetti
le nostre regole?\n &b| &7leggi prima le nostre regole e i nostri accordi!\n &3|
&fClicca per vedere"
1729227c-4d2c-4ff8-8893-3dc10e1c825b.tempflycommand.base.time.2: equilibrio
c5714db3-e5c2-45b4-a90d-09fe3a1753d3.PlayerParticlesdata-usage-none: '§7L''effetto
§b%1 §7non utilizza alcun dato!'
8556db57-3a81-4ca9-af8b-25d8dc6c9854.PlayerParticlesfixed-info-success: >-
§bID§8: §f%1 §bWorld§8: §f%2 §bX§8: §f%3 §bY§8: §f%4 §bZ§8: §f%5 §bEffect§8: §f%6
§bStyle§8: §f%7 §bData§8: §f%8
6210d086-90b4-4347-a084-2e18e86c400e.excellentenchantmentsFitItemType.SWORD: Spada
5310f1ed-b5cd-472b-8dc4-d79ee2e183c6.cmd.upgrade.choose.title.s22: '&b&lCasa &7Aggiornamenti'
4ff99f51-4edf-435c-8cf0-e015c85f5b58.playerpoints.command-look-success: '§b%1 §7ha
§b&l%2§b%3§7.'
d9b5c7c5-80d1-47a7-a97b-ae5a91845977.PlayerParticlesgui-select-effect: '§bSeleziona
effetto particella'
657a3f5c-aa2c-4b96-88db-e9be2d839e72.chatmanager.Broadcast: '§x§0§0§f§f§f&lANNOUNCEMENT! '
da81febc-d07f-4f1b-ac3d-ea22021068c4.cmd.purchase.choose.title.s22: '&b&lPunti &7Acquisto'
48a6866d-7dcb-4a87-9409-6572eed813bf.PlayerParticlesdata-invalid-vibration: '§7I dati
di vibrazione inseriti non sono validi! Formato: §c<durata>'
8302dcec-13fc-4693-8038-c56256a5161d.mpdb.importingDataComplete: Importazione di §eData
completata!
64ad26ae-8d42-4a83-94d9-87783ea1ebbd.tempflycommand.base.reload.0: ricaricare
8e7d87cc-563e-4ce1-8a12-b568ab32b28f.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_COOLDOWN.Lore.1: '#bdc8c9
per aprire di nuovo questa cassa.'
0e675cd7-bed7-4e6a-b939-c5947b494b50.tempflyaesthetic.trail.removed_self: '%1 §a7la
tua traccia è stata rimossa!'
c2edf57f-b98c-41ee-b82c-0a7afc43469f.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_BLOCK_HOLOGRAM.Lore.5: '#ffed6a&lCurrent:'
348fb7aa-e61b-4d50-a1e7-0e325c89d807.uar.EVENT_RESTART_DELAY_STAFF.title: RITARDO
DI RIAVVIO
a956c80f-c978-4c3d-80d0-713548ec9c02.PlayerParticlesgroup-preset-no-permission: '§7Non
avete il permesso di farlo!'
c1801390-e85f-442e-8b1e-ba87059ed536.cmd.upgrade.choose.desc.s22: "&bDescrizione\n
&b| &7Aumenta i limiti delle case impostate\n &b| &7per impostare più case!\n&f\n
&3| &fAcquistare più punti\n &3| &fAt: &bᴄᴜʀʀᴇɴᴛʟʏ ɴᴏᴛ ᴀᴠᴀɪʟᴀʙʟᴇ&f!\n&f\n&b&l| &bᴄʟɪᴄᴋ
ᴛᴏ ᴠɪᴇᴡ"
5f707a2f-e43b-4fae-b630-be89e533116c.tempflygeneral.fly.enabled_self: '%1 §7Il tuo
volo è stato abilitato!'
fcb69ba4-fd50-4896-854c-6cd69bd2229f.alonsotags.Tag-cleared: Il tag attuale è stato
cancellato.
3e8ecdc5-eb76-4b92-a760-b366e41865a6.dh.tokens-updated: '§7Hai aggiornato la classifica
dei §fTokens§7!'
a13aade1-db89-4cb5-8759-75ea380232b2.excellentcratesCrate.Open.Reward.Broadcast.4: >-
#d4d9d8Vuoi farlo anche tu? Acquista subito le chiavi: <? open_url:
"http://samplesmp.com/store" ?>#aefd5e[Open Store]</>
3fb46e85-f3e3-4ba9-865e-000ef63e0590.cmd.main.title.s5: Cos'è la sopravvivenza?
4b6a3e5b-2c92-407e-b3d4-6127cf86b108.gsitPlugin.plugin-enabled: '[P]§7 Il plugin è
stato attivato con successo.'
7928ee9c-b03e-459d-93f7-faa29c0fc516.PlayerParticlesgui-manage-your-groups-name: Gestire
i gruppi
7d65bc43-10d4-4cf0-b61e-3d5050a11f55.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_WIN_LIMITS.Name: '#ffed6a&lLimiti
di vincita'
357b44df-d93d-49f6-8192-fb547e608f80.dh.your-points: '§I vostri punti:'
69f6abe9-47d4-4303-9c89-bd11331e60fe.PlayerParticlesstyle-event-spawning-info: '§cNota:
§7Lo stile §b%1 §7spawns particelle in base a un evento.'
7faca170-f11d-481f-8ae3-6fcc396d48b4.SuperVanishMessagesVersion: 6.2.12
c2e32fe9-9c01-494a-baf0-8eda3d7d1ed2.excellentcratesEditor.CrateEditorType.CRATE_OBJECT.Lore.1: '#bbff6a▪
#bdc8c9Clicca a sinistra: #bbff6aModifica'
493d95b3-53f2-478a-92f6-0c320fe770b4.chatmanager.msg.you: '§bYou'
82846f32-dbaa-47f9-9c01-a00b4776a052.mycmd.holo.delay: '§7È possibile interagire nuovamente
con questo ologramma in §c%1s'
106e960a-172b-4831-b0c8-6dcc0c8a854d.tempflygeneral.invalid.vault_perms: >-
%1 §7È necessario installare il plugin §8(§fvault§8) §7 per poter impostare il tempo
del giocatore offline!
d26ce2e5-4fc6-4154-be1f-b38e6294e81b.tab.ani.2.1: '§fᴊᴏɪɴ ᴏᴜʀ ᴏꜰꜰɪᴄɪᴀʟ ᴅɪꜱᴄᴏʀᴅ ᴄᴏᴍᴍᴜɴɪᴛʏ
ꜰᴏʀ ᴜᴘᴅᴀᴛᴇꜱ,'
15a721b5-8154-4366-bce1-763fb19255e7.tempflygeneral.fly.speed_limit_self: '%1 §7La
tua velocità di volo è attualmente limitata a §f%2§7.'
d27c6b12-9399-4867-84b7-d5b137aa207c.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_COOLDOWN.Lore.6: '#ffa76a&lNotes:'
2bb011eb-0e39-4f2b-a18c-ab7d01c53ef8.cmd.upgrade.choose.desc.s29: "&bDescrizione\n
&b| &7Aggiorna i tuoi limiti di lavoro\n &b| &7per partecipare a più lavori!\n&f\n
&3| &fAcquista più punti\n &3| &fAt: &bᴄᴜʀʀᴇɴᴛʟʏ ɴᴏᴛ ᴀᴠᴀɪʟᴀʙʟᴇ&f!\n&f\n&b&l| &bᴄʟɪᴄᴋ
ᴛᴏ ᴠɪᴇᴡ"
14871dc8-1503-4344-baae-e3cfd758c88d.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_IGNORED_FOR_PERMISSIONS.Lore.2: '#bdc8c9
per ottenere questa ricompensa.'
cdfc1726-588a-44ee-b69a-b725b2a93048.uar.restart.subtitle: '§fRipartire in'
b3a34a5f-aded-41be-82fc-107124751a59.excellentcratesEditor.Reward.Enter.Rarity: '#d4d9d8Invio
#aefd5e[Rarità]'
9e3e4e0c-a74e-4f7a-89cc-2fd762e02574.PlayerParticlesedit-invalid-property: >-
§7È stata fornita una proprietà non valida §b%1 §7. Proprietà valide: §beffect§7,
§bstyle§7, §bdata
bff09532-7a33-4f27-8b7d-118e122f5e6e.tempflygeneral.unit.minutes: m
dc463ab2-5111-4169-87a8-e1dab38fc5f3.tempflysystem.prefix: '§b&lᴛᴇᴍᴘᴏ ғʟʏ §8&l┃'
4eccda99-315c-4514-a13e-7e20514b000a.PlayerParticlesfixed-info-no-args: '§7Non è stato
specificato un ID per cui visualizzare le informazioni!'
654bc188-c5d9-439d-a95f-b87d4cfce709.PlayerParticlesgroup-no-name: '§7Non è stato
fornito il nome del gruppo! §b/pp §3%1 <nome-gruppo>'
751dfcc2-42d4-430f-9503-ab56d5ab7129.PlayerParticlesdata-invalid-block: '§7I dati
del blocco inseriti non sono validi! §7Formato: §c<nomeblocco>'
f73bb8c3-3467-45e5-bbb8-911a1edc3f21.excellentcratesCrate.Open.Error.Cooldown.Temporary.2: '#d4d9d8Puoi
aprire in #fd5e5e%1'
4da9a097-45e5-4cb6-b87a-0d34a6fb39c9.alonsotags.Error-purchasing: >-
Errore imprevisto nell'acquisto di questo tag. Riprovare più tardi; se il
problema persiste, contattare un amministratore.
f48cfc55-d60c-447f-bb10-fe4c092bd3d7.PlayerParticlesgui-edit-data-color-red: '#ff0000Rosso'
4811d8ee-bc0a-4b44-aeea-4de7c0c38ec3.PlayerParticlesgui-shift-click-to-delete: '§bShift-click
§8|§7 cancellare'
8357525e-dcf6-4d8e-9be2-f29f497fe88f.PlayerParticlesgui-toggle-visibility-off: §fLe
particelle sono attualmente §nascoste
c1db505d-9a13-49e0-8853-873e5d06b905.cmd.main.title.s25: '&b&lWarps'
72cb42a7-7e20-4d21-a4bd-ce3e90462f72.menu.bank.interest.title: §bIl vostro prossimo
interesse
9957252b-687d-4801-8fcc-52d9ad4f337b.tab.ani.3.2: '§fCᴜʀʀᴇɴᴛʟʏ ᴘʟᴀʏɪɴɢ ᴏɴ ᴛɪʟɢɪs!'
093b2aaa-319e-4cc8-9bd0-bd2597807037.excellentcratesEditor.CrateEditorType.CRATE_CHANGE_ITEM.Lore.4: '#ffa76a&lNotes:'
9157dac0-4b19-4f07-866c-c01e8b701a41.mpdb.inventorySyncBackup: >-
§6[!] §Ripristino dell'inventario locale! §Non lasciare oggetti nell'inventario
quando ci si disconnette!
e004e105-5be5-4e36-9351-9b19e1f371cc.menu.bank.menu.interest: |2-
§bDescrizione
§b| §7Questa è una banca, qui è possibile
§b| §f&nDepositare§7 e §f&nPrelevare
§b| §7fondi dal proprio conto bancario
§b| §7o dal proprio conto.
§b| §7Con la funzione §b&nInteressi§7
§b|7il vostro denaro continuerà ad aumentare
§b| §7per ogni §f5 ore§7!
§b&l| §bᴄʟɪᴄᴋ ᴛᴏ ᴠɪᴇᴡ
d161dfb1-37bd-42c9-ada1-d955e03b989a.SuperVanishMessages.NoConfigUpdateAvailable: '&b&l%1
&8&l┃ &7I tuoi file SuperVanish sono aggiornati!'
f27e9ff1-d25f-47a1-9eee-d5c4e027c96e.playerpoints.command-pay-usage: '§cUtilizzo:
§b/punti paga §3<giocatore> <importo>'
20c35dad-85e6-48a5-9d93-b1a6c2343c18.PlayerParticleseffect-no-permission: '§7Non avete
il permesso di farlo!'
7185d0cb-83f9-4fb2-826e-65f3a51b34e1.tempflycommand.base.givall.0: givall
64c48859-b07b-42d5-b6ae-ec1360cb742e.PlayerParticlesfixed-edit-style-no-permission: '§7Non
avete il permesso di farlo!'
83b5a539-c04c-4800-9f42-d40a32dd4bb0.chatcolor.gui-inactive: '§7Inattivo'
64c2167b-2422-465d-8b86-944714ffc0d0.tempflygeneral.invalid.player: '%1 §7Il giocatore
§f%2 §7non è stato trovato...'
86fa623b-4bad-4d51-9946-05643df7197d.excellentcratesEditor.CrateEditorType.REWARD_CHANGE_COMMANDS.Lore.4: '#bdc8c9%1'
7f37271d-0c2a-45c8-b2c0-92b1890f80f0.cmd.main.desc.s34: "&bLe tue statistiche\n&b
| &7Gioca di più sul server\n&b | &7per ottenere eccitanti ricompense.\n&3 | &7Tempo
di gioco: &b% pianificare_il_tempo_di_giocatore_totale%"
6f28672a-eba2-4e9b-b37d-45ddbf629069.SuperVanishMessages.DynmapFakeJoin: '%1 si è
unito a'
042c3c8b-f511-48ca-a4bd-f5d7f866c32d.PlayerParticlescommand-description-reload: Ricarica
il file config.yml e il file lang
a84e2a42-52ab-498a-9983-ee490449d9a3.ia.1.1: Ottenete premi gratuiti su
ed27448f-fda2-49bf-8995-688d8164c7d9.excellentcratesCrate.Open.Error.Cooldown.OneTimed.1: '#fd5e5e&lWhoops!'
50559d81-ce54-447c-a4d6-9e7ae2689ea7.tempflycommand.base.pay.0: retribuzione
ffd3e67b-5234-47b1-a053-053be1d3f993.PlayerParticlescommand-descriptions-help-1: '§b/pp§3
%1 §8-§f %2'
09d808c1-3ba0-43c2-829b-e68fe80fc908.playerpoints.command-set-description: >-
§8 - §b/Set di punti §3<giocatore> <importo> §8- §fSet di punti di un giocatore
709c93ae-7070-4097-a6d0-9c996b0dab5a.tab.sb.username: '§7Nome utente:'
314f68af-bce6-4b86-8ce4-897a59a08a76.excellentcratesEditor.CrateEditorType.REWARD_OBJECT.Lore.6: '#bbff6a▪