-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathapp_localizations_it.dart
More file actions
2778 lines (1987 loc) · 69.6 KB
/
app_localizations_it.dart
File metadata and controls
2778 lines (1987 loc) · 69.6 KB
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
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'app_localizations.dart';
// ignore_for_file: type=lint
/// The translations for Italian (`it`).
class AppLocalizationsIt extends AppLocalizations {
AppLocalizationsIt([String locale = 'it']) : super(locale);
@override
String get appTitle => 'MeshCore Open';
@override
String get nav_contacts => 'Contatti';
@override
String get nav_channels => 'Canali';
@override
String get nav_map => 'Mappa';
@override
String get common_cancel => 'Annulla';
@override
String get common_ok => 'OK';
@override
String get common_connect => 'Connetti';
@override
String get common_unknownDevice => 'Dispositivo sconosciuto';
@override
String get common_save => 'Salva';
@override
String get common_delete => 'Elimina';
@override
String get common_close => 'Chiudi';
@override
String get common_edit => 'Modifica';
@override
String get common_add => 'Aggiungi';
@override
String get common_settings => 'Impostazioni';
@override
String get common_disconnect => 'Disconnetti';
@override
String get common_connected => 'Connesso';
@override
String get common_disconnected => 'Disconnesso';
@override
String get common_create => 'Crea';
@override
String get common_continue => 'Continua';
@override
String get common_share => 'Condividi';
@override
String get common_copy => 'Copia';
@override
String get common_retry => 'Riprova';
@override
String get common_hide => 'Nascondi';
@override
String get common_remove => 'Elimina';
@override
String get common_enable => 'Abilita';
@override
String get common_disable => 'Disattivare';
@override
String get common_reboot => 'Riavvia';
@override
String get common_loading => 'Caricamento...';
@override
String get common_notAvailable => '—';
@override
String common_voltageValue(String volts) {
return '$volts V';
}
@override
String common_percentValue(int percent) {
return '$percent%';
}
@override
String get scanner_title => 'MeshCore Open';
@override
String get scanner_scanning => 'Scansione in corso per i dispositivi...';
@override
String get scanner_connecting => 'Connessione...';
@override
String get scanner_disconnecting => 'Disconnessione...';
@override
String get scanner_notConnected => 'Non connesso';
@override
String scanner_connectedTo(String deviceName) {
return 'Connesso a $deviceName';
}
@override
String get scanner_searchingDevices => 'Ricerca dispositivi MeshCore...';
@override
String get scanner_tapToScan =>
'Tocca Scansiona per trovare i dispositivi MeshCore';
@override
String scanner_connectionFailed(String error) {
return 'Connessione fallita: $error';
}
@override
String get scanner_stop => 'Interrompere';
@override
String get scanner_scan => 'Scansiona';
@override
String get device_quickSwitch => 'Passa velocemente';
@override
String get device_meshcore => 'MeshCore';
@override
String get settings_title => 'Impostazioni';
@override
String get settings_deviceInfo => 'Informazioni Dispositivo';
@override
String get settings_appSettings => 'Impostazioni App';
@override
String get settings_appSettingsSubtitle =>
'Notifiche, messaggi e preferenze della mappa';
@override
String get settings_nodeSettings => 'Impostazioni Nodo';
@override
String get settings_nodeName => 'Nome Nodo';
@override
String get settings_nodeNameNotSet => 'Non impostato';
@override
String get settings_nodeNameHint => 'Inserisci nome nodo';
@override
String get settings_nodeNameUpdated => 'Nome aggiornato';
@override
String get settings_radioSettings => 'Impostazioni Radio';
@override
String get settings_radioSettingsSubtitle =>
'Frequenza, potenza, fattore di dispersione';
@override
String get settings_radioSettingsUpdated => 'Impostazioni radio aggiornate';
@override
String get settings_location => 'Posizione';
@override
String get settings_locationSubtitle => 'coordinate GPS';
@override
String get settings_locationUpdated => 'Posizione aggiornata';
@override
String get settings_locationBothRequired =>
'Inserire sia la latitudine che la longitudine.';
@override
String get settings_locationInvalid => 'Latitudine o longitudine non valida.';
@override
String get settings_locationGPSEnable => 'Abilita GPS';
@override
String get settings_locationGPSEnableSubtitle =>
'Abilita l\'aggiornamento automatico della posizione tramite GPS.';
@override
String get settings_locationIntervalSec => 'Intervallo GPS (Secondi)';
@override
String get settings_locationIntervalInvalid =>
'L\'intervallo deve essere di almeno 60 secondi e inferiore a 86400 secondi.';
@override
String get settings_latitude => 'Latitudine';
@override
String get settings_longitude => 'Longitudine';
@override
String get settings_privacyMode => 'Modalità Privacy';
@override
String get settings_privacyModeSubtitle =>
'Nascondere nome/luogo negli annunci';
@override
String get settings_privacyModeToggle =>
'Attiva la modalità privacy per nascondere il tuo nome e la tua posizione negli annunci.';
@override
String get settings_privacyModeEnabled => 'Modalità privacy abilitata';
@override
String get settings_privacyModeDisabled => 'Modalità privacy disabilitata';
@override
String get settings_actions => 'Azioni';
@override
String get settings_sendAdvertisement => 'Invia Annuncio';
@override
String get settings_sendAdvertisementSubtitle => 'Presenza trasmessa ora';
@override
String get settings_advertisementSent => 'Annuncio inviato';
@override
String get settings_syncTime => 'Tempo di sincronizzazione';
@override
String get settings_syncTimeSubtitle =>
'Imposta l\'orologio del dispositivo sull\'ora del telefono';
@override
String get settings_timeSynchronized => 'Sincronizzato nel tempo';
@override
String get settings_refreshContacts => 'Aggiorna Contatti';
@override
String get settings_refreshContactsSubtitle =>
'Ricaricare l\'elenco dei contatti dal dispositivo';
@override
String get settings_rebootDevice => 'Riavvia Dispositivo';
@override
String get settings_rebootDeviceSubtitle =>
'Riavviare il dispositivo MeshCore';
@override
String get settings_rebootDeviceConfirm =>
'Sei sicuro di voler riavviare il dispositivo? Sarai disconnesso.';
@override
String get settings_debug => 'Risoluzione dei problemi';
@override
String get settings_bleDebugLog => 'Log di Debug BLE';
@override
String get settings_bleDebugLogSubtitle =>
'Comandi, risposte e dati grezzi BLE';
@override
String get settings_appDebugLog => 'Log di Debug dell\'App';
@override
String get settings_appDebugLogSubtitle =>
'Messaggi di debug dell\'applicazione';
@override
String get settings_about => 'Informazioni';
@override
String settings_aboutVersion(String version) {
return 'MeshCore Open v$version';
}
@override
String get settings_aboutLegalese => 'Progetto Open Source MeshCore 2024';
@override
String get settings_aboutDescription =>
'Un client Flutter open-source per i dispositivi di rete mesh LoRa Core di MeshCore.';
@override
String get settings_infoName => 'Nome';
@override
String get settings_infoId => 'ID';
@override
String get settings_infoStatus => 'Stato';
@override
String get settings_infoBattery => 'Batteria';
@override
String get settings_infoPublicKey => 'Chiave Pubblica';
@override
String get settings_infoContactsCount => 'Numero contatti';
@override
String get settings_infoChannelCount => 'Numero Canale';
@override
String get settings_presets => 'Preset';
@override
String get settings_preset915Mhz => '915 MHz';
@override
String get settings_preset868Mhz => '868 MHz';
@override
String get settings_preset433Mhz => '433 MHz';
@override
String get settings_frequency => 'Frequenza (MHz)';
@override
String get settings_frequencyHelper => '300,0 - 2500,0';
@override
String get settings_frequencyInvalid => 'Frequenza non valida (300-2500 MHz)';
@override
String get settings_bandwidth => 'Larghezza di banda';
@override
String get settings_spreadingFactor => 'Fattore di Spettro';
@override
String get settings_codingRate => 'Tasso di Codifica';
@override
String get settings_txPower => 'TX Potenza (dBm)';
@override
String get settings_txPowerHelper => '0 - 22';
@override
String get settings_txPowerInvalid => 'Potere TX non valido (0-22 dBm)';
@override
String get settings_longRange => 'Lungo Raggio';
@override
String get settings_fastSpeed => 'Velocità Rapida';
@override
String settings_error(String message) {
return 'Errore: $message';
}
@override
String get appSettings_title => 'Impostazioni App';
@override
String get appSettings_appearance => 'Aspetto';
@override
String get appSettings_theme => 'Tema';
@override
String get appSettings_themeSystem => 'Impostazione predefinita del sistema';
@override
String get appSettings_themeLight => 'Luce';
@override
String get appSettings_themeDark => 'Scuro';
@override
String get appSettings_language => 'Lingua';
@override
String get appSettings_languageSystem => 'Predefinito di sistema';
@override
String get appSettings_languageEn => 'English';
@override
String get appSettings_languageFr => 'Français';
@override
String get appSettings_languageEs => 'Español';
@override
String get appSettings_languageDe => 'Deutsch';
@override
String get appSettings_languagePl => 'Polski';
@override
String get appSettings_languageSl => 'Slovenščina';
@override
String get appSettings_languagePt => 'Português';
@override
String get appSettings_languageIt => 'Italiano';
@override
String get appSettings_languageZh => '中文';
@override
String get appSettings_languageSv => 'Svenska';
@override
String get appSettings_languageNl => 'Nederlands';
@override
String get appSettings_languageSk => 'Slovenčina';
@override
String get appSettings_languageBg => 'Български';
@override
String get appSettings_languageRu => 'Russo';
@override
String get appSettings_languageUk => 'Ucraino';
@override
String get appSettings_notifications => 'Notifiche';
@override
String get appSettings_enableNotifications => 'Abilita Notifiche';
@override
String get appSettings_enableNotificationsSubtitle =>
'Ricevi notifiche per messaggi e annunci';
@override
String get appSettings_notificationPermissionDenied =>
'Permesso di notifica negato';
@override
String get appSettings_notificationsEnabled => 'Notifiche abilitate';
@override
String get appSettings_notificationsDisabled => 'Notifiche disattivate';
@override
String get appSettings_messageNotifications => 'Notifiche Messaggi';
@override
String get appSettings_messageNotificationsSubtitle =>
'Mostra notifica all\'arrivo di nuovi messaggi';
@override
String get appSettings_channelMessageNotifications =>
'Notifiche Messaggi Canale';
@override
String get appSettings_channelMessageNotificationsSubtitle =>
'Mostra notifica all\'arrivo di messaggi nel canale';
@override
String get appSettings_advertisementNotifications =>
'Notifiche Pubblicitarie';
@override
String get appSettings_advertisementNotificationsSubtitle =>
'Mostra notifica quando vengono scoperti nuovi nodi';
@override
String get appSettings_messaging => 'Messaggi';
@override
String get appSettings_clearPathOnMaxRetry =>
'Cancella Percorso su Massimo Riprovo';
@override
String get appSettings_clearPathOnMaxRetrySubtitle =>
'Reimposta il percorso di contatto dopo 5 tentativi di invio falliti';
@override
String get appSettings_pathsWillBeCleared =>
'I percorsi verranno puliti dopo 5 tentativi falliti.';
@override
String get appSettings_pathsWillNotBeCleared =>
'I percorsi non verranno eliminati automaticamente.';
@override
String get appSettings_autoRouteRotation => 'Rotazione Percorso Automatico';
@override
String get appSettings_autoRouteRotationSubtitle =>
'Alterna tra i percorsi migliori e la modalità alluvione';
@override
String get appSettings_autoRouteRotationEnabled =>
'Rotazione percorso automatico abilitata';
@override
String get appSettings_autoRouteRotationDisabled =>
'Rotazione del percorso automatico disabilitata';
@override
String get appSettings_battery => 'Batteria';
@override
String get appSettings_batteryChemistry => 'Chimica della batteria';
@override
String appSettings_batteryChemistryPerDevice(String deviceName) {
return 'Impostazione per dispositivo ($deviceName)';
}
@override
String get appSettings_batteryChemistryConnectFirst =>
'Connetti a un dispositivo per scegliere';
@override
String get appSettings_batteryNone => 'No Battery (External Power)';
@override
String get appSettings_batteryLipo => 'LiPo (3,0-4,2V)';
@override
String get appSettings_batteryLifepo4 => 'LiFePO4 (2,6-3,65V)';
@override
String get appSettings_batteryLeadAcid => 'Lead Acid (12V)';
@override
String get appSettings_mapDisplay => 'Visualizzazione Mappa';
@override
String get appSettings_showRepeaters => 'Mostra Ripetitori';
@override
String get appSettings_showRepeatersSubtitle =>
'Mostra i nodi ripetitori sulla mappa';
@override
String get appSettings_showChatNodes => 'Mostra Nodi Chat';
@override
String get appSettings_showChatNodesSubtitle =>
'Mostra i nodi di chat sulla mappa';
@override
String get appSettings_showOtherNodes => 'Mostra altri nodi';
@override
String get appSettings_showOtherNodesSubtitle =>
'Mostra altri tipi di nodo sulla mappa';
@override
String get appSettings_timeFilter => 'Filtro Temporale';
@override
String get appSettings_timeFilterShowAll => 'Mostra tutti i nodi';
@override
String appSettings_timeFilterShowLast(int hours) {
return 'Mostra i nodi delle ultime $hours ore';
}
@override
String get appSettings_mapTimeFilter => 'Filtro Tempo Mappa';
@override
String get appSettings_showNodesDiscoveredWithin =>
'Mostra i nodi scoperti all\'interno di:';
@override
String get appSettings_allTime => 'Tutto il tempo';
@override
String get appSettings_lastHour => 'Ultima ora';
@override
String get appSettings_last6Hours => 'Ultimi 6 ore';
@override
String get appSettings_last24Hours => 'Ultime 24 ore';
@override
String get appSettings_lastWeek => 'La settimana scorsa';
@override
String get appSettings_offlineMapCache => 'Cache Mappa Offline';
@override
String get appSettings_noAreaSelected => 'Nessun\'area selezionata';
@override
String appSettings_areaSelectedZoom(int minZoom, int maxZoom) {
return 'Area selezionata (zoom $minZoom-$maxZoom)';
}
@override
String get appSettings_debugCard => 'Risoluzione dei problemi';
@override
String get appSettings_appDebugLogging => 'Registrazione Debug App';
@override
String get appSettings_appDebugLoggingSubtitle =>
'Messaggi di debug dell\'app Log per la risoluzione dei problemi';
@override
String get appSettings_appDebugLoggingEnabled =>
'Logging di debug dell\'app abilitato';
@override
String get appSettings_appDebugLoggingDisabled =>
'Logging del debug dell\'app disabilitato';
@override
String get contacts_title => 'Contatti';
@override
String get contacts_noContacts => 'Nessun contatto ancora';
@override
String get contacts_contactsWillAppear =>
'I contatti appariranno quando i dispositivi pubblicizzano.';
@override
String get contacts_searchContacts => 'Cerca contatti...';
@override
String get contacts_noUnreadContacts => 'Nessun contatto non letto';
@override
String get contacts_noContactsFound => 'Nessun contatto o gruppo trovato.';
@override
String get contacts_deleteContact => 'Elimina Contatto';
@override
String contacts_removeConfirm(String contactName) {
return 'Eliminare $contactName dai contatti?';
}
@override
String get contacts_manageRepeater => 'Gestisci Ripetitore';
@override
String get contacts_manageRoom => 'Gestisci Server Camera';
@override
String get contacts_roomLogin => 'Login Camera';
@override
String get contacts_openChat => 'Apri Chat';
@override
String get contacts_editGroup => 'Modifica Gruppo';
@override
String get contacts_deleteGroup => 'Elimina Gruppo';
@override
String contacts_deleteGroupConfirm(String groupName) {
return 'Eliminare \"$groupName\"?';
}
@override
String get contacts_newGroup => 'Nuovo Gruppo';
@override
String get contacts_groupName => 'Nome gruppo';
@override
String get contacts_groupNameRequired => 'Il nome del gruppo è obbligatorio.';
@override
String contacts_groupAlreadyExists(String name) {
return 'Il gruppo \"$name\" esiste già.';
}
@override
String get contacts_filterContacts => 'Filtra i contatti...';
@override
String get contacts_noContactsMatchFilter =>
'Nessun contatto corrisponde al tuo filtro';
@override
String get contacts_noMembers => 'Nessun membro';
@override
String get contacts_lastSeenNow => 'Ultimo avvistamento ora';
@override
String contacts_lastSeenMinsAgo(int minutes) {
return 'Ultimo visto $minutes minuti fa';
}
@override
String get contacts_lastSeenHourAgo => 'Ultimo visto 1 ora fa';
@override
String contacts_lastSeenHoursAgo(int hours) {
return 'Ultimo visto $hours ore fa';
}
@override
String get contacts_lastSeenDayAgo => 'Ultimo visto 1 giorno fa';
@override
String contacts_lastSeenDaysAgo(int days) {
return 'Ultimo visto $days giorni fa';
}
@override
String get channels_title => 'Canali';
@override
String get channels_noChannelsConfigured => 'Nessun canale configurato';
@override
String get channels_addPublicChannel => 'Aggiungi Canale Pubblico';
@override
String get channels_searchChannels => 'Cerca canali...';
@override
String get channels_noChannelsFound => 'Nessun canale trovato';
@override
String channels_channelIndex(int index) {
return 'Canale $index';
}
@override
String get channels_hashtagChannel => 'Canale hashtag';
@override
String get channels_public => 'Pubblico';
@override
String get channels_private => 'Privato';
@override
String get channels_publicChannel => 'Canale pubblico';
@override
String get channels_privateChannel => 'Canale privato';
@override
String get channels_editChannel => 'Modifica canale';
@override
String get channels_deleteChannel => 'Elimina canale';
@override
String channels_deleteChannelConfirm(String name) {
return 'Eliminare \"$name\"? Non può essere annullato.';
}
@override
String channels_channelDeleted(String name) {
return 'Canale \"$name\" eliminato';
}
@override
String get channels_addChannel => 'Aggiungi Canale';
@override
String get channels_channelIndexLabel => 'Indice Canale';
@override
String get channels_channelName => 'Nome canale';
@override
String get channels_usePublicChannel => 'Utilizza il canale pubblico';
@override
String get channels_standardPublicPsk => 'PSK pubblico standard';
@override
String get channels_pskHex => 'PSK (Hex)';
@override
String get channels_generateRandomPsk =>
'Genera una chiave di permutazione casuale';
@override
String get channels_enterChannelName => 'Inserisci un nome per il canale';
@override
String get channels_pskMustBe32Hex =>
'PSK deve essere composto da 32 caratteri esadecimali.';
@override
String channels_channelAdded(String name) {
return 'Canale \"$name\" aggiunto';
}
@override
String channels_editChannelTitle(int index) {
return 'Modifica Canale $index';
}
@override
String get channels_smazCompression => 'Compressione SMAZ';
@override
String channels_channelUpdated(String name) {
return 'Canale \"$name\" aggiornato';
}
@override
String get channels_publicChannelAdded => 'Canale pubblico aggiunto';
@override
String get channels_sortBy => 'Ordina per';
@override
String get channels_sortManual => 'Manuale';
@override
String get channels_sortAZ => 'A-Z';
@override
String get channels_sortLatestMessages => 'Ultimi messaggi';
@override
String get channels_sortUnread => 'Non letto';
@override
String get channels_createPrivateChannel => 'Crea un Canale Privato';
@override
String get channels_createPrivateChannelDesc =>
'Protetta con una chiave segreta.';
@override
String get channels_joinPrivateChannel => 'Unisciti a un Canale Privato';
@override
String get channels_joinPrivateChannelDesc =>
'Inserire manualmente una chiave segreta.';
@override
String get channels_joinPublicChannel => 'Unisciti al Canale Pubblico';
@override
String get channels_joinPublicChannelDesc =>
'Chiunque può unirsi a questo canale.';
@override
String get channels_joinHashtagChannel => 'Unisciti a un Canale con Hashtag';
@override
String get channels_joinHashtagChannelDesc =>
'Chiunque può unirsi ai canali hashtag.';
@override
String get channels_scanQrCode => 'Scansiona un codice QR';
@override
String get channels_scanQrCodeComingSoon => 'Arriverà presto';
@override
String get channels_enterHashtag => 'Inserisci hashtag';
@override
String get channels_hashtagHint => 'es. #team';
@override
String get chat_noMessages => 'Nessun messaggio ancora';
@override
String get chat_sendMessageToStart => 'Invia un messaggio per iniziare';
@override
String get chat_originalMessageNotFound => 'Messaggio originale non trovato';
@override
String chat_replyingTo(String name) {
return 'Rispondere a $name';
}
@override
String chat_replyTo(String name) {
return 'Rispondi a $name';
}
@override
String get chat_location => 'Posizione';
@override
String chat_sendMessageTo(String contactName) {
return 'Invia un messaggio a $contactName';
}
@override
String get chat_typeMessage => 'Digita un messaggio...';
@override
String chat_messageTooLong(int maxBytes) {
return 'Messaggio troppo lungo (massimo $maxBytes byte).';
}
@override
String get chat_messageCopied => 'Messaggio copiato';
@override
String get chat_messageDeleted => 'Messaggio eliminato';
@override
String get chat_retryingMessage => 'Riprovo';
@override
String chat_retryCount(int current, int max) {
return 'Riprova $current/$max';
}
@override
String get chat_sendGif => 'Invia GIF';
@override
String get chat_reply => 'Rispondi';
@override
String get chat_addReaction => 'Aggiungi Reazione';
@override
String get chat_me => 'Me';
@override
String get emojiCategorySmileys => 'Emoji';
@override
String get emojiCategoryGestures => 'Gesti';
@override
String get emojiCategoryHearts => 'Cuori';
@override
String get emojiCategoryObjects => 'Oggetti';
@override
String get gifPicker_title => 'Scegli un GIF';
@override
String get gifPicker_searchHint => 'Cerca GIF...';
@override
String get gifPicker_poweredBy => 'Potenziato da GIPHY';
@override
String get gifPicker_noGifsFound => 'Nessun GIF trovato';
@override
String get gifPicker_failedLoad => 'Impossibile caricare i GIF';
@override
String get gifPicker_failedSearch => 'Impossibile trovare GIF';
@override
String get gifPicker_noInternet => 'Nessuna connessione internet';
@override
String get debugLog_appTitle => 'Log di Debug dell\'App';
@override
String get debugLog_bleTitle => 'Log di Debug BLE';
@override
String get debugLog_copyLog => 'Copia log';