forked from zulip/zulip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdjango.po
6998 lines (5709 loc) · 264 KB
/
django.po
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Alessio Schreiber <[email protected]>, 2019
# Alya Abbott <[email protected]>, 2021
# Andrea, 2020-2024
# Andrea, 2018-2020
# f8749da976f048caab67f4576e6917dd_702b491 <83e87024d93e3b2042feb789a51687b3_802114>, 2019
# Davide Quagliotto, 2024
# 8d821b430c6446b8644f76c07c39dc73, 2019
# Matteo Piotto <[email protected]>, 2020
# Maxxer <[email protected]>, 2023
# Maxxer <[email protected]>, 2021
# Paolo Midali <[email protected]>, 2018-2019
# Tim Abbott <[email protected]>, 2023-2024
msgid ""
msgstr ""
"Project-Id-Version: Zulip\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-06 19:37+0000\n"
"PO-Revision-Date: 2015-12-06 00:18+0000\n"
"Last-Translator: Andrea, 2020-2024\n"
"Language-Team: Italian (http://app.transifex.com/zulip/zulip/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#: analytics/views/stats.py:109 zerver/decorator.py:647
#: zerver/decorator.py:665
msgid "Not allowed for guest users"
msgstr "Non permesso agli utenti ospiti"
#: analytics/views/stats.py:160
msgid "Invalid organization"
msgstr "Organizzazione non valida"
#: analytics/views/stats.py:392
msgid "Public channels"
msgstr "Canali pubblici"
#: analytics/views/stats.py:393
msgid "Private channels"
msgstr "Canali privati"
#: analytics/views/stats.py:394
msgid "Direct messages"
msgstr "Messaggi privati"
#: analytics/views/stats.py:395
msgid "Group direct messages"
msgstr "Messaggi privati di gruppo"
#: analytics/views/stats.py:418
#, python-brace-format
msgid "Missing channel for chart: {chart_name}"
msgstr "Canale mancante per il grafico: {chart_name}"
#: analytics/views/stats.py:426
#, python-brace-format
msgid "Unknown chart name: {chart_name}"
msgstr "Nome del grafico sconosciuto: {chart_name}"
#: analytics/views/stats.py:436
#, python-brace-format
msgid "Start time is later than end time. Start: {start}, End: {end}"
msgstr "L'ora di inizio è successiva all'ora di fine. Inizio: {start}, Fine: {end}"
#: analytics/views/stats.py:458 analytics/views/stats.py:495
msgid "No analytics data available. Please contact your server administrator."
msgstr "Nessun dato analitico disponibile. Si prega di contattare l'amministratore del server."
#: corporate/lib/registration.py:35
#, python-brace-format
msgid ""
"Your organization has no Zulip licenses remaining and can no longer accept "
"new users. Please [increase the number of licenses]({billing_page_link}) or "
"[deactivate inactive users]({deactivate_user_help_page_link}) to allow new "
"users to join."
msgstr "La tua organizzazione non ha licenze Zulip rimanenti e non può più accettare nuovi utenti. Per favore [aumenta il numero di licenze]({billing_page_link}) o [disattiva gli utenti inattivi]({deactivate_user_help_page_link}) per consentire ai nuovi utenti di iscriversi."
#: corporate/lib/registration.py:42
#, python-brace-format
msgid ""
"Your organization has only one Zulip license remaining. You can [increase "
"the number of licenses]({billing_page_link}) or [deactivate inactive "
"users]({deactivate_user_help_page_link}) to allow more than one user to "
"join."
msgstr "La tua organizzazione ha solo una licenza Zulip rimanente. Puoi [aumentare il numero di licenze]({billing_page_link}) o [disattivare gli utenti inattivi]({deactivate_user_help_page_link}) per consentire a più di un utente di partecipare."
#: corporate/lib/registration.py:47
#, python-brace-format
msgid ""
"Your organization has only two Zulip licenses remaining. You can [increase "
"the number of licenses]({billing_page_link}) or [deactivate inactive "
"users]({deactivate_user_help_page_link}) to allow more than two users to "
"join."
msgstr "La tua organizzazione ha solo due licenze Zulip rimanenti. Puoi [aumentare il numero di licenze]({billing_page_link}) o [disattivare gli utenti inattivi]({deactivate_user_help_page_link}) per consentire a più di due utenti di partecipare."
#: corporate/lib/registration.py:52
#, python-brace-format
msgid ""
"Your organization has only three Zulip licenses remaining. You can [increase"
" the number of licenses]({billing_page_link}) or [deactivate inactive "
"users]({deactivate_user_help_page_link}) to allow more than three users to "
"join."
msgstr "La tua organizzazione ha solo tre licenze Zulip rimanenti. Puoi [aumentare il numero di licenze]({billing_page_link}) o [disattivare gli utenti inattivi]({deactivate_user_help_page_link}) per consentire a più di tre utenti di partecipare."
#: corporate/lib/registration.py:63
#, python-brace-format
msgid ""
"A new user ({email}) was unable to join because your organization does not "
"have enough Zulip licenses. To allow new users to join, make sure that the "
"[number of licenses for the current and next billing "
"period]({billing_page_link}) is greater than the current number of users."
msgstr ""
#: corporate/lib/registration.py:119
msgid ""
"Your organization does not have enough Zulip licenses. Invitations were not "
"sent."
msgstr ""
#: corporate/lib/registration.py:133
msgid ""
"Your organization does not have enough Zulip licenses to change a guest "
"user's role."
msgstr ""
#: corporate/lib/remote_billing_util.py:133
#: corporate/lib/remote_billing_util.py:169
msgid "Registration is deactivated"
msgstr "La registrazione è disattivata"
#: corporate/lib/remote_billing_util.py:166
msgid "Invalid remote server."
msgstr "Server remoto non valido."
#: corporate/lib/stripe.py:220
#, python-brace-format
msgid ""
"You must purchase licenses for all active users in your organization "
"(minimum {min_licenses})."
msgstr "È necessario acquistare licenze per tutti gli utenti attivi nella tua organizzazione (minimo {min_licenses})."
#: corporate/lib/stripe.py:226
#, python-brace-format
msgid ""
"Invoices with more than {max_licenses} licenses can't be processed from this"
" page. To complete the upgrade, please contact {email}."
msgstr "Le fatture con più di {max_licenses} licenze non possono essere elaborate da questa pagina. Per completare l'aggiornamento, contattare {email}."
#: corporate/lib/stripe.py:359
msgid "No payment method on file."
msgstr "Nessun metodo di pagamento registrato."
#: corporate/lib/stripe.py:367
#, python-brace-format
msgid "{brand} ending in {last4}"
msgstr "{brand} termina in {last4}"
#: corporate/lib/stripe.py:375
#, python-brace-format
msgid "Unknown payment method. Please contact {email}."
msgstr "Metodo di pagamento sconosciuto. Si prega di contattare {email}."
#: corporate/lib/stripe.py:408
#, python-brace-format
msgid "Something went wrong. Please contact {email}."
msgstr "Qualcosa è andato storto. Per favore contatta {email}."
#: corporate/lib/stripe.py:409
msgid "Something went wrong. Please reload the page."
msgstr "Qualcosa è andato storto. Si prega di ricaricare la pagina."
#: corporate/lib/stripe.py:505
msgid "Something went wrong. Please wait a few seconds and try again."
msgstr "Qualcosa è andato storto. Per favore attendi qualche secondo e riprova."
#: corporate/lib/stripe.py:1836
msgid "Please add a credit card before starting your free trial."
msgstr "Si prega di aggiungere una carta di credito prima di iniziare la prova gratuita."
#: corporate/lib/stripe.py:1858
msgid "Please add a credit card to schedule upgrade."
msgstr "Per favore aggiungi una carta di credito per pianificare l'aggiornamento."
#: corporate/lib/stripe.py:2894
msgid ""
"Unable to update the plan. The plan has been expired and replaced with a new"
" plan."
msgstr "Impossibile aggiornare il piano. Il piano è scaduto e sostituito con un nuovo piano."
#: corporate/lib/stripe.py:2899
msgid "Unable to update the plan. The plan has ended."
msgstr "Impossibile aggiornare il piano. Il piano è terminato."
#: corporate/lib/stripe.py:2967
msgid ""
"Cannot update licenses in the current billing period for free trial plan."
msgstr "Non è possibile aggiornare le licenze nel periodo di fatturazione corrente per il piano di prova gratuito."
#: corporate/lib/stripe.py:2972 corporate/lib/stripe.py:3000
msgid ""
"Unable to update licenses manually. Your plan is on automatic license "
"management."
msgstr "Impossibile aggiornare le licenze manualmente. Il tuo piano prevede la gestione automatica delle licenze."
#: corporate/lib/stripe.py:2978
#, python-brace-format
msgid ""
"Your plan is already on {licenses} licenses in the current billing period."
msgstr "Il tuo piano è già su licenze {licenses} nel periodo di fatturazione corrente."
#: corporate/lib/stripe.py:2983
msgid "You cannot decrease the licenses in the current billing period."
msgstr "Non è possibile ridurre le licenze nel periodo di fatturazione corrente."
#: corporate/lib/stripe.py:3009
msgid ""
"Cannot change the licenses for next billing cycle for a plan that is being "
"downgraded."
msgstr "Non è possibile modificare le licenze per il prossimo ciclo di fatturazione per un piano che sta venendo declassato."
#: corporate/lib/stripe.py:3015
#, python-brace-format
msgid ""
"Your plan is already scheduled to renew with {licenses_at_next_renewal} "
"licenses."
msgstr "Il tuo piano è già programmato per il rinnovo con licenze {licenses_at_next_renewal}."
#: corporate/lib/stripe.py:3039
#, python-brace-format
msgid ""
"You’ve already purchased {licenses_at_next_renewal} licenses for the next "
"billing period."
msgstr "Hai già acquistato {licenses_at_next_renewal} licenze per il prossimo periodo di fatturazione."
#: corporate/lib/stripe.py:3061
msgid "Nothing to change."
msgstr "Niente da cambiare."
#: corporate/lib/stripe.py:3311
msgid "No customer for this organization!"
msgstr "Nessun cliente per questa organizzazione!"
#: corporate/lib/stripe.py:3320
msgid "Session not found"
msgstr "Sessione non trovata"
#: corporate/lib/stripe.py:3326 zerver/decorator.py:191
msgid "Must be a billing administrator or an organization owner"
msgstr "Deve essere un responsabile della fatturazione o un proprietario dell'organizzazione"
#: corporate/lib/stripe.py:3337
msgid "Payment intent not found"
msgstr "Tentativo di pagamento non trovato"
#: corporate/lib/stripe.py:3340
msgid "Pass stripe_session_id or stripe_invoice_id"
msgstr "Pass stripe_session_id or stripe_invoice_id"
#: corporate/lib/stripe.py:4102
#, python-brace-format
msgid ""
"Your organization's request for sponsored hosting has been approved! You have been upgraded to {plan_name}, free of charge. {emoji}\n"
"\n"
"If you could {begin_link}list Zulip as a sponsor on your website{end_link}, we would really appreciate it!"
msgstr "La richiesta della tua organizzazione per l'hosting sponsorizzato è stata approvata! Sei stato aggiornato a {plan_name}, gratuitamente. {emoji}\n\nSe potessi {begin_link}indicare Zulip come sponsor sul tuo sito web{end_link}, saremmo davvero grati!"
#: corporate/views/billing_page.py:349
msgid "Parameter 'confirmed' is required"
msgstr "Il parametro 'confirmed' è richiesto"
#: corporate/views/remote_billing_page.py:136
msgid "Billing access token expired."
msgstr "L'accesso al token di fatturazione è scaduto."
#: corporate/views/remote_billing_page.py:138
msgid "Invalid billing access token."
msgstr "Token di accesso alla fatturazione non valido."
#: corporate/views/remote_billing_page.py:216
msgid ""
"Failed to migrate customer from server to realms. Please contact support for"
" assistance."
msgstr "Impossibile migrare il cliente dal server ai domini. Si prega di contattare il supporto per assistenza."
#: corporate/views/remote_billing_page.py:296
msgid "User account doesn't exist yet."
msgstr "L'account utente non esiste ancora."
#: corporate/views/remote_billing_page.py:301
#: corporate/views/remote_billing_page.py:735
msgid "You must accept the Terms of Service to proceed."
msgstr "Devi accettare i Termini di Servizio per procedere."
#: corporate/views/remote_billing_page.py:541
msgid ""
"This zulip_org_id is not registered with Zulip's billing management system."
msgstr "Questo zulip_org_id non è registrato nel sistema di gestione della fatturazione di Zulip."
#: corporate/views/remote_billing_page.py:548
msgid "Invalid zulip_org_key for this zulip_org_id."
msgstr "Chiave zulip_org_key non valida per questo zulip_org_id."
#: corporate/views/remote_billing_page.py:552
msgid "Your server registration has been deactivated."
msgstr "La registrazione del tuo server è stata disattivata."
#: corporate/views/support.py:387 zerver/views/streams.py:292
#: zerver/views/streams.py:296 zerver/views/streams.py:304
msgid "Invalid parameters"
msgstr "Parametri non validi"
#: templates/404.html:4 templates/4xx.html:4
#: templates/zerver/portico_error_pages/remote_realm_server_mismatch_error.html:4
msgid "Error"
msgstr "Errore"
#: templates/404.html:11
msgid "Page not found (404)"
msgstr "Pagina non trovata (404)"
#: templates/404.html:13 templates/4xx.html:37
#, python-format
msgid ""
"\n"
" If this error is unexpected, you can\n"
" <a href=\"mailto:%(support_email)s\">contact support</a>.\n"
" "
msgstr "\n Se questo errore è inaspettato, puoi\n <a href=\"mailto:%(support_email)s\">contatta il supporto</a>.\n "
#: templates/4xx.html:11
msgid "Access forbidden (403)"
msgstr "Accesso vietato (403)"
#: templates/4xx.html:13
msgid ""
"\n"
" Your request could not be completed because your\n"
" browser did not send the credentials required to authenticate\n"
" your access. To resolve this issue:\n"
" "
msgstr "\n Your request could not be completed because your\n browser did not send the credentials required to authenticate\n your access. To resolve this issue:\n "
#: templates/4xx.html:22
msgid ""
"\n"
" Make sure that your browser allows cookies for this site.\n"
" "
msgstr "\n Assicurati che il tuo browser consenta i cookie per questo sito.\n "
#: templates/4xx.html:27
msgid ""
"\n"
" Check for any browser privacy settings or extensions\n"
" that block Referer headers, and disable them for\n"
" this site.\n"
" "
msgstr "\n Check for any browser privacy settings or extensions\n that block Referer headers, and disable them for\n this site.\n "
#: templates/4xx.html:35
msgid "Method not allowed (405)"
msgstr "Metodo non consentito (405)"
#: templates/500.html:4 templates/500.html:16
#: zerver/actions/scheduled_messages.py:399 zerver/middleware.py:395
msgid "Internal server error"
msgstr "Internal server error"
#: templates/500.html:18
msgid ""
"\n"
" Your Zulip chat cannot be loaded because the server is experiencing technical difficulties.\n"
" "
msgstr "\n La chat di Zulip non può essere caricata perché il server ha difficoltà tecniche.\n "
#: templates/500.html:23
msgid ""
"\n"
" This page will reload automatically when service is restored.\n"
" "
msgstr "\n Questa pagina verrà ricaricata automaticamente quando il servizio verrà ripristinato.\n "
#: templates/500.html:27
#, python-format
msgid ""
"\n"
" In the meantime, you can <a href=\"mailto:%(support_email)s\">contact Zulip support</a>.\n"
" "
msgstr "\n Nel frattempo, puoi<a href=\"mailto:%(support_email)s\">contattare il supporto Zulip</a>.\n "
#: templates/500.html:31
#, python-format
msgid ""
"\n"
" In the meantime, you can <a href=\"mailto:%(support_email)s\">contact\n"
" this server's administrators</a> for support.\n"
" "
msgstr "\n In the meantime, you can <a href=\"mailto:%(support_email)s\">contact\n this server's administrators</a> for support.\n "
#: templates/500.html:39
#, python-format
msgid ""
"\n"
" If you administer this server, you may want to check out the\n"
" <a href=\"%(troubleshooting_url)s\">Zulip server troubleshooting guide</a>.\n"
" "
msgstr "\n Se amministri questo server, potresti voler controllare la\n <a href=\"%(troubleshooting_url)s\">Guida alla risoluzione dei problemi del server Zulip</a>.\n "
#: templates/analytics/stats.html:6
#, python-format
msgid ""
"\n"
" Analytics for %(target_name)s | Zulip\n"
" "
msgstr "\n Analisi per %(target_name)s | Zulip\n "
#: templates/analytics/stats.html:18
msgid "Analytics are fully available 24 hours after organization creation."
msgstr "Le statistiche sono completamente disponibili 24 ore dopo la creazione dell'organizzazione."
#: templates/analytics/stats.html:23
#, python-format
msgid "Zulip analytics for %(target_name)s"
msgstr "Statistiche Zulip per %(target_name)s"
#: templates/analytics/stats.html:25
msgid "Organization summary"
msgstr "Riepilogo dell'organizzazione"
#: templates/analytics/stats.html:27
msgid "Number of users"
msgstr "Numero di utenti"
#: templates/analytics/stats.html:28
msgid "Users active during the last 15 days"
msgstr "Utenti attivi negli ultimi 15 giorni"
#: templates/analytics/stats.html:29
msgid "Number of guests"
msgstr "Numero di ospiti"
#: templates/analytics/stats.html:30
msgid "Total number of messages"
msgstr "Numero totali di messaggi"
#: templates/analytics/stats.html:31
msgid "Number of messages in the last 30 days"
msgstr "Numero di messaggi negli ultimi 30 giorni"
#: templates/analytics/stats.html:32
msgid "File storage in use"
msgstr "Archiviazione file in uso"
#: templates/analytics/stats.html:37
msgid "Active users"
msgstr "Utenti attivi"
#: templates/analytics/stats.html:40
msgid "Daily actives"
msgstr "Attivazioni giornaliere"
#: templates/analytics/stats.html:41
msgid "15 day actives"
msgstr "Attività di 15 giorni"
#: templates/analytics/stats.html:42
msgid "Total users"
msgstr "Totale utenti"
#: templates/analytics/stats.html:50
#: zerver/models/custom_profile_fields.py:104
msgid "Users"
msgstr "Utenti"
#: templates/analytics/stats.html:58
msgid "Messages sent by recipient type"
msgstr "Messaggi inviati per tipo di destinatario"
#: templates/analytics/stats.html:61 templates/analytics/stats.html:91
#: templates/analytics/stats.html:113 templates/analytics/stats.html:124
msgid "Me"
msgstr "Io"
#: templates/analytics/stats.html:62 templates/analytics/stats.html:115
#: templates/analytics/stats.html:125
msgid "Everyone"
msgstr "Tutti"
#: templates/analytics/stats.html:70 templates/analytics/stats.html:132
msgid "Last week"
msgstr "Scorsa settimana"
#: templates/analytics/stats.html:71 templates/analytics/stats.html:133
msgid "Last month"
msgstr "Il mese scorso"
#: templates/analytics/stats.html:72 templates/analytics/stats.html:134
msgid "Last year"
msgstr "L'anno scorso"
#: templates/analytics/stats.html:73 templates/analytics/stats.html:135
msgid "All time"
msgstr "Sempre"
#: templates/analytics/stats.html:78
msgid "Messages sent over time"
msgstr "Messaggi inviati nel tempo"
#: templates/analytics/stats.html:81 templates/analytics/stats.html:103
msgid "Daily"
msgstr "Giornalmente"
#: templates/analytics/stats.html:82 templates/analytics/stats.html:104
msgid "Weekly"
msgstr "Settimanale"
#: templates/analytics/stats.html:83 templates/analytics/stats.html:105
msgid "Cumulative"
msgstr "Cumulativo"
#: templates/analytics/stats.html:93
msgid "Humans"
msgstr "Umani"
#: templates/analytics/stats.html:95
msgid "Bots"
msgstr "Bot"
#: templates/analytics/stats.html:100
msgid "Messages read over time"
msgstr "Messaggi letti nel tempo"
#: templates/analytics/stats.html:121
msgid "Messages sent by client"
msgstr "Messaggi inviati dal client"
#: templates/analytics/stats.html:143
msgid "Last update"
msgstr "Ultimo aggiornamento"
#: templates/analytics/stats.html:144
msgid ""
"A full update of all the graphs happens once a day. The “messages sent over "
"time” graph is updated once an hour."
msgstr "Un aggiornamento completo di tutti i grafici avviene una volta al giorno. Il grafico “messaggi spediti nel tempo” viene aggiornato una volta ogni ora."
#: templates/confirmation/confirm_email_change.html:4
msgid "Email changed"
msgstr "E-mail modificata"
#: templates/confirmation/confirm_email_change.html:12
msgid "Email changed!"
msgstr "Email cambiata!"
#: templates/confirmation/confirm_email_change.html:16
#, python-format
msgid ""
"\n"
" This confirms that the email address for your Zulip account has changed\n"
" from %(old_email_html_tag)s to %(new_email_html_tag)s\n"
" "
msgstr "\n Questo conferma che il tuo indirizzo email dell'account Zulip è cambiato\n da %(old_email_html_tag)s a %(new_email_html_tag)s\n "
#: templates/confirmation/confirm_preregistrationuser.html:5
msgid "Confirming your email address"
msgstr "Conferma il tuo indirizzo email"
#: templates/confirmation/link_does_not_exist.html:4
msgid "Confirmation link does not exist"
msgstr "Il link di conferma non esiste"
#: templates/confirmation/link_does_not_exist.html:11
msgid "Whoops. We couldn't find your confirmation link in the system."
msgstr "Ops. Non siamo riusciti a trovare il tuo link di conferma nel sistema."
#: templates/confirmation/link_does_not_exist.html:13
#: templates/confirmation/link_malformed.html:14
#, python-format
msgid ""
"\n"
" Anyway, shoot us a line at %(support_email_html_tag)s and we'll get this resolved shortly.\n"
" "
msgstr "\n Anyway, shoot us a line at %(support_email_html_tag)s and we'll get this resolved shortly.\n "
#: templates/confirmation/link_expired.html:4
msgid "Confirmation link expired or deactivated"
msgstr "Link di conferma scaduto o disattivato"
#: templates/confirmation/link_expired.html:11
msgid "Whoops. The confirmation link has expired or been deactivated."
msgstr "Ops. Il link di conferma è scaduto o è stato disattivato."
#: templates/confirmation/link_expired.html:12
msgid "Please contact your organization administrator for a new link."
msgstr "Contatta l'amministratore della tua organizzazione per un nuovo collegamento."
#: templates/confirmation/link_malformed.html:4
msgid "Confirmation link malformed"
msgstr "Link di conferma non corretto"
#: templates/confirmation/link_malformed.html:11
msgid "Whoops. The confirmation link is malformed."
msgstr "Ops. Il collegamento di conferma non è corretto."
#: templates/confirmation/link_malformed.html:12
msgid ""
"Make sure you copied the link correctly in to your browser. If you're still "
"encountering this page, it's probably our fault. We're sorry."
msgstr "Assicurati di aver copiato correttamente il link nel tuo browser. Se stai ancora visualizzando questa pagina, probabilmente è colpa nostra. Ci dispiace."
#: templates/corporate/billing/billing.html:5
msgid "Billing"
msgstr "Fatturazione"
#: templates/corporate/billing/billing.html:419
#: templates/corporate/billing/billing.html:454
#: templates/corporate/billing/billing.html:487
#: templates/corporate/billing/billing.html:516
#: templates/corporate/billing/billing.html:542
#: templates/corporate/billing/billing.html:570
#: templates/corporate/billing/billing.html:604
#: templates/corporate/billing/upgrade.html:339
#: templates/zerver/change_email_address_visibility_modal.html:8
#: templates/zerver/development/email_log.html:33
msgid "Close modal"
msgstr "Chiudi finestra"
#: templates/corporate/billing/billing.html:439
#: templates/corporate/billing/billing.html:527
#: templates/corporate/billing/billing.html:555
#: templates/corporate/billing/billing.html:583
#: templates/corporate/billing/billing.html:620
msgid "Never mind"
msgstr "Non importa"
#: templates/corporate/billing/billing.html:441
#: templates/corporate/billing/billing.html:529
#: templates/corporate/billing/billing.html:557
msgid "Downgrade"
msgstr "Downgrade"
#: templates/corporate/billing/billing.html:472
#: templates/corporate/billing/billing.html:501
#: templates/corporate/billing/upgrade.html:357
#: templates/zerver/change_email_address_visibility_modal.html:26
msgid "Cancel"
msgstr "Annulla"
#: templates/corporate/billing/billing.html:474
#: templates/corporate/billing/billing.html:503
#: templates/corporate/billing/billing.html:622
#: templates/zerver/change_email_address_visibility_modal.html:28
msgid "Confirm"
msgstr "Confermare"
#: templates/corporate/billing/billing.html:585
msgid "Cancel upgrade"
msgstr "Annulla aggiornamento"
#: templates/corporate/billing/event_status.html:5
msgid "Billing status"
msgstr "Stato di fatturazione"
#: templates/corporate/billing/remote_billing_server_deactivate.html:5
msgid "Deactivate server registration?"
msgstr "Disattivare la registrazione del server?"
#: templates/corporate/billing/remote_realm_login_error_for_server_on_active_plan.html:4
#: templates/corporate/billing/remote_realm_login_error_for_server_on_active_plan.html:11
#: templates/corporate/billing/remote_server_login_error_for_any_realm_on_active_plan.html:4
#: templates/corporate/billing/remote_server_login_error_for_any_realm_on_active_plan.html:11
msgid "Plan management not available"
msgstr "Gestione del piano non disponibile"
#: templates/corporate/billing/remote_realm_login_error_for_server_on_active_plan.html:13
#, python-format
msgid ""
" Plan management is not available for this\n"
" organization, because your Zulip server is already on a\n"
" %(server_plan_name)s plan, which covers all\n"
" organizations on this server. See the <b>All versions</b> tab of the\n"
" <a href=\"https://zulip.com/help/self-hosted-billing#manage-billing\">log\n"
" in instructions</a> to administer the plan for your\n"
" Zulip server.\n"
" "
msgstr " La gestione del piano non è disponibile per questa\n organizzazione, perché il tuo server Zulip è già nel piano\n %(server_plan_name)s, il quale copre tutte\n le organizzazioni su questo server. Vedi la scheda <b>Tutte le versioni</b> del\n <a href=\"https://zulip.com/help/self-hosted-billing#manage-billing\">istruzioni\n per l'accesso </a>per amministrare il piano per il tuo\n Server Zulip.\n "
#: templates/corporate/billing/remote_realm_login_error_for_server_on_active_plan.html:23
msgid ""
" To move the plan from the server to this\n"
" organization, or for other questions, <a href=\"mailto:{{\n"
" support_email }}\">contact support</a>.\n"
" "
msgstr " Per spostare il piano dal server a questa \n organizzazione o per altre domande, <a href=\"mailto:{{\n support_email }}\">contatta l'assistenza</a>.\n "
#: templates/corporate/billing/remote_server_login_error_for_any_realm_on_active_plan.html:13
msgid ""
"\n"
" Plan management for this server is not available because at least one organization\n"
" hosted on this server already has an active plan.\n"
" "
msgstr "\n Plan management for this server is not available because at least one organization\n hosted on this server already has an active plan.\n "
#: templates/corporate/billing/remote_server_login_error_for_any_realm_on_active_plan.html:19
#, python-format
msgid ""
"\n"
" <a href=\"https://zulip.com/help/self-hosted-billing#manage-billing\">Log in</a> to plan management for your\n"
" organization instead, or <a href='mailto:%(support_email)s'>contact support</a> with any questions.\n"
" "
msgstr "\n <a href=\"https://zulip.com/help/self-hosted-billing#manage-billing\">Login</a>per pianificare la gestione della tua \n organizzazione invece, o<a href='mailto:%(support_email)s'>contatta il supporto</a>per qualsiasi domanda.\n "
#: templates/corporate/billing/remote_server_rate_limit_exceeded.html:4
#: templates/zerver/portico_error_pages/rate_limit_exceeded.html:4
msgid "Rate limit exceeded"
msgstr "Limite di tariffa superato"
#: templates/corporate/billing/remote_server_rate_limit_exceeded.html:11
#: templates/zerver/portico_error_pages/rate_limit_exceeded.html:11
msgid "Rate limit exceeded."
msgstr "Limite tariffa superato."
#: templates/corporate/billing/remote_server_rate_limit_exceeded.html:13
msgid ""
"Your server has exceeded the limit for how\n"
" often this action can be performed."
msgstr "Il tuo server ha superato il limite di come\n spesso questa azione può essere eseguita."
#: templates/corporate/billing/remote_server_rate_limit_exceeded.html:15
#: templates/zerver/portico_error_pages/rate_limit_exceeded.html:15
#, python-format
msgid "You can try again in %(retry_after)s seconds."
msgstr "Poi riprovare tra %(retry_after)s secondi."
#: templates/corporate/billing/upgrade.html:5
msgid "Upgrade"
msgstr "Upgrade"
#: templates/corporate/billing/upgrade.html:284
msgid "Convert demo organization before upgrading."
msgstr "Converti l'organizzazione demo prima dell'aggiornamento."
#: templates/corporate/billing/upgrade.html:361
msgid "Send invoice and start free trial"
msgstr "Invia la fattura e avvia la prova gratuita"
#: templates/corporate/billing/upgrade.html:363
msgid "Send invoice"
msgstr "Inviare la fattura"
#: templates/corporate/communities.html:28
msgid "Open communities directory"
msgstr "Directory delle comunità aperte"
#: templates/corporate/communities.html:39
#: templates/zerver/integrations/index.html:47
msgid "Filter by category"
msgstr "Filtra per categoria"
#: templates/corporate/communities.html:58
#: templates/zerver/integrations/index.html:76
msgid "Categories"
msgstr "Categorie"
#: templates/corporate/communities.html:60
#: templates/zerver/integrations/index.html:78
msgid "All"
msgstr "Tutto"
#: templates/corporate/comparison_table_integrated.html:103
msgid "10,000 messages"
msgstr "10.000 messaggi"
#: templates/corporate/comparison_table_integrated.html:107
#: templates/corporate/comparison_table_integrated.html:108
#: templates/corporate/comparison_table_integrated.html:109
#: templates/corporate/comparison_table_integrated.html:110
#: templates/corporate/comparison_table_integrated.html:118
#: templates/corporate/comparison_table_integrated.html:119
#: templates/corporate/comparison_table_integrated.html:120
#: templates/corporate/comparison_table_integrated.html:121
#: templates/corporate/comparison_table_integrated.html:131
#: templates/corporate/comparison_table_integrated.html:132
#: templates/corporate/comparison_table_integrated.html:133
#: templates/corporate/comparison_table_integrated.html:134
#: templates/corporate/comparison_table_integrated.html:144
#: templates/corporate/comparison_table_integrated.html:145
#: templates/corporate/comparison_table_integrated.html:146
#: templates/corporate/comparison_table_integrated.html:147
#: templates/corporate/comparison_table_integrated.html:157
#: templates/corporate/comparison_table_integrated.html:158
#: templates/corporate/comparison_table_integrated.html:159
#: templates/corporate/comparison_table_integrated.html:160
#: templates/corporate/comparison_table_integrated.html:171
#: templates/corporate/comparison_table_integrated.html:172
#: templates/corporate/comparison_table_integrated.html:173
#: templates/corporate/comparison_table_integrated.html:174
#: templates/corporate/comparison_table_integrated.html:185
#: templates/corporate/comparison_table_integrated.html:186
#: templates/corporate/comparison_table_integrated.html:187
#: templates/corporate/comparison_table_integrated.html:188
#: templates/corporate/comparison_table_integrated.html:198
#: templates/corporate/comparison_table_integrated.html:199
#: templates/corporate/comparison_table_integrated.html:200
#: templates/corporate/comparison_table_integrated.html:201
#: templates/corporate/comparison_table_integrated.html:283
#: templates/corporate/comparison_table_integrated.html:284
#: templates/corporate/comparison_table_integrated.html:285
msgid "Unlimited"
msgstr "Illimitato"
#: templates/corporate/comparison_table_integrated.html:153
msgid "Files up to 10 MB"
msgstr "File fino a 10 MB"
#: templates/corporate/comparison_table_integrated.html:154
#: templates/corporate/comparison_table_integrated.html:155
msgid "Files up to 1 GB"
msgstr "File fino a 1 GB"
#: templates/corporate/comparison_table_integrated.html:211
#: templates/corporate/comparison_table_integrated.html:212
#: templates/corporate/comparison_table_integrated.html:213
#: templates/corporate/comparison_table_integrated.html:214
#: templates/corporate/comparison_table_integrated.html:231
#: templates/corporate/comparison_table_integrated.html:232
#: templates/corporate/comparison_table_integrated.html:233
#: templates/corporate/comparison_table_integrated.html:245
#: templates/corporate/comparison_table_integrated.html:246
#: templates/corporate/comparison_table_integrated.html:247
#: templates/corporate/comparison_table_integrated.html:259
#: templates/corporate/comparison_table_integrated.html:260
#: templates/corporate/comparison_table_integrated.html:261
#: templates/corporate/comparison_table_integrated.html:272
#: templates/corporate/comparison_table_integrated.html:301
#: templates/corporate/comparison_table_integrated.html:302
#: templates/corporate/comparison_table_integrated.html:303
#: templates/corporate/comparison_table_integrated.html:304
#: templates/corporate/comparison_table_integrated.html:315
#: templates/corporate/comparison_table_integrated.html:316
#: templates/corporate/comparison_table_integrated.html:317
#: templates/corporate/comparison_table_integrated.html:318
#: templates/corporate/comparison_table_integrated.html:328
#: templates/corporate/comparison_table_integrated.html:329
#: templates/corporate/comparison_table_integrated.html:330
#: templates/corporate/comparison_table_integrated.html:331
#: templates/corporate/comparison_table_integrated.html:343
#: templates/corporate/comparison_table_integrated.html:344
#: templates/corporate/comparison_table_integrated.html:345
#: templates/corporate/comparison_table_integrated.html:346
#: templates/corporate/comparison_table_integrated.html:357
#: templates/corporate/comparison_table_integrated.html:358
#: templates/corporate/comparison_table_integrated.html:359
#: templates/corporate/comparison_table_integrated.html:360
#: templates/corporate/comparison_table_integrated.html:370
#: templates/corporate/comparison_table_integrated.html:371
#: templates/corporate/comparison_table_integrated.html:372
#: templates/corporate/comparison_table_integrated.html:373
#: templates/corporate/comparison_table_integrated.html:383
#: templates/corporate/comparison_table_integrated.html:384
#: templates/corporate/comparison_table_integrated.html:385
#: templates/corporate/comparison_table_integrated.html:386
#: templates/corporate/comparison_table_integrated.html:394
#: templates/corporate/comparison_table_integrated.html:395
#: templates/corporate/comparison_table_integrated.html:396
#: templates/corporate/comparison_table_integrated.html:397
#: templates/corporate/comparison_table_integrated.html:407
#: templates/corporate/comparison_table_integrated.html:408
#: templates/corporate/comparison_table_integrated.html:409
#: templates/corporate/comparison_table_integrated.html:410
#: templates/corporate/comparison_table_integrated.html:420
#: templates/corporate/comparison_table_integrated.html:421
#: templates/corporate/comparison_table_integrated.html:422
#: templates/corporate/comparison_table_integrated.html:423
#: templates/corporate/comparison_table_integrated.html:434
#: templates/corporate/comparison_table_integrated.html:435
#: templates/corporate/comparison_table_integrated.html:436
#: templates/corporate/comparison_table_integrated.html:437
#: templates/corporate/comparison_table_integrated.html:449
#: templates/corporate/comparison_table_integrated.html:450
#: templates/corporate/comparison_table_integrated.html:451
#: templates/corporate/comparison_table_integrated.html:452
#: templates/corporate/comparison_table_integrated.html:463
#: templates/corporate/comparison_table_integrated.html:464
#: templates/corporate/comparison_table_integrated.html:465
#: templates/corporate/comparison_table_integrated.html:476
#: templates/corporate/comparison_table_integrated.html:477
#: templates/corporate/comparison_table_integrated.html:478
#: templates/corporate/comparison_table_integrated.html:490
#: templates/corporate/comparison_table_integrated.html:491
#: templates/corporate/comparison_table_integrated.html:492
#: templates/corporate/comparison_table_integrated.html:511
#: templates/corporate/comparison_table_integrated.html:512
#: templates/corporate/comparison_table_integrated.html:513
#: templates/corporate/comparison_table_integrated.html:524
#: templates/corporate/comparison_table_integrated.html:525
#: templates/corporate/comparison_table_integrated.html:526
#: templates/corporate/comparison_table_integrated.html:537
#: templates/corporate/comparison_table_integrated.html:538
#: templates/corporate/comparison_table_integrated.html:539
#: templates/corporate/comparison_table_integrated.html:551
#: templates/corporate/comparison_table_integrated.html:552
#: templates/corporate/comparison_table_integrated.html:553
#: templates/corporate/comparison_table_integrated.html:566
#: templates/corporate/comparison_table_integrated.html:567
#: templates/corporate/comparison_table_integrated.html:568
#: templates/corporate/comparison_table_integrated.html:582
#: templates/corporate/comparison_table_integrated.html:583
#: templates/corporate/comparison_table_integrated.html:597
#: templates/corporate/comparison_table_integrated.html:598
#: templates/corporate/comparison_table_integrated.html:613
#: templates/corporate/comparison_table_integrated.html:614
#: templates/corporate/comparison_table_integrated.html:626
#: templates/corporate/comparison_table_integrated.html:627
#: templates/corporate/comparison_table_integrated.html:638
#: templates/corporate/comparison_table_integrated.html:653
#: templates/corporate/comparison_table_integrated.html:654
#: templates/corporate/comparison_table_integrated.html:655
#: templates/corporate/comparison_table_integrated.html:656
#: templates/corporate/comparison_table_integrated.html:666
#: templates/corporate/comparison_table_integrated.html:667
#: templates/corporate/comparison_table_integrated.html:668
#: templates/corporate/comparison_table_integrated.html:669
#: templates/corporate/comparison_table_integrated.html:681
#: templates/corporate/comparison_table_integrated.html:682
#: templates/corporate/comparison_table_integrated.html:683
#: templates/corporate/comparison_table_integrated.html:694
#: templates/corporate/comparison_table_integrated.html:695
#: templates/corporate/comparison_table_integrated.html:696
#: templates/corporate/comparison_table_integrated.html:709
#: templates/corporate/comparison_table_integrated.html:710
#: templates/corporate/comparison_table_integrated.html:722
#: templates/corporate/comparison_table_integrated.html:723
#: templates/corporate/comparison_table_integrated.html:740
#: templates/corporate/comparison_table_integrated.html:757
#: templates/corporate/comparison_table_integrated.html:771
#: templates/corporate/comparison_table_integrated.html:772
#: templates/corporate/comparison_table_integrated.html:787
#: templates/corporate/comparison_table_integrated.html:798
#: templates/corporate/comparison_table_integrated.html:808
#: templates/corporate/comparison_table_integrated.html:809
#: templates/corporate/comparison_table_integrated.html:820
#: templates/corporate/comparison_table_integrated.html:821
#: templates/corporate/comparison_table_integrated.html:822
#: templates/corporate/comparison_table_integrated.html:833
#: templates/corporate/comparison_table_integrated.html:834
#: templates/corporate/comparison_table_integrated.html:835
#: templates/corporate/comparison_table_integrated.html:847
#: templates/corporate/comparison_table_integrated.html:848
#: templates/corporate/comparison_table_integrated.html:864
#: templates/corporate/comparison_table_integrated.html:865
#: templates/corporate/comparison_table_integrated.html:866
#: templates/corporate/comparison_table_integrated.html:877
#: templates/corporate/comparison_table_integrated.html:878
#: templates/corporate/comparison_table_integrated.html:879
#: templates/corporate/comparison_table_integrated.html:890
#: templates/corporate/comparison_table_integrated.html:891
#: templates/corporate/comparison_table_integrated.html:892
#: templates/corporate/comparison_table_integrated.html:910
#: templates/corporate/comparison_table_integrated.html:911
#: templates/corporate/comparison_table_integrated.html:912
#: templates/corporate/comparison_table_integrated.html:925
#: templates/corporate/comparison_table_integrated.html:926
#: templates/corporate/comparison_table_integrated.html:927
#: templates/corporate/comparison_table_integrated.html:940
#: templates/corporate/comparison_table_integrated.html:941
#: templates/corporate/comparison_table_integrated.html:942
#: templates/corporate/comparison_table_integrated.html:953
#: templates/corporate/comparison_table_integrated.html:954
#: templates/corporate/comparison_table_integrated.html:955
#: templates/corporate/comparison_table_integrated.html:966
#: templates/corporate/comparison_table_integrated.html:967
#: templates/corporate/comparison_table_integrated.html:968
#: templates/corporate/comparison_table_integrated.html:979
#: templates/corporate/comparison_table_integrated.html:980
#: templates/corporate/comparison_table_integrated.html:981
#: templates/corporate/comparison_table_integrated.html:993
#: templates/corporate/comparison_table_integrated.html:994
#: templates/corporate/comparison_table_integrated.html:1004
#: templates/corporate/comparison_table_integrated.html:1005
#: templates/corporate/comparison_table_integrated.html:1006
#: templates/corporate/comparison_table_integrated.html:1007
#: templates/corporate/comparison_table_integrated.html:1022
#: templates/corporate/comparison_table_integrated.html:1023
#: templates/corporate/comparison_table_integrated.html:1024
#: templates/corporate/comparison_table_integrated.html:1025
#: templates/corporate/comparison_table_integrated.html:1037
#: templates/corporate/comparison_table_integrated.html:1038
#: templates/corporate/comparison_table_integrated.html:1039
#: templates/corporate/comparison_table_integrated.html:1040
#: templates/corporate/comparison_table_integrated.html:1052
#: templates/corporate/comparison_table_integrated.html:1053
#: templates/corporate/comparison_table_integrated.html:1054
#: templates/corporate/comparison_table_integrated.html:1055