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

pt_BR.js « l10n - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f109cfe30a9a80ec40a22fefe4b6e7f8c61b300c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
OC.L10N.register(
    "spreed",
    {
    "a conversation" : "uma conversa",
    "(Duration %s)" : "(Duração %s)",
    "You attended a call with {user1}" : "Você atendeu uma chamada com {user1}",
    "_%n guest_::_%n guests_" : ["%n convidado","%n convidados","%n convidados"],
    "You attended a call with {user1} and {user2}" : "Você atendeu uma chamada com {user1} e {user2}",
    "You attended a call with {user1}, {user2} and {user3}" : "Você atendeu uma chamada com {user1}, {user2} e {user3}",
    "You attended a call with {user1}, {user2}, {user3} and {user4}" : "Você atendeu uma chamada com {user1}, {user2}, {user3} e {user4}",
    "You attended a call with {user1}, {user2}, {user3}, {user4} and {user5}" : "Você atendeu uma chamada com {user1}, {user2}, {user3}, {user4} e {user5}",
    "_%n other_::_%n others_" : ["%n outro","%n outros","%n outros"],
    "{actor} invited you to {call}" : "{actor} convidou você para {call}",
    "You were invited to a <strong>conversation</strong> or had a <strong>call</strong>" : "Você foi convidado para uma <strong>conversa</strong> ou recebeu uma <strong>chamada</strong>",
    "Other activities" : "Outras atividades",
    "Talk" : "Falar",
    "Guest" : "Convidado",
    "Welcome to Nextcloud Talk!\nIn this conversation you will be informed about new features available in Nextcloud Talk." : "Bem-vindo ao Nextcloud Talk!\nNesta conversa, você será informado sobre os novos recursos disponíveis no Nextcloud Talk.",
    "New in Talk %s" : "Novo na Conferência %s",
    "- Microsoft Edge and Safari can now be used to participate in audio and video calls" : "- Agora o Microsoft Edge e o Safari podem ser usados para participar de chamadas de áudio e vídeo",
    "- One-to-one conversations are now persistent and cannot be turned into group conversations by accident anymore. Also when one of the participants leaves the conversation, the conversation is not automatically deleted anymore. Only if both participants leave, the conversation is deleted from the server" : "- As conversas individuais agora são persistentes e não podem mais ser transformadas em conversas em grupo por acidente. Além disso, quando um dos participantes sai da conversa, a conversa não é mais excluída automaticamente. Somente se ambos os participantes saírem, a conversa será excluída do servidor ",
    "- You can now notify all participants by posting \"@all\" into the chat" : "- Agora você pode notificar todos os participantes postando \"@all\" no chat",
    "- With the \"arrow-up\" key you can repost your last message" : "- Com a tecla \"seta para cima\" você pode repostar sua última mensagem",
    "- Talk can now have commands, send \"/help\" as a chat message to see if your administrator configured some" : "- Agora o Talk pode ter comandos, envie \"/help\" como uma mensagem de chat para ver se o seu administrador configurou algum",
    "- With projects you can create quick links between conversations, files and other items" : "- Com projetos você pode criar links rápidos entre conversas, arquivos e outros itens",
    "- You can now mention guests in the chat" : "- Agora você pode mencionar convidados no chat",
    "- Conversations can now have a lobby. This will allow moderators to join the chat and call already to prepare the meeting, while users and guests have to wait" : "- As conversas agora podem ter um lobby. Isso permitirá que os moderadores participem do bate-papo e liguem já para preparar a reunião, enquanto os usuários e convidados terão que esperar",
    "- You can now directly reply to messages giving the other users more context what your message is about" : "- Agora você pode responder diretamente a mensagens, dando aos outros usuários mais contexto sobre o que é sua mensagem",
    "- Searching for conversations and participants will now also filter your existing conversations, making it much easier to find previous conversations" : "- A pesquisa de conversas e participantes agora também filtrará as conversas existentes, facilitando a localização de conversas anteriores.",
    "- You can now add custom user groups to conversations when the circles app is installed" : "- Agora você pode adicionar grupos de usuários personalizados a conversas quando o aplicativo de círculos estiver instalado",
    "- Check out the new grid and call view" : "- Confira a nova grade e visualização de chamadas",
    "- You can now upload and drag'n'drop files directly from your device into the chat" : "- Agora você pode enviar e arrastar arquivos diretamente do seu dispositivo para o chat",
    "- Shared files are now opened directly inside the chat view with the viewer apps" : "- Os arquivos compartilhados agora são abertos diretamente dentro da visualização de bate-papo com aplicativos visualizadores",
    "- You can now search for chats and messages in the unified search in the top bar" : "- Você pode buscar conversas e mensagens usando a pesquisa unificada na barra superior",
    "- Spice up your messages with emojis from the emoji picker" : "- Anime suas mensagens com emojis do seletor de emojis",
    "- You can now change your camera and microphone while being in a call" : "- Você pode mudar a câmera e o microfone enquanto está em uma chamada",
    "- Give your conversations some context with a description and open it up so logged in users can find it and join themselves" : "- Dê às suas conversas algum contexto com uma descrição e abra-as para que os usuários conectados possam encontrá-las e juntar-se a elas ",
    "- See a read status and send failed messages again" : "- Ver um status de leitura e enviar novamente as mensagens com falha",
    "- Raise your hand in a call with the R key" : "- Levante a mão com a tecla R durante uma chamada",
    "- Join the same conversation and call from multiple devices" : "- Junte-se à mesma conversa e ligue de vários dispositivos ",
    "- Send voice messages, share your location or contact details" : "- Envie mensagens de voz, compartilhe sua localização ou detalhes de contato ",
    "- Add groups to a conversation and new group members will automatically be added as participants" : "- Adicione grupos a uma conversa e novos membros do grupo serão automaticamente adicionados como participantes ",
    "- A preview of your audio and video is shown before joining a call" : "- Uma prévia de seu áudio e vídeo é mostrada antes de entrar em uma chamada",
    "- You can now blur your background in the newly designed call view" : "- Agora você pode desfocar seu plano de fundo na visualização de chamada recém-projetada",
    "- Moderators can now assign general and individual permissions to participants" : "- Os moderadores agora podem atribuir permissões gerais e individuais aos participantes",
    "- You can now react to chat message" : "- Agora você pode reagir à mensagem de bate-papo",
    "- In the sidebar you can now find an overview of the latest shared items" : "- Na barra lateral, agora você pode encontrar uma visão geral dos últimos itens compartilhados",
    "There are currently no commands available." : "Sem comandos disponíveis no momento.",
    "The command does not exist" : "O comando não existe",
    "An error occurred while running the command. Please ask an administrator to check the logs." : "Ocorreu um erro ao executar o comando. Por favor, peça a um administrador para verificar os logs.",
    "Talk updates ✅" : "Atualizações do Talk ✅",
    "Reaction deleted by author" : "Reação excluída pelo autor",
    "{actor} created the conversation" : "{actor} criou a conversa",
    "You created the conversation" : "Você criou uma conversa",
    "An administrator created the conversation" : "Um administrador criou a conversa",
    "{actor} renamed the conversation from \"%1$s\" to \"%2$s\"" : "{actor} renomeou a conversa de \"%1$s\" para \"%2$s\"",
    "You renamed the conversation from \"%1$s\" to \"%2$s\"" : "Você renomeou a conversa de \"%1$s\" para \"%2$s\"",
    "An administrator renamed the conversation from \"%1$s\" to \"%2$s\"" : "Um administrador renomeou a conversa \"%1$s\" para \"%2$s\"",
    "{actor} set the description" : "{actor} definir a descrição",
    "You set the description" : "Você define a descrição",
    "An administrator set the description" : "Um administrador definiu a descrição",
    "{actor} removed the description" : "{actor} removeu a descrição",
    "You removed the description" : "Você removeu a descrição",
    "An administrator removed the description" : "Um administrador removeu a descrição",
    "{actor} started a call" : "{actor} iniciou uma chamada",
    "You started a call" : "Você iniciou uma chamada",
    "{actor} joined the call" : "{actor} juntou-se à chamada",
    "You joined the call" : "Você juntou-se à uma chamada",
    "{actor} left the call" : "{actor} saiu da chamada",
    "You left the call" : "Você saiu da chamada",
    "{actor} unlocked the conversation" : "{actor} desbloqueou a conversa",
    "You unlocked the conversation" : "Você desbloqueou a conversa",
    "An administrator unlocked the conversation" : "Um administrador desbloqueou a conversa",
    "{actor} locked the conversation" : "{actor} bloqueou a conversa",
    "You locked the conversation" : "Você bloqueou a conversa",
    "An administrator locked the conversation" : "Um administrador bloqueou a conversa",
    "{actor} limited the conversation to the current participants" : "{actor} limitou a conversa aos atuais participantes",
    "You limited the conversation to the current participants" : "Você limitou a conversa aos atuais participantes",
    "An administrator limited the conversation to the current participants" : "Um administrador limitou a conversa aos atuais participantes",
    "{actor} opened the conversation to registered users" : "{actor} abriu a conversa aos usuários registrados",
    "You opened the conversation to registered users" : "Você abriu a conversa aos usuários registrados",
    "An administrator opened the conversation to registered users" : "Um administrador abriu a conversa aos usuários registrados",
    "{actor} opened the conversation to registered and guest app users" : "{actor} abriu a conversa aos usuários registrados e convidados do aplicativo",
    "You opened the conversation to registered and guest app users" : "Você abriu a conversa aos usuários registrados e convidados do aplicativo",
    "An administrator opened the conversation to registered and guest app users" : "Um administrador abriu a conversa aos usuários registrados e convidados do aplicativo",
    "The conversation is now open to everyone" : "A conversa está aberta a todos agora",
    "{actor} opened the conversation to everyone" : "{actor} abriu a conversa a todos",
    "You opened the conversation to everyone" : "Você abriu a conversa para todos",
    "{actor} restricted the conversation to moderators" : "{actor} restringiu a conversa aos moderadores",
    "You restricted the conversation to moderators" : "Você restringiu a conversa aos moderadores",
    "{actor} allowed guests" : "{actor} permitiu convidados",
    "You allowed guests" : "Você permitiu convidados",
    "An administrator allowed guests" : "Um administrador autorizou convidados",
    "{actor} disallowed guests" : "{actor} bloqueou convidados",
    "You disallowed guests" : "Você bloqueou convidados",
    "An administrator disallowed guests" : "Um administrador desautorizou convidados",
    "{actor} set a password" : "{actor} definiu uma senha",
    "You set a password" : "Você definiu uma senha",
    "An administrator set a password" : "Um administrador definiu uma senha",
    "{actor} removed the password" : "{actor} removeu a senha",
    "You removed the password" : "Você removeu a senha",
    "An administrator removed the password" : "Um administrador removeu a senha",
    "{actor} added {user}" : "{actor} adicionou {user}",
    "You joined the conversation" : "Você juntou-se à conversa",
    "{actor} joined the conversation" : "{actor} juntou-se à conversa",
    "You added {user}" : "Você adicionou {user}",
    "{actor} added you" : "{actor} adicionou você",
    "An administrator added you" : "Um administrador adicionou você",
    "An administrator added {user}" : "Um administrador adicionou {user}",
    "You left the conversation" : "Você saiu da conversa",
    "{actor} left the conversation" : "{actor} saiu da conversa",
    "{actor} removed {user}" : "{actor} removeu {user}",
    "You removed {user}" : "Você removeu {user}",
    "{actor} removed you" : "{actor} removeu você",
    "An administrator removed you" : "Um administrador excluiu você",
    "An administrator removed {user}" : "Um administrador removeu {user}",
    "{actor} invited {user}" : "{actor} convidou {user}",
    "You invited {user}" : "Você convidou {user}",
    "An administrator invited {user}" : "Um administrador convidou {user}",
    "{federated_user} accepted the invitation" : "{federated_user} aceitou o convite",
    "{actor} removed {federated_user}" : "{actor} removeu {federated_user}",
    "You removed {federated_user}" : "Você removeu {federated_user}",
    "An administrator removed {federated_user}" : "Um administrador removeu {federated_user}",
    "{federated_user} declined the invitation" : "{federated_user} recusou o convite",
    "{actor} added group {group}" : "{actor} grupo adicionado  {group}",
    "You added group {group}" : "Você adicionou um grupo  {group}",
    "An administrator added group {group}" : "Um administrador adicionou grupo  {group}",
    "{actor} removed group {group}" : "{actor} grupo removido  {group}",
    "You removed group {group}" : "Você removeu o grupo  {group}",
    "An administrator removed group {group}" : "Um administrador removeu um grupo {group}",
    "{actor} added circle {circle}" : "{actor} adicionou círculo {circle} ",
    "You added circle {circle}" : "{actor} adicionou círculo {circle} ",
    "An administrator added circle {circle}" : "Um administrador adicionou o círculo {circle} ",
    "{actor} removed circle {circle}" : "{actor} removeu o círculo {circle} ",
    "You removed circle {circle}" : "Você removeu o círculo {circle} ",
    "An administrator removed circle {circle}" : "Um administrador removeu o círculo {circle} ",
    "{actor} promoted {user} to moderator" : "{actor} promoveu {user} a moderador",
    "You promoted {user} to moderator" : "Você promoveu {user} à moderador",
    "{actor} promoted you to moderator" : "{actor} promoveu você à moderador",
    "An administrator promoted you to moderator" : "Um administrador promoveu você a moderador",
    "An administrator promoted {user} to moderator" : "Um administrador promoveu {user} a moderador",
    "{actor} demoted {user} from moderator" : "{actor} removeu {user} da moderação",
    "You demoted {user} from moderator" : "Você removeu {user} da moderação",
    "{actor} demoted you from moderator" : "{actor} removeu você da moderação",
    "An administrator demoted you from moderator" : "Um administrador removeu você da moderação",
    "An administrator demoted {user} from moderator" : "Um administrador removeu {user} da moderação",
    "{actor} shared a file which is no longer available" : "{actor} compartilhou um arquivo não mais disponível",
    "You shared a file which is no longer available" : "Você compartilhou um arquivo não mais disponível",
    "The shared location is malformed" : "O local compartilhado está malformado",
    "{actor} set up Matterbridge to synchronize this conversation with other chats" : "{actor} configurar Matterbridge para sincronizar esta conversa com outros bate papos",
    "You set up Matterbridge to synchronize this conversation with other chats" : "Você configura Matterbridge para sincronizar essa conversa com outros chats",
    "{actor} updated the Matterbridge configuration" : "{actor} atualizou a configuração Matterbridge",
    "You updated the Matterbridge configuration" : "Você atualizou a configuração Matterbridge",
    "{actor} removed the Matterbridge configuration" : "{actor} removeu a configuração Matterbridge",
    "You removed the Matterbridge configuration" : "Você removeu a configuração Matterbridge",
    "{actor} started Matterbridge" : "{actor} começou Matterbridge",
    "You started Matterbridge" : "Você começou Matterbridge",
    "{actor} stopped Matterbridge" : "{actor} parou Matterbridge",
    "You stopped Matterbridge" : "Você parou Matterbridge.",
    "{actor} deleted a message" : "{actor} excluiu uma mensagem",
    "You deleted a message" : "Você excluiu uma mensagem",
    "{actor} deleted a reaction" : "{actor} excluiu uma reação",
    "You deleted a reaction" : "Você excluiu uma reação",
    "_You set the message expiration to %n week_::_You set the message expiration to %n weeks_" : ["Você configurou a expiração da mensagem para %n semana","Você configurou a expiração da mensagem para %n semanas","Você configurou a expiração da mensagem para %n semanas"],
    "_You set the message expiration to %n day_::_You set the message expiration to %n days_" : ["Você configurou a expiração da mensagem para %n semana","Você configurou a expiração da mensagem para %n semanas","Você configurou a expiração da mensagem para %n semanas"],
    "_You set the message expiration to %n hour_::_You set the message expiration to %n hours_" : ["Você configurou a expiração da mensagem para %n hora","Você configurou a expiração da mensagem para %n horas","Você configurou a expiração da mensagem para %n horas"],
    "_{actor} set the message expiration to %n week_::_{actor} set the message expiration to %n weeks_" : ["{actor} configurou a expiração da mensagem para %n semana","{actor} configurou a expiração da mensagem para %n semanas","{actor} configurou a expiração da mensagem para %n semanas"],
    "_{actor} set the message expiration to %n day_::_{actor} set the message expiration to %n days_" : ["{actor} configurou a expiração da mensagem para %n dia","{actor} configurou a expiração da mensagem para %n dias","{actor} configurou a expiração da mensagem para %n dias"],
    "_{actor} set the message expiration to %n hour_::_{actor} set the message expiration to %n hours_" : ["{actor} configurou a expiração da mensagem para %n hora","{actor} configurou a expiração da mensagem para %n horas","{actor} configurou a expiração da mensagem para %n horas"],
    "{actor} disabled message expiration" : "{actor} desativou a expiração de mensagens",
    "You disabled message expiration" : "Você desativou a expiração de mensagens",
    "{actor} cleared the history of the conversation" : "{actor} limpou o histórico da conversa ",
    "You cleared the history of the conversation" : "Você limpou o histórico da conversa ",
    "{actor} closed the poll {poll}" : "{actor} fechou a enquete {poll}",
    "You closed the poll {poll}" : "Você fechou a enquete {poll}",
    "{actor} voted on the poll {poll}" : "{actor} votou na enquete {poll}",
    "You voted on the poll {poll}" : "Você votou na enquete {poll}",
    "Message deleted by author" : "Mensagem excluída pelo autor",
    "Message deleted by {actor}" : "Mensagem excluída por {actor}",
    "Message deleted by you" : "Mensagem excluída por você",
    "Deleted user" : "Usuário excluído",
    "%s (guest)" : "%s (convidado)",
    "You missed a call from {user}" : "Você perdeu uma ligação de {user}",
    "You tried to call {user}" : "Você tentou ligar para {user} ",
    "_Call with %n guest (Duration {duration})_::_Call with %n guests (Duration {duration})_" : ["Chamada com %n convidado (Duração {duration})","Chamada com %n convidados (Duração {duration})","Chamada com %n convidados (Duração {duration})"],
    "_{actor} ended the call with %n guest (Duration {duration})_::_{actor} ended the call with %n guests (Duration {duration})_" : ["{actor} terminou as chamadas com 1%n convidados (Duração {duration})%n","{actor} terminou a chamada com %n convidados (Duração {duration})","{actor} terminou a chamada com %n convidados (Duração {duration})"],
    "Call with {user1} and {user2} (Duration {duration})" : "Chamada com {user1} e {user2} (Duração {duration})",
    "{actor} ended the call with {user1} (Duration {duration})" : "{actor} terminou a chamada com {user1} (Duração {duration})",
    "{actor} ended the call with {user1} and {user2} (Duration {duration})" : "{actor} terminou a chamada com {user1} e {user2} (Duração {duration})",
    "Call with {user1}, {user2} and {user3} (Duration {duration})" : "Chamada com {user1}, {user2} e {user3} (Duração {duration})",
    "{actor} ended the call with {user1}, {user2} and {user3} (Duration {duration})" : "{actor} terminou a chamada com {user1}, {user2} e {user3} (Duração {duration})",
    "Call with {user1}, {user2}, {user3} and {user4} (Duration {duration})" : "Chamada com {user1}, {user2}, {user3} e {user4} (Duração {duration})",
    "{actor} ended the call with {user1}, {user2}, {user3} and {user4} (Duration {duration})" : "{actor} terminou a chamada com {user1}, {user2}, {user3} e {user4} (Duração {duration})",
    "Call with {user1}, {user2}, {user3}, {user4} and {user5} (Duration {duration})" : "Chamada com {user1}, {user2}, {user3}, {user4} e {user5} (Duração {duration})",
    "{actor} ended the call with {user1}, {user2}, {user3}, {user4} and {user5} (Duration {duration})" : "{actor} terminou a chamada com {user1}, {user2}, {user3}, {user4} e {user5} (Duração {duration})",
    "Talk to %s" : "Falar com %s",
    "File is not shared, or shared but not with the user" : "O arquivo não é compartilhado com o usuário ou nem é compartilhado",
    "No account available to delete." : "Não há contas a excluir.",
    "No image file provided" : "Nenhum arquivo de imagem fornecido",
    "File is too big" : "Arquivo muito grande",
    "Invalid file provided" : "O Arquivo fornecido é inválido",
    "Invalid image" : "Imagem inválida",
    "Unknown filetype" : "Tipo de arquivo desconhecido",
    "An error occurred. Please contact your admin." : "Um erro ocorreu. Entre em contato com seu administrador.",
    "Talk mentions" : "Menções na conversa",
    "Write to conversation" : "Escreva na conversa",
    "Writes event information into a conversation of your choice" : "Grava informações do evento em uma conversa de sua escolha",
    "%s invited you to a conversation." : "%s convidou você para uma conversa.",
    "You were invited to a conversation." : "Você foi convidado para uma conversa.",
    "Conversation invitation" : "Convite para conversa",
    "Click the button below to join." : "Clique no botão abaixo para juntar-se.",
    "Join »%s«" : "Juntar-se »%s«",
    "You can also dial-in via phone with the following details" : "Você também pode discar via telefone com os seguintes detalhes",
    "Dial-in information" : "Informação de discagem",
    "Meeting ID" : "ID da reunião",
    "Your PIN" : "Seu PIN",
    "Password request: %s" : "Pedido de senha: %s",
    "Private conversation" : "Conversa particular",
    "Deleted user (%s)" : "Excluir usuário (%s)",
    "{user1} shared room {roomName} on {remoteServer} with you" : "{user1} compartilhou a sala {roomName} em {remoteServer} com você ",
    "{user} in {call}" : "{user} em {call}",
    "Deleted user in {call}" : "Usuário excluído de {call}",
    "{guest} (guest) in {call}" : "{guest} (convidado) em {call}",
    "Guest in {call}" : "Convidado em {call}",
    "{user} sent you a private message" : "{user} te enviou uma mensagem privada",
    "{user} sent a message in conversation {call}" : "{user} enviou uma mensagem na conversa {call}",
    "A deleted user sent a message in conversation {call}" : "Um usuário excluído enviou uma mensagem na conversa {call}",
    "{guest} (guest) sent a message in conversation {call}" : "{guest} (guest) enviou uma mensagem na conversa {call}",
    "A guest sent a message in conversation {call}" : "Um convidado enviou uma mensagem na conversa {call}",
    "{user} replied to your private message" : "{user} respondeu a sua mensagem privada",
    "{user} replied to your message in conversation {call}" : "{user} respondeu à sua mensagem na conversa {call}",
    "A deleted user replied to your message in conversation {call}" : "Um usuário removido respondeu à sua mensagem na conversa {call}",
    "{guest} (guest) replied to your message in conversation {call}" : "{guest} (guest) respondeu sua mensagem na conversa {call}",
    "A guest replied to your message in conversation {call}" : "Um convidado respondeu à sua mensagem na conversa {call}",
    "{user} reacted with {reaction} to your private message" : "{user} reagiu com {reaction} à sua mensagem privada",
    "{user} reacted with {reaction} to your message in conversation {call}" : "{user} reagiu com {reaction} à sua mensagem na conversa {call}",
    "A deleted user reacted with {reaction} to your message in conversation {call}" : "Um usuário excluído reagiu com {reaction} à sua mensagem na conversa {call}",
    "{guest} (guest) reacted with {reaction} to your message in conversation {call}" : "{guest} (guest) reagiu com {reaction} à sua mensagem na conversa {call}",
    "A guest reacted with {reaction} to your message in conversation {call}" : "Um convidado reagiu com {reaction} à sua mensagem na conversa {call}",
    "{user} mentioned you in a private conversation" : "{user} mencionou você em uma conversa privada",
    "{user} mentioned you in conversation {call}" : "{user} citou você na conversa {call}",
    "A deleted user mentioned you in conversation {call}" : "Um usuário excluído citou você na conversa {call}",
    "{guest} (guest) mentioned you in conversation {call}" : "{guest} (guest) citou você na conversa {call}",
    "A guest mentioned you in conversation {call}" : "Um convidado citou você na conversa {call}",
    "View chat" : "Ver o chat",
    "{user} invited you to a private conversation" : "{user} convidou você para uma conversa privada",
    "Join call" : "Juntar-se à chamada",
    "{user} invited you to a group conversation: {call}" : "{user} convidou você para uma conversa em grupo: {call}",
    "Answer call" : "Atender chamada",
    "{user} would like to talk with you" : "{user} gostaria de falar com você",
    "Call back" : "Ligar de volta",
    "A group call has started in {call}" : "Uma chamada de grupo foi iniciada em {call}",
    "You missed a group call in {call}" : "Você perdeu uma ligação em grupo em {call}",
    "{email} is requesting the password to access {file}" : "{email} está solicitando a senha para acessar {file}",
    "{email} tried to request the password to access {file}" : "{email} tentou solicitar a senha para acessar {file}",
    "Someone is requesting the password to access {file}" : "Alguém está solicitando a senha para acessar {file}",
    "Someone tried to request the password to access {file}" : "Alguém tentou solicitar a senha para acessar {file}",
    "Open settings" : "Abrir as configurações",
    "The hosted signaling server is now configured and will be used." : "O servidor de sinalização hospedado está agora configurado e será usado.",
    "The hosted signaling server was removed and will not be used anymore." : "O servidor de sinalização hospedado foi removido e não será mais usado.",
    "The hosted signaling server account has changed the status from \"{oldstatus}\" to \"{newstatus}\"." : "O servidor de sinalização hospedado mudou seu status de \"{oldstatus}\" para \"{newstatus}\".",
    "Contact via Talk" : "Contato via Bate-Papo",
    "Open Talk" : "Abrir bate-papo",
    "Conversations" : "Conversas",
    "Messages" : "Mensagens",
    "{user}" : "{user}",
    "Messages in {conversation}" : "Mensagens em {conversation}",
    "{user} in {conversation}" : "{user} em {conversation}",
    "Messages in other conversations" : "Mensagens em outras conversas",
    "Failed to request trial because the trial server is unreachable. Please try again later." : "Falha ao solicitar a avaliação porque o servidor está inacessível. Tente novamente mais tarde.",
    "There is a problem with the authentication of this instance. Maybe it is not reachable from the outside to verify it's URL." : "Há um problema com a autenticação desta instância. Talvez não seja acessível externamente para verificar sua URL.",
    "Something unexpected happened." : "Algo inesperado aconteceu.",
    "The URL is invalid." : "A URL é inválida.",
    "An HTTPS URL is required." : "Uma URL HTTPS é necessária.",
    "The email address is invalid." : "O e-mail é inválido.",
    "The language is invalid." : "O idioma é inválido.",
    "The country is invalid." : "O país é inválido.",
    "There is a problem with the request of the trial. Please check your logs for further information." : "Há um problema com a solicitação da avaliação. Verifique os logs para obter mais informações.",
    "Too many requests are send from your servers address. Please try again later." : "Muitas solicitações foram enviadas do endereço do servidor. Tente novamente mais tarde.",
    "There is already a trial registered for this Nextcloud instance." : "Já existe uma avaliação registrada para esta instância do Nextcloud.",
    "Something unexpected happened. Please try again later." : "Algo inesperado aconteceu. Tente novamente mais tarde.",
    "Failed to request trial because the trial server behaved wrongly. Please try again later." : "Falha ao solicitar a avaliação porque o servidor de avaliação se comportou incorretamente. Tente novamente mais tarde.",
    "Trial requested but failed to get account information. Please check back later." : "Avaliação solicitada mas falhou ao obter informações da conta. Tente novamente mais tarde.",
    "There is a problem with the authentication of this request. Maybe it is not reachable from the outside to verify it's URL." : "Há um problema com a autenticação desta solicitação. Talvez não seja acessível externamente para verificar seu URL.",
    "Failed to fetch account information because the trial server behaved wrongly. Please check back later." : "Erro ao buscar informações da conta porque o servidor de avaliação se comportou incorretamente. Tente novamente mais tarde.",
    "There is a problem with fetching the account information. Please check your logs for further information." : "Há um problema ao buscar as informações da conta. Verifique os logs para obter mais informações.",
    "There is no such account registered." : "Não há registro desta conta.",
    "Failed to fetch account information because the trial server is unreachable. Please check back later." : "Falha ao buscar informações da conta porque o servidor de avaliação está inacessível. Por favor, volte mais tarde.",
    "Deleting the hosted signaling server account failed. Please check back later." : "A exclusão da conta do servidor de sinalização hospedada falhou. Tente novamente mais tarde.",
    "Failed to delete the account because the trial server behaved wrongly. Please check back later." : "Falha ao excluir a conta porque o servidor de avaliação se comportou incorretamente. Por favor, tente novamente mais tarde.",
    "There is a problem with deleting the account. Please check your logs for further information." : "Há um problema com a exclusão da conta. Verifique os logs para obter mais informações.",
    "Too many requests are sent from your servers address. Please try again later." : "Muitas solicitações são enviadas dos endereços dos seus servidores. Tente novamente mais tarde.",
    "Failed to delete the account because the trial server is unreachable. Please check back later." : "Falha ao excluir a conta porque o servidor de avaliação está inacessível. Tente novamente mais tarde.",
    "Andorra" : "Andorra",
    "United Arab Emirates" : "Emirados Árabes Unidos",
    "Afghanistan" : "Afeganistão",
    "Antigua and Barbuda" : "Antígua e Barbuda",
    "Anguilla" : "Anguila",
    "Albania" : "Albânia",
    "Armenia" : "Armênia",
    "Angola" : "Angola",
    "Antarctica" : "Antártica",
    "Argentina" : "Argentina",
    "American Samoa" : "Samoa Americana",
    "Austria" : "Áustria",
    "Australia" : "Austrália",
    "Aruba" : "Aruba",
    "Åland Islands" : "Ilhas Aland",
    "Azerbaijan" : "Azerbaijão",
    "Bosnia and Herzegovina" : "Bósnia e Herzegovina",
    "Barbados" : "Barbados",
    "Bangladesh" : "Bangladesh",
    "Belgium" : "Bélgica",
    "Burkina Faso" : "Burkina Faso",
    "Bulgaria" : "Bulgária",
    "Bahrain" : "Barém",
    "Burundi" : "Burundi",
    "Benin" : "Benin",
    "Saint Barthélemy" : "São Bartolomeu",
    "Bermuda" : "Bermudas",
    "Brunei Darussalam" : "Brunei Darussalam",
    "Bolivia, Plurinational State of" : "Bolívia, Estado Plurinacional da",
    "Bonaire, Sint Eustatius and Saba" : "Bonaire, Santo Eustáquio e Saba",
    "Brazil" : "Brasil",
    "Bahamas" : "Bahamas",
    "Bhutan" : "Butão",
    "Bouvet Island" : "Ilha Bouvet",
    "Botswana" : "Botsuana",
    "Belarus" : "Belarus",
    "Belize" : "Belize",
    "Canada" : "Canadá",
    "Cocos (Keeling) Islands" : "Ilhas Cocos (Keeling)",
    "Congo, the Democratic Republic of the" : "Congo, República Democrática do",
    "Central African Republic" : "República Centro-Africana",
    "Congo" : "Congo",
    "Switzerland" : "Suíça",
    "Côte d'Ivoire" : "Costa do Marfim",
    "Cook Islands" : "Ilhas Cook",
    "Chile" : "Chile",
    "Cameroon" : "Camarões",
    "China" : "China",
    "Colombia" : "Colômbia",
    "Costa Rica" : "Costa Rica",
    "Cuba" : "Cuba",
    "Cabo Verde" : "Cabo Verde",
    "Curaçao" : "Curaçao",
    "Christmas Island" : "Ilha do Natal",
    "Cyprus" : "Chipre",
    "Czechia" : "República Checa",
    "Germany" : "Alemanha",
    "Djibouti" : "Djibuti",
    "Denmark" : "Dinamarca",
    "Dominica" : "Dominica",
    "Dominican Republic" : "República Dominicana",
    "Algeria" : "Algéria",
    "Ecuador" : "Equador",
    "Estonia" : "Estônia",
    "Egypt" : "Egito",
    "Western Sahara" : "Saara Ocidental",
    "Eritrea" : "Eritréia",
    "Spain" : "Espanha",
    "Ethiopia" : "Etiópia",
    "Finland" : "Finlândia",
    "Fiji" : "Fiji",
    "Falkland Islands (Malvinas)" : "Ilhas Falkland (Malvinas)",
    "Micronesia, Federated States of" : "Micronésia, Estados Federados da",
    "Faroe Islands" : "ilhas Faroé",
    "France" : "França",
    "Gabon" : "Gabão",
    "United Kingdom of Great Britain and Northern Ireland" : "Reino Unido da Grã-Bretanha e Irlanda do Norte",
    "Grenada" : "Granada",
    "Georgia" : "Georgia",
    "French Guiana" : "Guiana Francesa",
    "Guernsey" : "Guernsey",
    "Ghana" : "Gana",
    "Gibraltar" : "Gibraltar",
    "Greenland" : "Groenlândia",
    "Gambia" : "Gâmbia",
    "Guinea" : "Guiné",
    "Guadeloupe" : "Guadalupe",
    "Equatorial Guinea" : "Guiné Equatorial",
    "Greece" : "Grécia",
    "South Georgia and the South Sandwich Islands" : "Geórgia do Sul e Ilhas Sandwich do Sul",
    "Guatemala" : "Guatemala",
    "Guam" : "Guam",
    "Guinea-Bissau" : "Guiné-Bissau",
    "Guyana" : "Guiana",
    "Hong Kong" : "Hong Kong",
    "Heard Island and McDonald Islands" : "Ilha Heard e Ilhas McDonald",
    "Honduras" : "Honduras",
    "Croatia" : "Croácia",
    "Haiti" : "Haiti",
    "Hungary" : "Hungria",
    "Indonesia" : "Indonésia",
    "Ireland" : "Irlanda",
    "Israel" : "Israel",
    "Isle of Man" : "Ilha de Man",
    "India" : "Índia",
    "British Indian Ocean Territory" : "Território Britânico do Oceano Índico",
    "Iraq" : "Iraque",
    "Iran, Islamic Republic of" : "Irã (Republic Islâmica do)",
    "Iceland" : "Islândia",
    "Italy" : "Itália",
    "Jersey" : "Jersey",
    "Jamaica" : "Jamaica",
    "Jordan" : "Jordânia",
    "Japan" : "Japão",
    "Kenya" : "Quênia",
    "Kyrgyzstan" : "Quirguistão",
    "Cambodia" : "Camboja",
    "Kiribati" : "Kiribati",
    "Comoros" : "Comores",
    "Saint Kitts and Nevis" : "São Cristóvão e Neves",
    "Korea, Democratic People's Republic of" : "Coreia, República Popular Democrática da",
    "Korea, Republic of" : "Coreia, República da",
    "Kuwait" : "Kuwait",
    "Cayman Islands" : "Ilhas Cayman",
    "Kazakhstan" : "Cazaquistão",
    "Lao People's Democratic Republic" : "República Popular Democrática do Laos",
    "Lebanon" : "Líbano",
    "Saint Lucia" : "Santa Lúcia",
    "Liechtenstein" : "Liechtenstein",
    "Sri Lanka" : "Sri Lanka",
    "Liberia" : "Libéria",
    "Lesotho" : "Lesoto",
    "Lithuania" : "Lituânia",
    "Luxembourg" : "Luxemburgo",
    "Latvia" : "Letônia",
    "Libya" : "Líbia",
    "Morocco" : "Marrocos",
    "Monaco" : "Mônaco",
    "Moldova, Republic of" : "Moldova, República da",
    "Montenegro" : "Montenegro",
    "Saint Martin (French part)" : "São Martinho (parte Francesa)",
    "Madagascar" : "Madagascar",
    "Marshall Islands" : "Ilhas Marshall",
    "Macedonia, the former Yugoslav Republic of" : "Macedônia, antiga República Iugoslava da",
    "Mali" : "Mali",
    "Myanmar" : "Myanmar",
    "Mongolia" : "Mongólia",
    "Macao" : "Macau",
    "Northern Mariana Islands" : "Ilhas Marianas do Norte",
    "Martinique" : "Martinica",
    "Mauritania" : "Mauritânia",
    "Montserrat" : "Montserrat",
    "Malta" : "Malta",
    "Mauritius" : "Maurício",
    "Maldives" : "Maldivas",
    "Malawi" : "Malawi",
    "Mexico" : "México",
    "Malaysia" : "Malásia",
    "Mozambique" : "Moçambique",
    "Namibia" : "Namíbia",
    "New Caledonia" : "Nova Caledônia",
    "Niger" : "Nigéria",
    "Norfolk Island" : "Ilha Norfolk",
    "Nigeria" : "Nigéria",
    "Nicaragua" : "Nicarágua",
    "Netherlands" : "Holanda",
    "Norway" : "Noruega",
    "Nepal" : "Nepal",
    "Nauru" : "Nauru",
    "Niue" : "Niuê",
    "New Zealand" : "Nova Zelândia",
    "Oman" : "Omã",
    "Panama" : "Panamá",
    "Peru" : "Peru",
    "French Polynesia" : "Polinésia Francesa",
    "Papua New Guinea" : "Papua Nova Guiné",
    "Philippines" : "Filipinas",
    "Pakistan" : "Paquistão",
    "Poland" : "Polônia",
    "Saint Pierre and Miquelon" : "São Pedro e Miquelão",
    "Pitcairn" : "Pitcairn",
    "Puerto Rico" : "Porto Rico",
    "Palestine, State of" : "Palestina, Estado da",
    "Portugal" : "Portugal",
    "Palau" : "Palau",
    "Paraguay" : "Paraguai",
    "Qatar" : "Catar",
    "Réunion" : "Reunião",
    "Romania" : "Romênia",
    "Serbia" : "Sérvia",
    "Russian Federation" : "Federação Russa",
    "Rwanda" : "Ruanda",
    "Saudi Arabia" : "Arábia Saudita",
    "Solomon Islands" : "Ilhas Salomão",
    "Seychelles" : "Seicheles",
    "Sudan" : "Sudão",
    "Sweden" : "Suécia",
    "Singapore" : "Cingapura",
    "Saint Helena, Ascension and Tristan da Cunha" : "Santa Helena, Ascensão e Tristão da Cunha",
    "Slovenia" : "Eslovênia",
    "Svalbard and Jan Mayen" : "Svalbard e Jan Mayen",
    "Slovakia" : "Eslováquia",
    "Sierra Leone" : "Serra Leoa",
    "San Marino" : "San Marino",
    "Senegal" : "Senegal",
    "Somalia" : "Somália",
    "Suriname" : "Suriname",
    "South Sudan" : "Sudão do Sul",
    "Sao Tome and Principe" : "São Tome e Príncipe",
    "El Salvador" : "El Salvador",
    "Sint Maarten (Dutch part)" : "São Martinho (parte Holandesa)",
    "Syrian Arab Republic" : "República Árabe da Síria",
    "Eswatini" : "Suazilândia",
    "Turks and Caicos Islands" : "Ilhas Turcas e Caicos",
    "Chad" : "Chade",
    "French Southern Territories" : "Territórios Franceses do Sul",
    "Togo" : "Togo",
    "Thailand" : "Tailândia",
    "Tajikistan" : "Tajiquistão",
    "Tokelau" : "Toquelau",
    "Timor-Leste" : "Timor-Leste",
    "Turkmenistan" : "Turcomenistão",
    "Tunisia" : "Tunísia",
    "Tonga" : "Tonganês",
    "Turkey" : "Turquia",
    "Trinidad and Tobago" : "Trinidade e Tobago",
    "Tuvalu" : "Tuvalu",
    "Taiwan, Province of China" : "Taiwan, Província da China",
    "Tanzania, United Republic of" : "Tanzânia, República Unida da",
    "Ukraine" : "Ucrânia",
    "Uganda" : "Uganda",
    "United States Minor Outlying Islands" : "Ilhas Menores Distantes dos Estados Unidos",
    "United States of America" : "Estados Unidos da America",
    "Uruguay" : "Uruguai",
    "Uzbekistan" : "Uzbequistão",
    "Holy See" : "Santa Sé",
    "Saint Vincent and the Grenadines" : "São Vicente e Granadinas",
    "Venezuela, Bolivarian Republic of" : "Venezuela, República Bolivariana da",
    "Virgin Islands, British" : "Ilhas Virgens, Britânicas",
    "Virgin Islands, U.S." : "Ilhas Virgens, U.S.",
    "Viet Nam" : "Vietnã",
    "Vanuatu" : "Vanuatu",
    "Wallis and Futuna" : "Wallis e Futuna",
    "Samoa" : "Samoa",
    "Yemen" : "Iêmen",
    "Mayotte" : "Maiote",
    "South Africa" : "África do Sul",
    "Zambia" : "Zâmbia",
    "Zimbabwe" : "Zimbábue",
    "Invalid date, date format must be YYYY-MM-DD" : "Data inválida, o formato deve ser YYYY-MM-DD",
    "Conversation not found" : "Conversa não encontrada",
    "Path is already shared with this room" : "O caminho já está compartilhando nesta sala",
    "Chat, video & audio-conferencing using WebRTC" : "Bate-papo, vídeo e audioconferência usando o WebRTC",
    "Chat, video & audio-conferencing using WebRTC\n\n* 💬 **Chat integration!** Nextcloud Talk comes with a simple text chat. Allowing you to share files from your Nextcloud and mentioning other participants.\n* 👥 **Private, group, public and password protected calls!** Just invite somebody, a whole group or send a public link to invite to a call.\n* 💻 **Screen sharing!** Share your screen with participants of your call. You just need to use Firefox version 66 (or newer), latest Edge or Chrome 72 (or newer, also possible using Chrome 49 with this [Chrome extension](https://chrome.google.com/webstore/detail/screensharing-for-nextclo/kepnpjhambipllfmgmbapncekcmabkol)).\n* 🚀 **Integration with other Nextcloud apps** like Files, Contacts and Deck. More to come.\n\nAnd in the works for the [coming versions](https://github.com/nextcloud/spreed/milestones/):\n* ✋ [Federated calls](https://github.com/nextcloud/spreed/issues/21), to call people on other Nextclouds" : "Bate papo, vídeo & audioconferência usando WebRTC\n\n* 💬 **Integração de bate-papo!** Nextcloud Talk vem com um simples bate-papo por texto. Permitindo que você compartilhe arquivos do seu Nextcloud e mencionando outros participantes.\n* 👥 **Chamadas privadas, em grupo, públicas e protegidas por senha!** Basta convidar alguém, um grupo inteiro ou enviar um link público para convidar para uma chamada.\n* 💻 **Compartilhamento de tela!** Compartilhe sua tela com os participantes da sua chamada. Você só precisa usar o Firefox versão 66 (ou mais recente), edge ou Chrome 72 (ou mais recente, também possível usando o Chrome 49 com esta [extensão do Chrome](https://chrome.google.com/webstore/detail/screensharing-for-nextclo/kepnpjhambipllfmgmbapncekcmabkol)).\n* 🚀 **Integração com outros aplicativos Nextcloud** como Arquivos, Contatos e Deck. Mais por vir.\n\nE nos trabalhos para as [próximas versões](https://github.com/nextcloud/spreed/milestones/):\n* ✋ [Chamadas federadas](https://github.com/nextcloud/spreed/issues/21), para chamar as pessoas em outros Nextclouds",
    "Navigating away from the page will leave the call in {conversation}" : "Se você sair da página, sairá da ligação com {conversa}",
    "Leave call" : "Sair da chamada",
    "Stay in call" : "Permanecer na chamada",
    "Duplicate session" : "Duplicar sessão",
    "Discuss this file" : "Discutir sobre este arquivo",
    "Share this file with others to discuss it" : "Compartilhe este arquivo com outros para discuti-lo",
    "Share this file" : "Compartilhar este arquivo",
    "Join conversation" : "Juntar-se à conversa",
    "Request password" : "Solicitar senha",
    "Error requesting the password." : "Erro ao solicitar a senha.",
    "This conversation has ended" : "Esta conversa acabou",
    "Limit to groups" : "Limitar a grupos",
    "When at least one group is selected, only people of the listed groups can be part of conversations." : "Quando pelo menos um grupo é selecionado, somente pessoas destes grupos podem fazer parte de conversas.",
    "Guests can still join public conversations." : "Convidados ainda podem juntar-se a conversas públicas.",
    "Users that cannot use Talk anymore will still be listed as participants in their previous conversations and also their chat messages will be kept." : "Os usuários que não podem mais usar a Conferência ainda serão listados como participantes em suas conversas anteriores e também suas mensagens de chat serão mantidas. ",
    "Limit using Talk" : "Limitar o uso do Talk",
    "Limit creating a public and group conversation" : "Limitar criar uma conversa pública ou de grupo",
    "Limit creating conversations" : "Limitar criar conversas",
    "Limit starting a call" : "Limitar iniciar uma chamada",
    "Limit starting calls" : "Limitar iniciar chamadas",
    "When a call has started, everyone with access to the conversation can join the call." : "Quando uma chamada é iniciada, todos que têm acesso à conversa podem ingressar na chamada.",
    "Everyone" : "Qualquer um",
    "Users and moderators" : "Usuários e moderadores",
    "Moderators only" : "Somente moderadores",
    "Disable calls" : "Desativar chamadas",
    "Save changes" : "Salvar alterações",
    "Saving …" : "Salvando...",
    "Saved!" : "Salvo!",
    "None" : "Nenhum",
    "User" : "Usuário",
    "Disabled" : "Desativado",
    "Moderators" : "Moderadores",
    "Users" : "Usuários",
    "Commands" : "Comandos",
    "Beta" : "Beta",
    "Name" : "Nome",
    "Command" : "Comando",
    "Script" : "Script",
    "Response to" : "Resposta para",
    "Enabled for" : "Ativado para",
    "Commands are a new beta feature in Nextcloud Talk. They allow you to run scripts on your Nextcloud server. You can define them with our command line interface. An example of a calculator script can be found in our {linkstart}documentation{linkend}." : "Comandos são um novo recurso beta no Nextcloud Talk. Eles permitem que você execute scripts no servidor Nextcloud. Você pode defini-los na interface de linha de comando. Um exemplo de script de calculadora pode ser encontrado em nossa {linkstart}documentação{linkend}.",
    "General settings" : "Configurações gerais",
    "Default notification settings" : "Configurações de notificação padrão",
    "Default group notification" : "Notificação padrão de grupo",
    "Default group notification for new groups" : "Notificação padrão de grupo para novos grupos",
    "Integration into other apps" : "Integração com outros aplicativos",
    "Allow conversations on files" : "Permitir conversas em arquivos",
    "Allow conversations on public shares for files" : "Permitir conversas em compartilhamentos públicos para arquivos",
    "All messages" : "Todas as mensagens",
    "@-mentions only" : "Somente @-mentions",
    "Off" : "Desligar",
    "Hosted high-performance backend" : "Infra-estrutura de alto desempenho hospedada",
    "Our partner Struktur AG provides a service where a hosted signaling server can be requested. For this you only need to fill out the form below and your Nextcloud will request it. Once the server is set up for you the credentials will be filled automatically. This will overwrite the existing signaling server settings." : "Nosso parceiro Struktur AG fornece um serviço no qual um servidor de sinalização hospedado pode ser solicitado. Para isso, você só precisa preencher o formulário abaixo e seu Nextcloud solicitará. Depois que o servidor estiver configurado para você, as credenciais serão preenchidas automaticamente. Isso substituirá as configurações existentes do servidor de sinalização.",
    "URL of this Nextcloud instance" : "URL desta instância Nextcloud",
    "Full name of the user requesting the trial" : "Nome completo do usuário que solicitou a avaliação",
    "Name of the user requesting the trial" : "Nome do usuário que solicitou a avaliação",
    "Email of the user" : "E-mail do usuário ",
    "Language" : "Idioma",
    "Country" : "País",
    "Request signaling server trial" : "Solicitar avaliação de servidor de sinalização",
    "You can see the current status of your hosted signaling server in the following table." : "Você pode ver o status atual do seu servidor de sinalização na tabela a seguir.",
    "Status" : "Status",
    "Created at" : "Criado em",
    "Expires at" : "Expira em",
    "Limits" : "Limites",
    "Delete the signaling server account" : "Excluir a conta do servidor de sinalização",
    "By clicking the button above the information in the form is sent to the servers of Struktur AG. You can find further information at {linkstart}spreed.eu{linkend}." : "Ao clicar no botão acima, as informações no formulário são enviadas para os servidores da Struktur AG. Você pode encontrar mais informações em {linkstart}spreed.eu{linkend}.",
    "Pending" : "Pendente",
    "Error" : "Erro",
    "Blocked" : "Bloqueado",
    "Active" : "Ativar",
    "Expired" : "Expirado",
    "The trial could not be requested. Please try again later." : "A avaliação não pôde ser solicitada. Tente novamente mais tarde.",
    "The account could not be deleted. Please try again later." : "Não foi possível excluir a conta. Tente novamente mais tarde.",
    "_%n user_::_%n users_" : ["%n usuário","%n usuários","%n usuários"],
    "Matterbridge integration" : "Integração Matterbridge",
    "Enable Matterbridge integration" : "Ativar a integração Matterbridge",
    "Downloading …" : "Baixando…",
    "Install Talk Matterbridge" : "Instalar Talk Matterbridge",
    "Installed version: {version}" : "Versão instalada: {version}",
    "You can install the Matterbridge to link Nextcloud Talk to some other services, visit their {linkstart1}GitHub page{linkend} for more details. Downloading and installing the app can take a while. In case it times out, please install it manually from the {linkstart2}Nextcloud App Store{linkend}." : "Você pode instalar o Matterbridge para vincular o Nextcloud Talk a alguns outros serviços, visite a {linkstart1}página do GitHub{linkend} para obter mais detalhes. Baixar e instalar o aplicativo pode demorar um pouco. Caso expire, instale-o manualmente a partir da {linkstart2}Nextcloud App Store{linkend}.",
    "Matterbridge binary has incorrect permissions. Please make sure the Matterbridge binary file is owned by the correct user and can be executed. It can be found in \"/.../nextcloud/apps/talk_matterbridge/bin/\"." : "O binário Matterbridge tem permissões incorretas. Certifique-se de que o arquivo binário Matterbridge pertence ao usuário correto e pode ser executado. Ele pode ser encontrado em \"/.../nextcloud/apps/talk_matterbridge/bin/\".",
    "Matterbridge binary was not found or couldn't be executed." : "O binário Matterbridge não foi encontrado ou não pôde ser executado.",
    "You can also set the path to the Matterbridge binary manually via the config. Check the {linkstart}Matterbridge integration documentation{linkend} for more information." : "Você também pode definir o caminho para o binário Matterbridge manualmente por meio da configuração. Verifique a {linkstart}documentação de integração do Matterbridge{linkend} para mais informações.",
    "An error occurred while installing the Matterbridge app." : "Ocorreu um erro ao instalar o aplicativo Matterbridge.",
    "An error occurred while installing the Talk Matterbridge. Please install it manually." : "Ocorreu um erro ao instalar o Talk Matterbridge. Instale-o manualmente.",
    "Failed to execute Matterbridge binary." : "Erro ao executar o binário Matterbridge.",
    "SIP configuration" : "Configuração SIP",
    "SIP configuration is only possible with a high-performance backend." : "A configuração SIP só é possível com um back-end de alto desempenho. ",
    "Restrict SIP configuration" : "Restringir configuração SIP",
    "Only users of the following groups can enable SIP in conversations they moderate" : "Apenas usuários dos grupos a seguir podem ativar o SIP em conversas que moderam",
    "Enable SIP configuration" : "Ativar configuração SIP",
    "Shared secret" : "Segredo compartilhado",
    "This information is sent in invitation emails as well as displayed in the sidebar to all participants." : "Estas informações são enviadas em e-mails de convite e também exibidas na barra lateral para todos os participantes.",
    "Phone number (Country)" : "Número do telefone (País)",
    "High-performance backend URL" : "URL da infra-estrutura de alto desempenho",
    "Validate SSL certificate" : "Validar o certificado SSL",
    "Delete this server" : "Excluir este servidor",
    "Status: Checking connection" : "Status: Verificando conexão",
    "OK: Running version: {version}" : "OK: Versão rodando: {version}",
    "Error: Cannot connect to server" : "Erro: Não foi possível conectar ao servidor",
    "Error: Server did not respond with proper JSON" : "Erro: Servidor não respondeu com o JSON apropriado",
    "Could not get version" : "Não foi possível obter a versão",
    "Error: Running version: {version}; Server needs to be updated to be compatible with this version of Talk" : "Erro: Versão em execução: {version}; O servidor precisa ser atualizado para ser compatível com esta versão do Talk",
    "Error: Server responded with: {error}" : "Erro: Servidor respondeu com: {error}",
    "Error: Unknown error occurred" : "Erro: Ocorreu um erro desconhecido",
    "High-performance backend" : "Infra-estrutura de alto desempenho",
    "Saved" : "Salvo",
    "Add a new server" : "Adicionar um novo servidor",
    "An external signaling server should optionally be used for larger installations. Leave empty to use the internal signaling server." : "Um servidor de sinalização externo pode ser usado opcionalmente para grandes instalações. Deixe em branco para usar o servidor de sinalização interno.",
    "Please note that calls with more than 4 participants without external signaling server, participants can experience connectivity issues and cause high load on participating devices." : "Note que nas chamadas com mais de 4 participantes sem servidor de sinalização externa, podem haver problemas de conectividade e causar alta carga nos dispositivos participantes.",
    "It is highly recommended to set up a distributed cache when using Nextcloud Talk together with a High Performance Back-end." : "É altamente recomendável configurar um cache distribuído ao usar o Nextcloud Talk em conjunto com um Back-end de Alto Desempenho.",
    "Don't warn about connectivity issues in calls with more than 4 participants" : "Não avisar sobre problemas de conectividade em chamadas com mais de 4 participantes",
    "STUN server URL" : "URL do servidor de STUN",
    "STUN servers" : "Servidores STUN",
    "A STUN server is used to determine the public IP address of participants behind a router." : "Um servidor STUN é usado para determinar o endereço IP público dos participantes por detrás de um roteador.",
    "TURN server schemes" : "Esquemas de servidor TURN",
    "{option1} and {option2}" : "{option1} e {option2}",
    "{option} only" : "{option} apenas",
    "TURN server URL" : "URL do servidor de TURN",
    "TURN server secret" : "Segredo do servidor TURN",
    "TURN server protocols" : "Protocolos do servidor TURN",
    "{schema} scheme must be used with a domain" : "{schema} o esquema deve ser usado com um domínio",
    "OK: Successful ICE candidates returned by the TURN server" : "OK: Candidatos ICE foram retornados pelo servidor TURN",
    "Error: No working ICE candidates returned by the TURN server" : "Erro: Nenhum candidato ICE foi retornado pelo servidor TURN",
    "Testing whether the TURN server returns ICE candidates" : "Testando para ver se o servidor TURN retorna candidatos ICE",
    "Test this server" : "Testar este servidor",
    "TURN servers" : "Servidores TURN",
    "A TURN server is used to proxy the traffic from participants behind a firewall. If individual participants cannot connect to others a TURN server is most likely required. See {linkstart}this documentation{linkend} for setup instructions." : "Um servidor TURN é usado como proxy do tráfego dos participantes por trás de um firewall. Se os participantes individuais não puderem se conectar a outros, provavelmente será necessário um servidor TURN. Consulte {linkstart} esta documentação {linkend} para obter instruções de configuração. ",
    "Web server setup checks" : "Verificações de configuração do servidor web",
    "Files required for background blur can be loaded" : "Os arquivos necessários para desfoque de fundo podem ser carregados",
    "Failed" : "Falhou",
    "OK" : "OK",
    "Checking …" : "Verificando …",
    "Failed: WebAssembly is disabled or not supported in this browser. Please enable WebAssembly or use a browser with support for it to do the check." : "Falha: WebAssembly está desativado ou não é compatível com este navegador. Habilite o WebAssembly ou use um navegador com suporte para fazer a verificação.",
    "Failed: \".wasm\" and \".tflite\" files were not properly returned by the web server. Please check \"System requirements\" section in Talk documentation." : "Falha: os arquivos \".wasm\" e \".tflite\" não foram retornados corretamente pelo servidor da web. Verifique a seção \"Requisitos do sistema\" na documentação do Talk.",
    "OK: \".wasm\" and \".tflite\" files were properly returned by the web server." : "OK: os arquivos \".wasm\" e \".tflite\" foram retornados corretamente pelo servidor da web.",
    "It seems that the PHP and Apache configuration is not compatible. Please note that PHP can only be used with the MPM_PREFORK module and PHP-FPM can only be used with the MPM_EVENT module." : "Parece que a configuração do PHP e do Apache não é compatível. Observe que o PHP só pode ser usado com o módulo MPM_PREFORK e o PHP-FPM só pode ser usado com o módulo MPM_EVENT.",
    "{nickName} raised their hand." : "{nickName} levantou a mão.",
    "A participant raised their hand." : "Um participante levantou a mão.",
    "Previous page of videos" : "Página anterior de vídeos",
    "Next page of videos" : "Próxima página de vídeos",
    "Collapse stripe" : "Recolher faixa",
    "Expand stripe" : "Expandir faixa",
    "Copy link" : "Copiar link",
    "Connecting …" : "Conectando …",
    "Waiting for others to join the call …" : "Esperando outros juntarem-se à chamada...",
    "You can invite others in the participant tab of the sidebar" : "Você pode convidar outros na guia do participante da barra lateral",
    "You can invite others in the participant tab of the sidebar or share this link to invite others!" : "Você pode convidar outros na guia \"Participantes\" da barra lateral ou compartilhar esse link para convidar outras pessoas!",
    "Share this link to invite others!" : "Compartilhe este link para convidar outros!",
    "Conversation link copied to clipboard" : "Link da conversa copiado para a área de transferência",
    "The link could not be copied" : "O link não pôde ser copiado",
    "Dismiss" : "Dispensar",
    "Show your screen" : "Exibir sua tela",
    "Stop screensharing" : "Parar de compartilhar tela",
    "Lower hand (R)" : "Abaixar a mão (R)",
    "More actions" : "Mais ações",
    "Devices settings" : "Configurações de dispositivos",
    "Raise hand (R)" : "Levantar a mão (R) ",
    "Blur background" : "Fundo desfocado",
    "Disable background blur" : "Desativar desfoque da tela de fundo ",
    "You are not allowed to enable audio" : "Você não tem permissão para habilitar o áudio",
    "No audio" : "Sem áudio",
    "Mute audio (M)" : "Silenciar áudio (M) ",
    "Unmute audio (M)" : "Ativar áudio (M) ",
    "Mute audio" : "Silenciar áudio",
    "Unmute audio" : "Tirar áudio do silencioso",
    "You are not allowed to enable video" : "Você não tem permissão para habilitar o vídeo",
    "No camera" : "Sem câmera",
    "Disable video (V)" : "Desativar vídeo (V) ",
    "Enable video (V)" : "Ativar vídeo (V) ",
    "Enable video (V) - Your connection will be briefly interrupted when enabling the video for the first time" : "Ativar vídeo (V) - Sua conexão será brevemente interrompida ao habilitar o vídeo pela primeira vez ",
    "Disable video" : "Desativar vídeo",
    "Enable video" : "Ativar vídeo",
    "Enable video. Your connection will be briefly interrupted when enabling the video for the first time" : "Ativar vídeo. Sua conexão será brevemente interrompida ao ativar o vídeo pela primeira vez",
    "You are not allowed to enable screensharing" : "Você não tem permissão para ativar o compartilhamento de tela",
    "No screensharing" : "Sem compartilhamento de tela",
    "Screensharing options" : "Opções de compartilhamento de tela",
    "Enable screensharing" : "Ativar compartilhamento de tela",
    "Bad sent video and screen quality." : "Má qualidade de vídeo e tela enviados.",
    "Bad sent screen quality." : "Má qualidade da tela enviada.",
    "Bad sent video quality." : "Má qualidade de vídeo enviada.",
    "Bad sent audio, video and screen quality." : "Má qualidade de áudio, vídeo e tela enviados.",
    "Bad sent audio and screen quality." : "Má qualidade de áudio e tela enviados.",
    "Bad sent audio and video quality." : "Má qualidade de áudio e vídeo enviados.",
    "Bad sent audio quality." : "Má qualidade de áudio enviada.",
    "Your internet connection or computer are busy and other participants might be unable to see your screen. To improve the situation try to disable the background blur or your video while doing a screen share." : "Sua conexão com a Internet ou computador estão ocupados e outros participantes podem não conseguir ver sua tela. Para melhorar a situação, tente desativar o desfoque de fundo ou seu vídeo ao fazer um compartilhamento de tela.",
    "Your internet connection or computer are busy and other participants might be unable to see your screen. To improve the situation try to disable your video while doing a screenshare." : "Sua conexão com a Internet ou computador estão ocupados e outros participantes podem não conseguir entendê-lo e ver sua tela. Para melhorar a situação, tente desativar o compartilhamento de tela. ",
    "Your internet connection or computer are busy and other participants might be unable to see your screen." : "Sua conexão à internet ou o computador estão ocupados e outros participantes podem não conseguir ver sua tela.",
    "Your internet connection or computer are busy and other participants might be unable to see you." : "Sua conexão à internet ou o computador estão ocupados e outros participantes podem não conseguir vê-lo.",
    "Your internet connection or computer are busy and other participants might be unable to understand and see you. To improve the situation try to disable the background blur or your video while doing a screenshare." : "Sua conexão com a Internet ou computador estão ocupados e outros participantes podem não conseguir entender e ver você. Para melhorar a situação, tente desativar o desfoque de fundo ou seu vídeo enquanto compartilha a tela. ",
    "Your internet connection or computer are busy and other participants might be unable to understand and see you. To improve the situation try to disable your video while doing a screenshare." : "Sua conexão à internet ou o computador estão ocupados e outros participantes podem não conseguir vê-lo e entendê-lo. Para melhorar isso, tente desativar seu vídeo ao compartilhar uma tela.",
    "Your internet connection or computer are busy and other participants might be unable to understand you and see your screen. To improve the situation try to disable your screenshare." : "Sua conexão com a Internet ou computador estão ocupados e outros participantes podem não conseguir entendê-lo e ver sua tela. Para melhorar a situação, tente desativar o compartilhamento de tela. ",
    "Disable screenshare" : "Desativar compartilhamento de tela",
    "Your internet connection or computer are busy and other participants might be unable to understand and see you. To improve the situation try to disable the background blur or your video." : "Sua conexão com a Internet ou computador estão ocupados e outros participantes podem não conseguir entender e ver você. Para melhorar a situação, tente desativar o desfoque de fundo ou seu vídeo. ",
    "Your internet connection or computer are busy and other participants might be unable to understand and see you. To improve the situation try to disable your video." : "Sua conexão à internet ou o computador estão ocupados e outros participantes podem não conseguir vê-lo e entendê-lo. Para melhorar isso, tente desativar seu vídeo.",
    "Your internet connection or computer are busy and other participants might be unable to understand you." : "Sua conexão à internet ou o computador estão ocupados e outros participantes podem não conseguir entendê-lo.",
    "Speaker view" : "Visualização de alto-falante",
    "Grid view" : "Vista em grade",
    "Screen sharing is not supported by your browser." : "O compartilhamento de tela não é suportado pelo seu navegador.",
    "Screen sharing requires the page to be loaded through HTTPS." : "O compartilhamento de tela exige que a página seja carregada por HTTPS.",
    "Screensharing requires the page to be loaded through HTTPS." : "O compartilhamento de tela requer que a página seja carregada através de HTTPS.",
    "Sharing your screen only works with Firefox version 52 or newer." : "Compartilhar sua tela só funciona com Firefox versão 52 ou superior.",
    "Screensharing extension is required to share your screen." : "Extensão Screensharing é necessária para compartilhar sua tela.",
    "Please use a different browser like Firefox or Chrome to share your screen." : "Por favor, utilize um navegador diferente, como Firefox ou Chrome para compartilhar sua tela.",
    "An error occurred while starting screensharing." : "Ocorreu um erro ao iniciar o compartilhamento de tela.",
    "Back" : "Voltar",
    "Access to camera was denied" : "O acesso à câmera foi negado",
    "Error while accessing camera: It is likely in use by another program" : "Erro ao acessar a câmera: provavelmente está sendo usada por outro programa",
    "Error while accessing camera" : "Erro ao acessar a câmera",
    "You have been muted by a moderator" : "Você foi silenciado por um moderador",
    "You" : "Você",
    "Connection could not be established …" : "Não foi possível estabelecer a conexão ...",
    "Connection was lost and could not be re-established …" : "A conexão foi perdida e não pôde ser restabelecida ...",
    "Connection could not be established. Trying again …" : "Não foi possível estabelecer a conexão. Tentando novamente …",
    "Connection lost. Trying to reconnect …" : "Conexão perdida. Tentando reconectar…",
    "Connection problems …" : "Problemas de conexão ...",
    "Show screen" : "Exibir tela",
    "Mute" : "Silenciar",
    "Stop following" : "Parar de seguir",
    "Conversation messages" : "Mensagens de conversa",
    "Post message" : "Postar mensagem",
    "You need to be logged in to upload files" : "Você precisa fazer login para enviar arquivos",
    "This conversation is read-only" : "Esta conversa é somente leitura",
    "Drop your files to upload" : "Arraste seus arquivos para enviar",
    "Call in progress" : "Chamada em andamento",
    "Favorite" : "Favorito",
    "Edit the default permissions for participants in this conversation. These settings do not affect moderators." : "Edite as permissões padrão para os participantes desta conversa. Essas configurações não afetam os moderadores.",
    "Warning: Every time permissions are modified in this section, custom permissions previously assigned to individual participants will be lost." : "Aviso: sempre que as permissões são modificadas nesta seção, as permissões personalizadas atribuídas anteriormente a participantes individuais serão perdidas.",
    "All permissions" : "Todas as permissões",
    "Participants have permissions to start a call, join a call, enable audio and video, and share screen." : "Os participantes têm permissão para iniciar uma chamada, ingressar em uma chamada, habilitar áudio e vídeo e compartilhar tela.",
    "Restricted" : "Restrita",
    "Participants can join calls, but cannot enable audio nor video nor share screen until a moderator manually grants them permissions." : "Os participantes podem entrar em chamadas, mas não podem habilitar áudio ou vídeo, nem compartilhar tela até que um moderador manualmente conceda a eles as permissões.",
    "Advanced permissions" : "Permissões avançadas",
    "Edit permissions" : "Editar permissões ",
    "Default permissions modified for {conversationName}" : "Permissões padrão modificadas para {conversationName}",
    "Could not modify default permissions for {conversationName}" : "Não foi possível modificar as permissões padrão para {conversationName}",
    "Conversation settings" : "Configurações da conversa",
    "Description" : "Descrição",
    "Enter a description for this conversation" : "Insira uma descrição para esta conversa ",
    "Notifications" : "Notificações",
    "Device check" : "Verificação de dispositivo",
    "Always show the device preview screen before joining a call in this conversation." : "Sempre mostre a tela de visualização do dispositivo antes de entrar em uma chamada nesta conversa.",
    "Guests access" : "Acesso de convidados",
    "Participants permissions" : "Permissões de participantes",
    "Meeting settings" : "Configurações da reunião",
    "Matterbridge" : "Matterbridge",
    "Danger zone" : "Zona de perigo",
    "Error while updating conversation description" : "Ocorreu um erro ao editar a descrição da conversa",
    "Be careful, these actions cannot be undone." : "Cuidado, estas ações não podem ser desfeitas.",
    "Leave conversation" : "Encerrar conversa",
    "Once a conversation is left, to rejoin a closed conversation, an invite is needed. An open conversation can be rejoined at any time." : "Depois que uma conversa é encerrada, para voltar a uma conversa encerrada, é necessário um convite. Uma conversa aberta pode ser retomada a qualquer momento. ",
    "Delete conversation" : "Excluir conversa",
    "Permanently delete this conversation." : "Exclua esta conversa permanentemente. ",
    "Delete chat messages" : "Excluir mensagens de bate-papo ",
    "Permanently delete all the messages in this conversation." : "Exclua permanentemente todas as mensagens desta conversa. ",
    "You need to promote a new moderator before you can leave the conversation." : "Você precisa promover um novo moderador antes de sair da conversa.",
    "Do you really want to delete \"{displayName}\"?" : "Quer realmente excluir \"{displayName}\"?",
    "Error while deleting conversation" : "Erro ao excluir a conversa",
    "Do you really want to delete all messages in \"{displayName}\"?" : "Você realmente deseja excluir todas as mensagens em  \"{displayName}\"?",
    "Delete all chat messages" : "Excluir todas as mensagens de bate-papo ",
    "Error while clearing chat history" : "Erro ao limpar o histórico de bate-papo ",
    "Allow guests to use a public link to join this conversation." : "Permite que convidados usem um link público para entrar nesta conversa.",
    "Allow guests" : "Permitir convidados",
    "Set a password to restrict who can use the public link." : "Definir uma senha para restringir quem pode usar o link público.",
    "Password protection" : "Proteger com senha",
    "Enter a password" : "Digite uma senha",
    "Save password" : "Salvar senha",
    "Copy conversation link" : "Copiar link da conversa",
    "Resend invitations" : "Reenviar convites",
    "Conversation password has been saved" : "A senha da conversa foi salva",
    "Conversation password has been removed" : "A senha da conversa foi removida",
    "Error occurred while saving conversation password" : "Ocorreu um erro ao salvar a senha da conversa",
    "Error occurred while allowing guests" : "Erro ocorrido ao permitir convidados",
    "Error occurred while disallowing guests" : "Erro ocorrido ao não permitir convidados",
    "Conversation link copied to clipboard." : "Link da conversa copiado para a área de transferência.",
    "The link could not be copied." : "O link não pôde ser copiado.",
    "Invitations sent" : "Convites enviados",
    "Error occurred when sending invitations" : "Ocorreu um erro ao enviar convites",
    "Open conversation to registered users" : "Conversa aberta a usuários registrados",
    "This conversation will be shown in search results" : "Esta conversa será mostrada nos resultados da pesquisa",
    "Also open to guest app users" : "Também abrir a usuários convidados do aplicativo",
    "Error occurred when opening or limiting the conversation" : "Ocorreu um erro ao abrir ou limitar a conversa",
    "Enabling the lobby only allows moderators to post messages." : "A ativação do lobby só permite que os moderadores postem mensagens.",
    "This will also remove non-moderators from the ongoing call." : "Isso também removerá os não moderadores da chamada em andamento.",
    "Enable lobby" : "Ativar lobby",
    "After the time limit the lobby will be automatically disabled." : "Após o limite de tempo o lobby será desativado automaticamente.",
    "Meeting start time" : "Hora de início da reunião",
    "Start time (optional)" : "Horário de início (opcional)",
    "Error occurred when restricting the conversation to moderator" : "Ocorreu um erro ao restringir a conversa ao moderador",
    "Error occurred when opening the conversation to everyone" : "Ocorreu um erro ao abrir a conversa para todos",
    "Start time has been updated" : "A hora de início foi atualizada",
    "Error occurred while updating start time" : "Ocorreu um erro ao atualizar a hora de início",
    "Locking the conversation prevents anyone to post messages or start calls." : "O bloqueio da conversa impede que qualquer pessoa poste mensagens ou inicie chamadas.",
    "This will also terminate the ongoing call." : "Isso também encerrará a chamada em andamento. ",
    "Lock conversation" : "Bloquear conversa",
    "Error occurred when locking the conversation" : "Ocorreu um erro ao bloquear a conversa",
    "Error occurred when unlocking the conversation" : "Ocorreu um erro ao desbloquear a conversa",
    "Save" : "Salvar",
    "Edit" : "Editar",
    "More information" : "Mais informações",
    "Delete" : "Excluir",
    "You can bridge channels from various instant messaging systems with Matterbridge." : "Você pode conectar canais de vários sistemas de mensagens instantâneas com Matterbridge.",
    "More info on Matterbridge" : "Mais informações no Matterbridge",
    "Enable bridge" : "Ativar ponte",
    "Show Matterbridge log" : "Mostrar log do Matterbridge",
    "Nextcloud URL" : "URL Nextcloud",
    "Nextcloud user" : "Usuário Nextcloud",
    "User password" : "Senha do usuário",
    "Talk conversation" : "Conversa Talk",
    "Matrix server URL" : "URL do servidor Matrix",
    "Matrix channel" : "Canal Matrix",
    "Mattermost server URL" : "URL do servidor Mattermost",
    "Mattermost user" : "Usuário Mattermost",
    "Team name" : "Nome do team",
    "Channel name" : "Nome do canal",
    "Rocket.Chat server URL" : "URL do servidor Rocket.Chat",
    "User name or email address" : "Nome de usuário ou endereço de e-mail ",
    "Password" : "Senha",
    "Rocket.Chat channel" : "Canal Rocket.Chat",
    "Skip TLS verification" : "Ignorar verificação TLS",
    "Zulip server URL" : "URL do servidor Zulip",
    "Bot user name" : "Nome do usuário Bot",
    "Bot API key" : "Chave API do BOT",
    "Zulip channel" : "Canal Zulip",
    "API token" : "Token de API",
    "Slack channel" : "Canal Slack",
    "Server ID or name" : "Nome ou ID do servidor",
    "Channel ID or name" : "ID ou nome do canal",
    "Channel" : "Canal",
    "Login" : "Login",
    "Chat ID" : "ID do Chat",
    "IRC server URL (e.g. chat.freenode.net:6667)" : "URL do servidor IRC (por ex. chat.freenode.net:6667)",
    "Nickname" : "Apelido",
    "Connection password" : "Senha de conexão",
    "IRC channel" : "Canal IRC",
    "Channel password" : "Senha do canal",
    "NickServ nickname" : "Apelido do NickServ",
    "NickServ password" : "Senha do NickServ",
    "Use TLS" : "Usar TLS",
    "Use SASL" : "Usar SASL",
    "Tenant ID" : "ID do Tenant",
    "Client ID" : "ID do cliente",
    "Team ID" : "ID do Team",
    "Thread ID" : "ID da Thread",
    "XMPP/Jabber server URL" : "URL do servidor XMPP/Jabber",
    "MUC server URL" : "URL do servidor MUC",
    "Jabber ID" : "ID Jabber",
    "Add new bridged channel to current conversation" : "Adicionar novo canal de comunicação para a conversa atual",
    "unknown state" : "estado desconhecido",
    "running" : "rodando",
    "not running, check Matterbridge log" : "não está funcionando, verifique o log do Matterbridge",
    "not running" : "sem funcionamento",
    "Bridge saved" : "Ponte salva",
    "Chat messages" : "Mensagens de bate-papo ",
    "Calls" : "Chamadas",
    "Notify about calls in this conversation" : "Notificar sobre chamadas nesta conversa ",
    "Allow participants to join from a phone." : "Permite que participantes entrem a partir de um telefone.",
    "Enable SIP dial-in" : "Ativar discagem SIP",
    "Allow to dial-in without a PIN" : "Permitir discar sem um PIN",
    "SIP dial-in is now possible without PIN requirement" : "A discagem SIP agora é possível sem exigência de PIN",
    "SIP dial-in is now enabled" : "A discagem SIP agora está ativada",
    "SIP dial-in is now disabled" : "A discagem SIP agora está desativada",
    "Error occurred when enabling SIP dial-in" : "Ocorreu um erro ao ativar a discagem SIP",
    "Error occurred when disabling SIP dial-in" : "Ocorreu um erro ao desativar a discagem SIP",
    "Cancel editing description" : "Cancelar descrição de edição",
    "Submit conversation description" : "Enviar descrição da conversa",
    "Edit conversation description" : "Editar descrição da conversa",
    "The description must be less than or equal to {maxLength} characters long. Your current text is {charactersCount} characters long." : "A descrição deve ter no máximo {maxLength} caracteres. Seu texto atual tem {charactersCount} caracteres.",
    "Camera and microphone check" : "Verificação de câmera e microfone",
    "Choose devices" : "Escolher dispositivos",
    "Always show this dialog before joining a call in this conversation." : "Sempre mostre esta caixa de diálogo antes de entrar em uma chamada nesta conversa.",
    "Call without notification" : "Ligue sem notificação",
    "The conversation participants will not be notified about this call" : "Os participantes da conversa não serão notificados sobre esta chamada",
    "Normal call" : "Chamada normal",
    "The conversation participants will be notified about this call" : "Os participantes da conversa serão notificados sobre esta chamada",
    "Mark as read" : "Marcar como lido ",
    "Remove from favorites" : "Remover dos favoritos",
    "Add to favorites" : "Adicionar aos favoritos",
    "Joining conversation …" : "Entrando na conversa...",
    "You: {lastMessage}" : "Você: {lastMessage}",
    "{actor}: {lastMessage}" : "{actor}: {lastMessage}",
    "No matches" : "Sem correspondência",
    "Conversation list" : "Lista de conversas",
    "Open conversations" : "Abrir conversas",
    "Loading" : "Carregando",
    "No search results" : "Nenhum resultado encontrado",
    "Groups" : "Grupos",
    "Circles" : "Círculos",
    "Unread mentions" : "Menções não lidas",
    "Talk settings" : "Configurações do Talk",
    "Users, groups and circles" : "Usuários, grupos e círculos",
    "Users and groups" : "Usuários e grupos",
    "Users and circles" : "Usuários e círculos",
    "Groups and circles" : "Grupos e círculos",
    "Other sources" : "Outras fontes",
    "An error occurred while performing the search" : "Erro ao pesquisar",
    "Creating your conversation" : "Criando sua conversa",
    "All set" : "Tudo pronto",
    "Error while creating the conversation" : "Erro ao criar a conversa",
    "Link copied to the clipboard!" : "Link copiado para a área de transferência!",
    "Create a new group conversation" : "Criar um novo grupo de conversa",
    "Password protect" : "Proteger com senha",
    "Create conversation" : "Criando conversa",
    "Add participants" : "Adicionar participantes",
    "Close" : "Fechar",
    "Choose a password" : "Escolha uma senha",
    "Search participants" : "Procurar participantes",
    "Conversation name" : "Nome da conversa",
    "Allow guests to join via link" : "Permitir que convidados participem via link",
    "Search conversations or users" : "Pesquisar conversas ou usuários",
    "You are currently waiting in the lobby" : "Você está atualmente esperando no lobby",
    "The meeting will start soon" : "A reunião iniciará em breve",
    "This meeting is scheduled for {startTime}" : "Esta reunião está agendada para iniciar em {startTime}",
    "No microphone available" : "Nenhum microfone disponível",
    "Select microphone" : "Selecionar microfone",
    "No camera available" : "Nenhuma câmera disponível",
    "Select camera" : "Selecionar câmera",
    "Unread messages" : "Mensagens não lidas",
    "Sending message" : "Enviando mensagem",
    "Message sent" : "Mensagem enviada",
    "Message read by everyone who shares their reading status" : "Mensagem lida por todos que compartilham seu status de leitura",
    "Failed to send the message. Click to try again" : "Ocorreu um erro ao enviar a mensagem. Clique para tentar novamente.",
    "Not enough free space to upload file" : "Espaço livre insuficiente para enviar o arquivo",
    "You are not allowed to share files" : "Você não tem permissão para compartilhar arquivos",
    "You cannot send messages to this conversation at the moment" : "Você não pode enviar mensagens para esta conversa no momento",
    "No permission to post reactions in this conversation" : "Sem permissão para postar reações nesta conversa",
    "Deleting message" : "Excluindo mensagem",
    "Message deleted successfully, but Matterbridge is configured and the message might already be distributed to other services" : "Mensagem excluída com sucesso, mas Matterbridge está configurado e a mensagem pode já ter sido distribuída para outros serviços",
    "Message deleted successfully" : "Mensagem excluída com sucesso",
    "Message could not be deleted because it is too old" : "A mensagem não pôde ser excluída porque é muito antiga",
    "Only normal chat messages can be deleted" : "Apenas mensagens normais de bate-papo podem ser excluídas",
    "An error occurred while deleting the message" : "Ocorreu um erro ao excluir a mensagem",
    "Reply" : "Responder",
    "Reply privately" : "Responda em particular",
    "Copy message link" : "Copiar link da mensagem",
    "Mark as unread" : "Marcar como não lido",
    "Go to file" : "Ir para o arquivo",
    "Forward message" : "Enviar mensagem",
    "Message link copied to clipboard" : "Link da mensagem copiado para a área de transferência",
    "Your browser does not support playing audio files" : "Seu navegador não suporta a reprodução de arquivos de áudio",
    "Contact" : "Contato",
    "{stack} in {board}" : "{stack} de {board}",
    "Deck Card" : "Cartão Deck",
    "Remove {fileName}" : "Remover {fileName} ",
    "The message has been forwarded to {selectedConversationName}" : "A mensagem foi encaminhada para {selectedConversationName}",
    "Go to conversation" : "Ir para a conversa ",
    "Choose a conversation to forward the selected message." : "Escolha uma conversa para encaminhar a mensagem selecionada. ",
    "Error while forwarding message" : "Erro ao encaminhar mensagem ",
    "Open this location in OpenStreetMap" : "Abra este local no OpenStreetMap",
    "Scroll to bottom" : "Rolar para baixo",
    "Today" : "Hoje",
    "Yesterday" : "Ontem",
    "{relativeDate}, {absoluteDate}" : "{relativeDate}, {absoluteDate}",
    "Record voice message" : "Gravar mensagem de voz",
    "End recording and send" : "Terminar a gravação e enviar",
    "Dismiss recording" : "Dispensar gravação",
    "Access to the microphone was denied" : "Acesso ao microfone negado",
    "Microphone either not available or disabled in settings" : "Microfone não disponível ou desativado nas configurações",
    "Error while recording audio" : "Erro ao gravar áudio",
    "Talk recording from {time} ({conversation})" : "Gravação de conversa de {time} ({conversation})",
    "Share files to the conversation" : "Compartilhar arquivos na conversa",
    "Upload new files" : "Enviar novos arquivos",
    "Share from Files" : "Compartilhar de Arquivos",
    "Add emoji" : "Adicionar emoji",
    "Send without notification" : "Enviar sem notificação",
    "Send message" : "Enviar mensagem",
    "File to share" : "Arquivo a compartilhar",
    "This conversation has been locked" : "Esta conversa está bloqueada",
    "No permission to post messages in this conversation" : "Sem permissão para postar mensagens nesta conversa",
    "Write message, @ to mention someone …" : "Escreva a mensagem, @ para mencionar alguém…",
    "The participant will not be notified about this message" : "O participante não será notificado sobre esta mensagem",
    "The participants will not be notified about this message" : "Os participantes não serão notificados sobre esta mensagem",
    "Invalid path selected" : "Caminho inválido selecionado",
    "Start a call" : "Iniciar uma chamada",
    "Skip the lobby" : "Pular o saguão ",
    "Can post messages and reactions" : "Pode postar mensagens e reações",
    "Enable the microphone" : "Habilitar o microfone",
    "Enable the camera" : "Habilite a câmera",
    "Share the screen" : "Compartilhe a tela ",
    "Update permissions" : "Permissões de atualização ",
    "Updating permissions" : "Atualizando permissões",
    "In this conversation <strong>{user}</strong> can:" : "Nesta conversa  <strong>{user}</strong> pode:",
    "Edit default permissions for participants in <strong>{conversationName}</strong>" : "Editar permissões padrão para participantes em <strong>{conversationName}</strong>",
    "Disable lobby" : "Desativar lobby",
    "moderator" : "moderador",
    "bot" : "robô",
    "guest" : "convidado",
    "Dial-in PIN" : "PIN de discagem",
    "Demote from moderator" : "Excluído da moderação",
    "Promote to moderator" : "Promovido a moderador",
    "Reset custom permissions" : "Redefinir permissões personalizadas",
    "Grant all permissions" : "Conceder todas as permissões",
    "Remove all permissions" : "Remova todas as permissões",
    "Resend invitation" : "Reenviar convite",
    "Send call notification" : "Enviar notificação de chamada",
    "Remove group and members" : "Remover grupo e membros",
    "Remove participant" : "Remover participante",
    "Settings for participant \"{user}\"" : "Configurações para o participante \"{user}\"",
    "Add participant \"{user}\"" : "Adicionar participante \"{user}\"",
    "Participant \"{user}\"" : "Participante \"{user}\"",
    "Joined with audio" : "Entrou com áudio",
    "Joined with video" : "Entrou com video",
    "Joined via phone" : "Entrou via telefone",
    "Raised their hand" : "Levantou a mão",
    "Invitation was sent to {actorId}" : "O convite foi enviado para {actorId}",
    "Could not send invitation to {actorId}" : "Não foi possível enviar o convite para {actorId}",
    "Notification was sent to {displayName}" : "A notificação foi enviada para {displayName}",
    "Could not send notification to {displayName}" : "Não foi possível enviar a notificação para {displayName}",
    "Permissions granted to {displayName}" : "Permissões concedidas a {displayName} ",
    "Could not modify permissions for {displayName}" : "Não foi possível modificar as permissões para {displayName} ",
    "Permissions removed for {displayName}" : "Permissões removidas para {displayName} ",
    "Permissions set to default for {displayName}" : "Permissões definidas como padrão para {displayName}",
    "Permissions modified for {displayName}" : "Permissões modificadas para {displayName} ",
    "Add users" : "Adicionar usuários",
    "Add groups" : "Adicionar grupos",
    "Add emails" : "Adicionar e-mails",
    "Add circles" : "Adicionar círculos",
    "Integrations" : "Integrações",
    "Add federated users" : "Adicionar usuários federados",
    "Searching …" : "Pesquisando...",
    "No results" : "Nenhum resultado",
    "Search for more users" : "Pesquisar por mais usuários",
    "Add users, groups or circles" : "Adicionar usuários, grupos ou círculos",
    "Add users or groups" : "Adicionar usuários ou grupos",
    "Add users or circles" : "Adicionar usuários ou círculos",
    "Add groups or circles" : "Adicionar grupos ou círculos",
    "Add other sources" : "Adicionar outras fontes",
    "Participants" : "Participantes",
    "Search or add participants" : "Procure ou adicione participantes",
    "An error occurred while adding the participants" : "Ocorreu um erro ao adicionar os participantes",
    "Chat" : "Conversa",
    "Details" : "Detalhes",
    "Settings" : "Configurações",
    "Shared items" : "Itens compartilhados",
    "Participants ({count})" : "Participantes ({count}) ",
    "Projects" : "Projetos",
    "Show all media" : "Mostrar todas as mídias",
    "Show all files" : "Mostrar todos os arquivos",
    "Show all deck cards" : "Mostrar todas as cartas de baralho",
    "Show all voice messages" : "Mostrar todas as mensagens de voz",
    "Show all locations" : "Mostrar todos os locais",
    "Show all audio" : "Mostrar todo o áudio",
    "Show all other" : "Mostrar todos os outros",
    "Meeting ID: {meetingId}" : "ID da reunião: {meetingId}",
    "Your PIN: {attendeePin}" : "Seu PIN: {attendeePin}",
    "Display name: <strong>{name}</strong>" : "Mostrar nome: <strong>{name}</strong>",
    "Attachments folder" : "Pasta para os anexos",
    "Privacy" : "Privacidade",
    "Share my read-status and show the read-status of others" : "Compartilhar o meu status de leitura e o dos outros",
    "Sounds" : "Sons",
    "Play sounds when participants join or leave a call" : "Tocar sons quando os participantes entram ou saem de uma chamada",
    "Sounds can currently not be played in Safari browser and iPad and iPhone devices due to technical restrictions by the manufacturer." : "Atualmente, os sons não podem ser reproduzidos no navegador Safari e em dispositivos iPad e iPhone devido a restrições técnicas do fabricante.",
    "Sounds for chat and call notifications can be adjusted in the personal settings." : "Os sons para notificações de chat e chamadas podem ser ajustados nas configurações pessoais.",
    "Keyboard shortcuts" : "Atalhos de teclado",
    "Speed up your Talk experience with these quick shortcuts." : "Acelere sua experiência no Talk com esses atalhos rápidos.",
    "Focus the chat input" : "Foco na entrada do bate-papo",
    "Unfocus the chat input to use shortcuts" : "Desfoque a entrada do bate-papo para usar atalhos",
    "Fullscreen the chat or call" : "Tela inteira do bate-papo ou chamada",
    "Search" : "Pesquisar",
    "Shortcuts while in a call" : "Atalhos durante a chamada",
    "Camera on and off" : "Câmera ligada e desligada",
    "Microphone on and off" : "Microfone ligado e desligado",
    "Space bar" : "Barra de espaço",
    "Push to talk or push to mute" : "Aperte para falar ou para deixar mudo",
    "Raise or lower hand" : "Levantar ou baixar a mão",
    "Choose the folder in which attachments should be saved." : "Escolha a pasta na qual os anexos devem ser salvos.",
    "Select location for attachments" : "Selecionar localização para os anexos",
    "Error while setting attachment folder" : "Erro ao definir a pasta do anexo",
    "Your privacy setting has been saved" : "Sua configuração de privacidade foi salva",
    "Error while setting read status privacy" : "Ocorreu um erro ao definir a privacidade do status de leitura",
    "Failed to save sounds setting" : "Falha ao salvar configuração de sons",
    "Sounds setting saved" : "Configuração de sons salva ",
    "Error while saving sounds setting" : "Erro ao salvar configuração de sons ",
    "End meeting for all" : "Fim da reunião para todos",
    "Start call silently" : "Iniciar chamada silenciosamente",
    "Start call" : "Iniciar chamada",
    "Nextcloud Talk was updated, you need to reload the page before you can start or join a call." : "O Nextcloud Talk foi atualizado. É necessário recarregar a página antes de iniciar ou participar de uma chamada.",
    "You will be able to join the call only after a moderator starts it." : "Você só poderá ingressar na chamada depois que um moderador a iniciar.",
    "Conversation actions" : "Ações de conversa",
    "Toggle fullscreen" : "Alternar para o modo de tela inteira",
    "Rename conversation" : "Renomear conversa",
    "Mute others" : "Silenciar outros",
    "Exit fullscreen (F)" : "Sair da tela inteira (F) ",
    "Fullscreen (F)" : "Tela inteira (F) ",
    "You have new unread messages in the chat." : "Você tem novas mensagens não lidas no bate-papo.",
    "You have been mentioned in the chat." : "Você foi mencionado no bate-papo.",
    "Send" : "Enviar",
    "Add more files" : "Adicionar mais arquivos",
    "No unread mentions" : "Não há citações não lidas",
    "Say hi to your friends and colleagues!" : "Diga oi para seus amigos e colegas!",
    "Start a conversation" : "Iniciar uma conversa",
    "You were mentioned" : "Você foi citado",
    "Message without mention" : "Mensagem sem menção",
    "Mention myself" : "Mencionar-me",
    "Mention room" : "Sala de menção",
    "The conversation does not exist" : "A conversa não existe",
    "Join a conversation or start a new one!" : "Juntar-se à uma conversa ou iniciar um nova!",
    "No conversations found" : "Nenhuma conversa encontrada",
    "Select conversation" : "Selecionar conversa",
    "Link to a conversation" : "Link para uma conversa",
    "You joined the conversation in another window or device. This is currently not supported by Nextcloud Talk so this session was closed." : "Você ingressou na conversa em outra janela ou dispositivo. No momento, isso não é suportado pelo Nextcloud Talk e portanto esta sessão foi encerrada.",
    "Join a conversation or start a new one" : "Junte-se a uma conversa ou inicie outra",
    "Deck card has been posted to the selected <a href=\"{link}\">conversation</a>" : "A carta do Deck foi postada na selecionado <a href=\"{link}\">conversação</a>",
    "An error occurred while posting deck card to conversation" : "Ocorreu um erro ao postar o cartão do Deck na conversa",
    "Post to a conversation" : "Enviar para uma conversa",
    "Post to conversation" : "Enviar para a conversa",
    "Location has been posted to the selected <a href=\"{link}\">conversation</a>" : "A localização foi postada para o selecionado <a href=\"{link}\">conversação</a>",
    "An error occurred while posting location to conversation" : "Ocorreu um erro ao postar o local na conversa",
    "Share to a conversation" : "Compartilhar em uma conversa",
    "Share to conversation" : "Compartilhar na conversa",
    "The browser you're using is not fully supported by Nextcloud Talk. Please use the latest version of Mozilla Firefox, Microsoft Edge, Google Chrome, Opera or Apple Safari." : "O navegador que você está usando não possui suporte completo pelo Nextcloud Talk. Use a última versão do Mozilla Firefox, Microsoft Edge, Google Chrome, Opera ou Apple Safari.",
    "Calls are not supported in your browser" : "Seu navegador não suporta chamadas",
    "Access to microphone is only possible with HTTPS" : "O acesso ao microfone somente é possível via HTTPS",
    "Access to microphone was denied" : "O acesso ao microfone foi negado",
    "Error while accessing microphone" : "Erro ao acessar microfone",
    "Access to camera is only possible with HTTPS" : "O acesso à câmera somente é possível via HTTPS",
    "An error occurred while fetching the participants" : "Erro ao buscar os participantes",
    "Media" : "Meios de comunicação",
    "Files" : "Arquivos",
    "Deck cards" : "Cartas de baralho",
    "Voice messages" : "Mensagens de voz",
    "Locations" : "Localizações",
    "Audio" : "Áudio",
    "Other" : "Outro",
    "Nextcloud Talk was updated, please reload the page" : "O Nextcloud Talk foi atualizado, recarregue a página",
    "Do not disturb" : "Não perturbe",
    "Away" : "Fora",
    "Error while sharing file" : "Erro ao compartilhar arquivo",
    "Error while clearing conversation history" : "Erro ao limpar o histórico da conversa ",
    "Not enough free space to upload file \"{fileName}\"" : "Espaço livre insuficiente para enviar o arquivo \"{fileName}\"",
    "Error while uploading file \"{fileName}\"" : "Erro ao enviar o arquivo \"{fileName}\"",
    "An error happened when trying to share your file" : "Ocorreu um erro ao tentar compartilhar seu arquivo ",
    "{guest} (guest)" : "{guest} (hóspede)",
    "Could not post message: {errorMessage}" : "Não foi possível postar a mensagem: {errorMessage}",
    "Failed to add reaction" : "Falha ao adicionar reação",
    "Failed to remove reaction" : "Falha ao remover a reação",
    "Failed to join the conversation. Try to reload the page." : "Falha ao ingressar na conversa. Tente recarregar a página.",
    "You are trying to join a conversation while having an active session in another window or device. This is currently not supported by Nextcloud Talk. What do you want to do?" : "Você está tentando ingressar em uma conversa enquanto realiza uma sessão ativa em outra janela ou dispositivo. No momento, isso não é suportado pelo Nextcloud Talk. O que você deseja fazer?",
    "Join here" : "Ingressar aqui",
    "Leave this page" : "Sair desta página",
    "Nextcloud is in maintenance mode, please reload the page" : "O Nextcloud está no modo de manutenção, recarregue a página",
    "Sending signaling message has failed." : "Erro no envio da mensagem de sinalização.",
    "Lost connection to signaling server. Trying to reconnect." : "Conexão perdida com o servidor de sinalização. Tentando reconectar.",
    "Lost connection to signaling server. Try to reload the page manually." : "Conexão perdida com o servidor de sinalização. Tente recarregar a página manualmente.",
    "Establishing signaling connection is taking longer than expected …" : "A conexão de sinalização está demorando mais que o esperado ...",
    "Failed to establish signaling connection. Retrying …" : "Falha ao estabelecer a conexão de sinalização. Tentando novamente…",
    "Failed to establish signaling connection. Something might be wrong in the signaling server configuration" : " Falha ao estabelecer conexão de sinalização. Algo pode estar errado na configuração do servidor de sinalização",
    "The configured signaling server needs to be updated to be compatible with this version of Talk. Please contact your administrator." : "O servidor de sinalização configurado precisa ser atualizado para ser compatível com esta versão do Bate-Papo. Entre em contato com o seu administrador.",
    "Default" : "Padrão",
    "Microphone {number}" : "Microfone {number}",
    "Camera {number}" : "Câmera {number}",
    "Speaker {number}" : "Alto falante {number}",
    "You seem to be talking while muted, please unmute yourself for others to hear you" : "Parece que você está falando no \"mudo\". Ligue o microfone para outros ouvirem",
    "Could not establish a connection with at least one participant. A TURN server might be needed for your scenario. Please ask your administrator to set one up following {linkstart}this documentation{linkend}." : "Não foi possível estabelecer uma conexão com pelo menos um participante. Pode ser necessário um servidor TURN para sua instalação. Peça ao seu administrador para configurar um seguindo {linkstart}esta documentação{linkend}.",
    "This is taking longer than expected. Are the media permissions already granted (or rejected)? If yes please restart your browser, as audio and video are failing" : "Isso está demorando mais que o esperado. As permissões de mídia já foram concedidas (ou rejeitadas)? Se sim, reinicie o seu navegador, pois o áudio e vídeo estão falhando",
    "Access to microphone & camera is only possible with HTTPS" : "O acesso ao microfone e à câmera só é possível com HTTPS",
    "Please move your setup to HTTPS" : "Altere sua configuração para HTTPS",
    "Access to microphone & camera was denied" : "O acesso ao microfone e à câmera foi negado",
    "WebRTC is not supported in your browser" : "WebRTC não é suportado pelo seu navegador",
    "Please use a different browser like Firefox or Chrome" : "Utilize um navegador diferente como o Firefox ou Chrome",
    "Error while accessing microphone & camera" : "Erro ao acessar microfone & câmera",
    "The password is wrong. Try again." : "Senha incorreta. Tente novamente.",
    "Specify commands the users can use in chats" : "Especifique os comandos que usuários podem usar em bate-papos",
    "TURN server" : "Servidor STUN",
    "The TURN server is used to proxy the traffic from participants behind a firewall." : "O servidor TURN é usado para fazer um proxy do tráfego de participantes por trás de um firewall.",
    "Signaling servers" : "Servidores de sinalização",
    "An external signaling server can optionally be used for larger installations. Leave empty to use the internal signaling server." : "Um servidor de sinalização externo pode opcionalmente ser usado para instalações maiores. Deixe vazio para usar o servidor de sinalização interno.",
    "%s Talk on your mobile devices" : "%s Converse em seus dispositivos móveis",
    "Join conversations at any time, anywhere, on any device." : "Participe de conversas a qualquer momento, lugar e dispositivo.",
    "Android app" : "Aplicativo Android",
    "iOS app" : "Aplicativo iOS",
    "You can install the Matterbridge to link Nextcloud Talk to some other services, visit their {linkstart1}GitHub page{linkend} for more details. Downloading and installing the app can take a while. In case it times out, please install it manually from the {linkstart2}appstore{linkend}." : "Você pode instalar o Matterbridge para vincular o Nextcloud Talk a alguns outros serviços, visite a {linkstart1}página GitHub{linkend} para obter mais detalhes. O download e a instalação do aplicativo podem demorar um pouco. Caso o tempo limite seja atingido, instale-o manualmente a partir da {linkstart2}appstore{linkend}.",
    "Your internet connection or computer are busy and other participants might be unable to see you. To improve the situation try to disable your video while doing a screenshare." : "Sua conexão à internet ou o computador estão ocupados e outros participantes podem não conseguir vê-lo. Para melhorar isso, tente desativar seu vídeo ao compartilhar uma tela.",
    "Your internet connection or computer are busy and other participants might be unable to understand and see your screen. To improve the situation try to disable your screenshare." : "Sua conexão à internet ou o computador estão ocupados e outros participantes podem não conseguir entender e ver sua tela. Para melhorar isso, tente desativar o compartilhamento de tela.",
    "Error while accessing camera: it is likely in use by another program" : "Erro ao acessar a câmera: provavelmente está em uso por outro programa",
    "Chat notifications" : "Notificações do bate-papo",
    "Set the notification level for the current conversation. This will affect only the notifications you receive." : "Defina o nível de notificação para a conversa atual. Isso afetará apenas as notificações que você recebe.",
    "You are currently waiting in the lobby. This meeting is scheduled for {startTime}" : "Você está esperando no lobby no momento. Esta reunião está agendada para {startTime}",
    "Microphone" : "Microfone",
    "Camera" : "Câmera",
    "Message link copied to clipboard." : "Link da mensagem copiado para a área de transferência.",
    "[Unknown username]" : "[Nome de usuário desconhecido]",
    "Invitation was sent to {actorId}." : "O convite foi enviado para {actorId}.",
    "Display name: " : "Nome de tela:",
    "Video on and off" : "Vídeo ligado e desligado",
    "Deck card has been posted to the selected <a href=\"{link}\">conversation</a>." : "Cartão do Deck enviado para a <a href=\"{link}\">conversation</a> selecionada.",
    "An error occurred while posting deck card to conversation." : "Ocorreu um erro ao enviar um cartão do Deck para a conversa.",
    "OK: \".wasm\" and \".tflite\" files were properly returned by the web server" : "OK: \".wasm\" e \".tflite\" os arquivos foram retornados corretamente pelo servidor web"
},
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");