-
Notifications
You must be signed in to change notification settings - Fork 449
/
Copy pathfa.json
1593 lines (1593 loc) · 132 KB
/
fa.json
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
{ "translations": {
"a conversation" : "مکالمه",
"(Duration %s)" : "(مدت زمان %s )",
"You attended a call with {user1}" : "شما در تماس تلفنی با {user1} شرکت کردید",
"_%n guest_::_%n guests_" : ["میهمان %n","میهمان ها %n"],
"You attended a call with {user1} and {user2}" : "شما در یک تماس با {user1} و {user2} حضور پیدا کردید",
"You attended a call with {user1}, {user2} and {user3}" : "شما در یک تماس با {user1} ، {user2} و {user3} شرکت کردید.",
"You attended a call with {user1}, {user2}, {user3} and {user4}" : "شما در یک تماس با {user1} ، {user2} و {user3} و {user4} شرکت کردید.",
"You attended a call with {user1}, {user2}, {user3}, {user4} and {user5}" : "شما در یک تماس با {user1} ، {user2} ، {user3} ، {user4} و {user5} شرکت کردید.",
"_%n other_::_%n others_" : ["دیگر %n","دیگران %n"],
"{actor} invited you to {call}" : "{actor} شما را به {call} دعوت کرد",
"You were invited to a <strong>conversation</strong> or had a <strong>call</strong>" : "شما به یک <strong>مکالمه</strong> دعوت شده اید یا <strong>تماس</strong> گرفته اید",
"Other activities" : "سایر فعالیت ها",
"Talk" : "گفتگو",
"Guest" : "مهمان",
"## Welcome to Nextcloud Talk!\nIn this conversation you will be informed about new features available in Nextcloud Talk." : "## Welcome to Nextcloud Talk!\nIn this conversation you will be informed about new features available in Nextcloud Talk.",
"## New in Talk %s" : "## New in Talk %s",
"- Microsoft Edge and Safari can now be used to participate in audio and video calls" : "اکنون می توان از Microsoft Edge و Safari برای شرکت در تماس های صوتی و تصویری استفاده کرد",
"- 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" : "- 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",
"- You can now notify all participants by posting \"@all\" into the chat" : "- اکنون می توانید با ارسال \"@all\" در گپ ، به همه شرکت کنندگان اطلاع دهید",
"- With the \"arrow-up\" key you can repost your last message" : "- با کلید \"جهت بالا\" می توانید آخرین پیام خود را دوباره ارسال کنید",
"- Talk can now have commands, send \"/help\" as a chat message to see if your administrator configured some" : "- - بحث اکنون می تواند دستوراتی داشته باشد ، \"/ help\" را به عنوان یک پیام چت ارسال کنید تا ببینید سرپرست شما برخی از آنها را پیکربندی کرده است یا خیر",
"- With projects you can create quick links between conversations, files and other items" : "- با پروژه ها می توانید پیوندهای سریع بین مکالمات ، پرونده ها و موارد دیگر ایجاد کنید",
"- You can now mention guests in the 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" : "- 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",
"- You can now directly reply to messages giving the other users more context what your message is about" : "- You can now directly reply to messages giving the other users more context what your message is about",
"- Searching for conversations and participants will now also filter your existing conversations, making it much easier to find previous conversations" : "- Searching for conversations and participants will now also filter your existing conversations, making it much easier to find previous conversations",
"- You can now add custom user groups to conversations when the circles app is installed" : "- You can now add custom user groups to conversations when the circles app is installed",
"- Check out the new grid and call view" : "- Check out the new grid and call view",
"- You can now upload and drag'n'drop files directly from your device into the chat" : "- You can now upload and drag'n'drop files directly from your device into the chat",
"- Shared files are now opened directly inside the chat view with the viewer apps" : "- Shared files are now opened directly inside the chat view with the viewer apps",
"- You can now search for chats and messages in the unified search in the top bar" : "- You can now search for chats and messages in the unified search in the top bar",
"- Spice up your messages with emojis from the emoji picker" : "- Spice up your messages with emojis from the emoji picker",
"- You can now change your camera and microphone while being in a call" : "- You can now change your camera and microphone while being in a call",
"- Give your conversations some context with a description and open it up so logged in users can find it and join themselves" : "- Give your conversations some context with a description and open it up so logged in users can find it and join themselves",
"- See a read status and send failed messages again" : "- See a read status and send failed messages again",
"- Raise your hand in a call with the R key" : "- Raise your hand in a call with the R key",
"- Join the same conversation and call from multiple devices" : "- Join the same conversation and call from multiple devices",
"- Send voice messages, share your location or contact details" : "- Send voice messages, share your location or contact details",
"- Add groups to a conversation and new group members will automatically be added as participants" : "- Add groups to a conversation and new group members will automatically be added as participants",
"- A preview of your audio and video is shown before joining a call" : "- A preview of your audio and video is shown before joining a call",
"- You can now blur your background in the newly designed call view" : "- You can now blur your background in the newly designed call view",
"- Moderators can now assign general and individual permissions to participants" : "- Moderators can now assign general and individual permissions to participants",
"- In the sidebar you can now find an overview of the latest shared items" : "- In the sidebar you can now find an overview of the latest shared items",
"- Use a poll to collect the opinions of others or settle on a date" : "- Use a poll to collect the opinions of others or settle on a date",
"- Configure an expiration time for chat messages" : "- Configure an expiration time for chat messages",
"- Start calls without notifying others in big conversations. You can send individual call notifications once the call has started." : "- Start calls without notifying others in big conversations. You can send individual call notifications once the call has started.",
"- Send chat messages without notifying the recipients in case it is not urgent" : "- Send chat messages without notifying the recipients in case it is not urgent",
"- Emojis can now be autocompleted by typing a \":\"" : "- Emojis can now be autocompleted by typing a \":\"",
"- Link various items using the new smart-picker by typing a \"/\"" : "- Link various items using the new smart-picker by typing a \"/\"",
"- Conversations can now have an avatar or emoji as icon" : "- Conversations can now have an avatar or emoji as icon",
"- Virtual backgrounds are now available in addition to the blurred background in video calls" : "- Virtual backgrounds are now available in addition to the blurred background in video calls",
"- Reactions are now available during calls" : "- Reactions are now available during calls",
"- Typing indicators show which users are currently typing a message" : "- Typing indicators show which users are currently typing a message",
"- Groups can now be mentioned in chats" : "- Groups can now be mentioned in chats",
"- Call recordings are automatically transcribed if a transcription provider app is registered" : "- Call recordings are automatically transcribed if a transcription provider app is registered",
"- Chat messages can be translated if a translation provider app is registered" : "- Chat messages can be translated if a translation provider app is registered",
"- **Markdown** can now be used in _chat_ messages" : "- **Markdown** can now be used in _chat_ messages",
"- Webhooks are now available to implement bots. See the documentation for more information https://nextcloud-talk.readthedocs.io/en/latest/bot-list/" : "- Webhooks are now available to implement bots. See the documentation for more information https://nextcloud-talk.readthedocs.io/en/latest/bot-list/",
"- Set a reminder on a chat message to be notified later again" : "- Set a reminder on a chat message to be notified later again",
"Talk updates ✅" : "به روزرسانی های Talk✅ ",
"Reaction deleted by author" : "Reaction deleted by author",
"{actor} created the conversation" : "{actor} گفتگو را ایجاد کرد",
"You created the conversation" : "شما گفتگو را ایجاد کردید",
"An administrator created the conversation" : "An administrator created the conversation",
"{actor} renamed the conversation from \"%1$s\" to \"%2$s\"" : "{actor} این گفتگو را از \" %1$s \" به \"%2$s\" تغییر نام داد",
"You renamed the conversation from \"%1$s\" to \"%2$s\"" : "شما این گفتگو را از \"%1$s \" به \"%2$s\" تغییر نام داد",
"An administrator renamed the conversation from \"%1$s\" to \"%2$s\"" : "An administrator renamed the conversation from \"%1$s\" to \"%2$s\"",
"{actor} set the description" : "{actor} set the description",
"You set the description" : "You set the description",
"An administrator set the description" : "An administrator set the description",
"{actor} removed the description" : "{actor} removed the description",
"You removed the description" : "You removed the description",
"An administrator removed the description" : "An administrator removed the description",
"You started a call" : "شما یک تماس را شروع کردید",
"{actor} started a call" : "{actor} یک تماس را شروع کرد",
"{actor} joined the call" : "{actor} به تماس پیوست",
"You joined the call" : "شما به تماس پیوستید",
"{actor} left the call" : "{actor} تماس را ترک کرد",
"You left the call" : "شما تماس را ترک کردید",
"{actor} unlocked the conversation" : "{actor} مکالمه را باز کرد",
"You unlocked the conversation" : "شما مکالمه را باز کردید",
"An administrator unlocked the conversation" : "An administrator unlocked the conversation",
"{actor} locked the conversation" : "{actor} مکالمه را قفل کرد",
"You locked the conversation" : "شما مکالمه را قفل کرد",
"An administrator locked the conversation" : "An administrator locked the conversation",
"{actor} limited the conversation to the current participants" : "{actor} limited the conversation to the current participants",
"You limited the conversation to the current participants" : "You limited the conversation to the current participants",
"An administrator limited the conversation to the current participants" : "An administrator limited the conversation to the current participants",
"{actor} opened the conversation to registered users" : "{actor} opened the conversation to registered users",
"You opened the conversation to registered users" : "You opened the conversation to registered users",
"An administrator opened the conversation to registered users" : "An administrator opened the conversation to registered users",
"The conversation is now open to everyone" : "اکنون این گفتگو برای همه باز است",
"{actor} opened the conversation to everyone" : "{actor} گفتگو را برای همه باز کرد",
"You opened the conversation to everyone" : "شما گفتگو را برای همه باز کردید",
"{actor} restricted the conversation to moderators" : "{actor} گفتگو را محدود به ناظران کرد",
"You restricted the conversation to moderators" : "شما گفتگو را محدود به ناظران کردید",
"{actor} started breakout rooms" : "{actor} started breakout rooms",
"You started breakout rooms" : "You started breakout rooms",
"{actor} stopped breakout rooms" : "{actor} stopped breakout rooms",
"You stopped breakout rooms" : "You stopped breakout rooms",
"{actor} allowed guests" : "{actor} مهمان مجاز است",
"You allowed guests" : "شما به مهمان ها اجازه دادید.",
"An administrator allowed guests" : "An administrator allowed guests",
"{actor} disallowed guests" : "{actor} مهمانان مجاز نیستند",
"You disallowed guests" : "شما میهمانان را مجاز نکردید",
"An administrator disallowed guests" : "An administrator disallowed guests",
"{actor} set a password" : "{actor} یک رمزعبور تنظیم می کنید",
"You set a password" : "شما یک رمزعبور تنظیم می کنید",
"An administrator set a password" : "An administrator set a password",
"{actor} removed the password" : "{actor} رمز عبور را حذف کرد",
"You removed the password" : "شما رمز عبور را حذف کردید",
"An administrator removed the password" : "An administrator removed the password",
"{actor} added {user}" : "{actor} کاربر {user} را اضافه کرد",
"You joined the conversation" : "شما به گفتگو پیوستید",
"{actor} joined the conversation" : "{actor} به گفتگو پیوست",
"You added {user}" : "شما {user} را اضافه کردید",
"{actor} added you" : "{actor} شما را اضافه کرد",
"An administrator added you" : "An administrator added you",
"An administrator added {user}" : "An administrator added {user}",
"You left the conversation" : "گفتگو را ترک کردید",
"{actor} left the conversation" : "{actor} گفتگو را ترک کرد",
"{actor} removed {user}" : "{actor} {user} را حذف کرد",
"You removed {user}" : "شما {user} را حذف کردید",
"{actor} removed you" : "{actor} شما را حذف کرد",
"An administrator removed you" : "An administrator removed you",
"An administrator removed {user}" : "An administrator removed {user}",
"{federated_user} accepted the invitation" : "{federated_user} accepted the invitation",
"{actor} removed {federated_user}" : "{actor} removed {federated_user}",
"You removed {federated_user}" : "You removed {federated_user}",
"An administrator removed {federated_user}" : "An administrator removed {federated_user}",
"{federated_user} declined the invitation" : "{federated_user} declined the invitation",
"{actor} added group {group}" : "{actor} added group {group}",
"You added group {group}" : "You added group {group}",
"An administrator added group {group}" : "An administrator added group {group}",
"{actor} removed group {group}" : "{actor} removed group {group}",
"You removed group {group}" : "You removed group {group}",
"An administrator removed group {group}" : "An administrator removed group {group}",
"{actor} promoted {user} to moderator" : "{actor} {user} را به عنوان ناظر تبلیغ کرد",
"You promoted {user} to moderator" : "شما {user} را به عنوان مجری تبلیغ کردید",
"{actor} promoted you to moderator" : "{actor} شما را به سمت مجری ارتقاء داد",
"An administrator promoted you to moderator" : "An administrator promoted you to moderator",
"An administrator promoted {user} to moderator" : "An administrator promoted {user} to moderator",
"{actor} demoted {user} from moderator" : "{actor} {user} را از مجری دور کرد",
"You demoted {user} from moderator" : "شما {user} را از مجری خلع کردید",
"{actor} demoted you from moderator" : "{actor} شما را از مجری دور کرد",
"An administrator demoted you from moderator" : "An administrator demoted you from moderator",
"An administrator demoted {user} from moderator" : "An administrator demoted {user} from moderator",
"{actor} shared a file which is no longer available" : "{actor} فایلی را به اشتراک گذاشت که دیگر در دسترس نیست",
"You shared a file which is no longer available" : "شما یک پرونده را به اشتراک گذاشتید که دیگر در دسترس نیست",
"The shared location is malformed" : "The shared location is malformed",
"{actor} set up Matterbridge to synchronize this conversation with other chats" : "{actor} set up Matterbridge to synchronize this conversation with other chats",
"You set up Matterbridge to synchronize this conversation with other chats" : "You set up Matterbridge to synchronize this conversation with other chats",
"{actor} updated the Matterbridge configuration" : "{actor} updated the Matterbridge configuration",
"You updated the Matterbridge configuration" : "You updated the Matterbridge configuration",
"{actor} removed the Matterbridge configuration" : "{actor} removed the Matterbridge configuration",
"You removed the Matterbridge configuration" : "You removed the Matterbridge configuration",
"{actor} started Matterbridge" : "{actor} started Matterbridge",
"You started Matterbridge" : "You started Matterbridge",
"{actor} stopped Matterbridge" : "{actor} stopped Matterbridge",
"You stopped Matterbridge" : "You stopped Matterbridge",
"{actor} deleted a message" : "{actor} deleted a message",
"You deleted a message" : "You deleted a message",
"{actor} deleted a reaction" : "{actor} deleted a reaction",
"You deleted a reaction" : "You deleted a reaction",
"_You set the message expiration to %n week_::_You set the message expiration to %n weeks_" : ["You set the message expiration to %n week","You set the message expiration to %n weeks"],
"_You set the message expiration to %n day_::_You set the message expiration to %n days_" : ["You set the message expiration to %n day","You set the message expiration to %n days"],
"_You set the message expiration to %n hour_::_You set the message expiration to %n hours_" : ["You set the message expiration to %n hour","You set the message expiration to %n hours"],
"_You set the message expiration to %n minute_::_You set the message expiration to %n minutes_" : ["You set the message expiration to %n minute","You set the message expiration to %n minutes"],
"_{actor} set the message expiration to %n week_::_{actor} set the message expiration to %n weeks_" : ["{actor} set the message expiration to %n week","{actor} set the message expiration to %n weeks"],
"_{actor} set the message expiration to %n day_::_{actor} set the message expiration to %n days_" : ["{actor} set the message expiration to %n day","{actor} set the message expiration to %n days"],
"_{actor} set the message expiration to %n hour_::_{actor} set the message expiration to %n hours_" : ["{actor} set the message expiration to %n hour","{actor} set the message expiration to %n hours"],
"_{actor} set the message expiration to %n minute_::_{actor} set the message expiration to %n minutes_" : ["{actor} set the message expiration to %n minute","{actor} set the message expiration to %n minutes"],
"{actor} disabled message expiration" : "{actor} disabled message expiration",
"You disabled message expiration" : "You disabled message expiration",
"{actor} cleared the history of the conversation" : "{actor} cleared the history of the conversation",
"You cleared the history of the conversation" : "You cleared the history of the conversation",
"{actor} set the conversation picture" : "{actor} set the conversation picture",
"You set the conversation picture" : "You set the conversation picture",
"{actor} removed the conversation picture" : "{actor} removed the conversation picture",
"You removed the conversation picture" : "You removed the conversation picture",
"{actor} ended the poll {poll}" : "{actor} ended the poll {poll}",
"You ended the poll {poll}" : "You ended the poll {poll}",
"{actor} started the video recording" : "{actor} started the video recording",
"You started the video recording" : "You started the video recording",
"{actor} stopped the video recording" : "{actor} stopped the video recording",
"You stopped the video recording" : "You stopped the video recording",
"{actor} started the audio recording" : "{actor} started the audio recording",
"You started the audio recording" : "You started the audio recording",
"{actor} stopped the audio recording" : "{actor} stopped the audio recording",
"You stopped the audio recording" : "You stopped the audio recording",
"The recording failed" : "The recording failed",
"Someone voted on the poll {poll}" : "Someone voted on the poll {poll}",
"Message deleted by author" : "Message deleted by author",
"Message deleted by {actor}" : "Message deleted by {actor}",
"Message deleted by you" : "Message deleted by you",
"Deleted user" : "Deleted user",
"%s (guest)" : "%s (مهمان)",
"You missed a call from {user}" : "You missed a call from {user}",
"You tried to call {user}" : "You tried to call {user}",
"_{actor} ended the call with %n guest (Duration {duration})_::_{actor} ended the call with %n guests (Duration {duration})_" : ["{actor} ended the call with %n guest (Duration {duration})","{actor} ended the call with %n guests (Duration {duration})"],
"{actor} ended the call with {user1} (Duration {duration})" : "{actor} ended the call with {user1} (Duration {duration})",
"{actor} ended the call with {user1} and {user2} (Duration {duration})" : "{actor} ended the call with {user1} and {user2} (Duration {duration})",
"{actor} ended the call with {user1}, {user2} and {user3} (Duration {duration})" : "{actor} ended the call with {user1}, {user2} and {user3} (Duration {duration})",
"{actor} ended the call with {user1}, {user2}, {user3} and {user4} (Duration {duration})" : "{actor} ended the call with {user1}, {user2}, {user3} and {user4} (Duration {duration})",
"{actor} ended the call with {user1}, {user2}, {user3}, {user4} and {user5} (Duration {duration})" : "{actor} ended the call with {user1}, {user2}, {user3}, {user4} and {user5} (Duration {duration})",
"Message of {user} in {conversation}" : "Message of {user} in {conversation}",
"Message of {user}" : "Message of {user}",
"Message of a deleted user in {conversation}" : "Message of a deleted user in {conversation}",
"Talk conversations" : "مکالمات صحبت کنید",
"Talk to %s" : "صحبت کردن %s",
"An error occurred. Please contact your administrator." : "An error occurred. Please contact your administrator.",
"File is not shared, or shared but not with the user" : "پرونده به اشتراک گذاشته نمی شود ، یا به اشتراک گذاشته اما با کاربر به اشتراک گذاشته نمی شود",
"No account available to delete." : "No account available to delete.",
"No image file provided" : "No image file provided",
"File is too big" : "فایل خیلی بزرگ است",
"Invalid file provided" : "فایل دادهشده نا معتبر است",
"Invalid image" : "عکس نامعتبر",
"Unknown filetype" : "نوع فایل ناشناخته",
"Talk mentions" : "Talk mentions",
"Say hi to your friends and colleagues!" : "به رفقا و همقطارانتان سلام کنید!",
"No unread mentions" : "No unread mentions",
"Call in progress" : "Call in progress",
"You were mentioned" : "You were mentioned",
"Write to conversation" : "برای مکالمه بنویسید",
"Writes event information into a conversation of your choice" : "اطلاعات رویداد را در گفتگوی مورد نظر شما می نویسد",
"%s invited you to a conversation." : "%s شما را به یک گفتگو دعوت کرد",
"You were invited to a conversation." : "شما به یک گفتگو دعوت شده اید",
"Conversation invitation" : "Conversation invitation",
"Click the button below to join." : "Click the button below to join.",
"Join »%s«" : "Join »%s«",
"You can also dial-in via phone with the following details" : "You can also dial-in via phone with the following details",
"Dial-in information" : "Dial-in information",
"Meeting ID" : "Meeting ID",
"Your PIN" : "Your PIN",
"Password request: %s" : "Password request: %s",
"Private conversation" : "مکالمه خصوصی",
"Deleted user (%s)" : "Deleted user (%s)",
"Failed to upload call recording" : "Failed to upload call recording",
"The recording server failed to upload recording of call {call}. Please reach out to the administration." : "The recording server failed to upload recording of call {call}. Please reach out to the administration.",
"Share to chat" : "Share to chat",
"Dismiss notification" : "رد کردن اعلان",
"Call recording now available" : "Call recording now available",
"The recording for the call in {call} was uploaded to {file}." : "The recording for the call in {call} was uploaded to {file}.",
"Transcript now available" : "Transcript now available",
"The transcript for the call in {call} was uploaded to {file}." : "The transcript for the call in {call} was uploaded to {file}.",
"Failed to transcript call recording" : "Failed to transcript call recording",
"The server failed to transcript the recording at {file} for the call in {call}. Please reach out to the administration." : "The server failed to transcript the recording at {file} for the call in {call}. Please reach out to the administration.",
"Accept" : "تایید",
"Decline" : "کاهش می یابد",
"Reminder: You in {call}" : "Reminder: You in {call}",
"Reminder: {user} in {call}" : "Reminder: {user} in {call}",
"Reminder: Deleted user in {call}" : "Reminder: Deleted user in {call}",
"Reminder: {guest} (guest) in {call}" : "Reminder: {guest} (guest) in {call}",
"Reminder: Guest in {call}" : "Reminder: Guest in {call}",
"{user} in {call}" : "{user} in {call}",
"Deleted user in {call}" : "Deleted user in {call}",
"{guest} (guest) in {call}" : "{guest} (guest) in {call}",
"Guest in {call}" : "Guest in {call}",
"{user} sent you a private message" : "{user} sent you a private message",
"{user} sent a message in conversation {call}" : "{user} sent a message in conversation {call}",
"A deleted user sent a message in conversation {call}" : "A deleted user sent a message in conversation {call}",
"{guest} (guest) sent a message in conversation {call}" : "{guest} (guest) sent a message in conversation {call}",
"A guest sent a message in conversation {call}" : "A guest sent a message in conversation {call}",
"{user} replied to your private message" : "{user} replied to your private message",
"{user} replied to your message in conversation {call}" : "{user} replied to your message in conversation {call}",
"A deleted user replied to your message in conversation {call}" : "A deleted user replied to your message in conversation {call}",
"{guest} (guest) replied to your message in conversation {call}" : "{guest} (guest) replied to your message in conversation {call}",
"A guest replied to your message in conversation {call}" : "A guest replied to your message in conversation {call}",
"Reminder: You in private conversation {call}" : "Reminder: You in private conversation {call}",
"Reminder: A deleted user in private conversation {call}" : "Reminder: A deleted user in private conversation {call}",
"Reminder: {user} in private conversation" : "Reminder: {user} in private conversation",
"Reminder: You in conversation {call}" : "Reminder: You in conversation {call}",
"Reminder: {user} in conversation {call}" : "Reminder: {user} in conversation {call}",
"Reminder: A deleted user in conversation {call}" : "Reminder: A deleted user in conversation {call}",
"Reminder: {guest} (guest) in conversation {call}" : "Reminder: {guest} (guest) in conversation {call}",
"Reminder: A guest in conversation {call}" : "Reminder: A guest in conversation {call}",
"{user} reacted with {reaction} to your private message" : "{user} reacted with {reaction} to your private message",
"{user} reacted with {reaction} to your message in conversation {call}" : "{user} reacted with {reaction} to your message in conversation {call}",
"A deleted user reacted with {reaction} to your message in conversation {call}" : "A deleted user reacted with {reaction} to your message in conversation {call}",
"{guest} (guest) reacted with {reaction} to your message in conversation {call}" : "{guest} (guest) reacted with {reaction} to your message in conversation {call}",
"A guest reacted with {reaction} to your message in conversation {call}" : "A guest reacted with {reaction} to your message in conversation {call}",
"{user} mentioned you in a private conversation" : "{user} mentioned you in a private conversation",
"{user} mentioned group {group} in conversation {call}" : "{user} mentioned group {group} in conversation {call}",
"{user} mentioned everyone in conversation {call}" : "{user} mentioned everyone in conversation {call}",
"{user} mentioned you in conversation {call}" : "{user} mentioned you in conversation {call}",
"A deleted user mentioned group {group} in conversation {call}" : "A deleted user mentioned group {group} in conversation {call}",
"A deleted user mentioned everyone in conversation {call}" : "A deleted user mentioned everyone in conversation {call}",
"A deleted user mentioned you in conversation {call}" : "A deleted user mentioned you in conversation {call}",
"{guest} (guest) mentioned group {group} in conversation {call}" : "{guest} (guest) mentioned group {group} in conversation {call}",
"{guest} (guest) mentioned everyone in conversation {call}" : "{guest} (guest) mentioned everyone in conversation {call}",
"{guest} (guest) mentioned you in conversation {call}" : "{guest} (guest) mentioned you in conversation {call}",
"A guest mentioned group {group} in conversation {call}" : "A guest mentioned group {group} in conversation {call}",
"A guest mentioned everyone in conversation {call}" : "A guest mentioned everyone in conversation {call}",
"A guest mentioned you in conversation {call}" : "A guest mentioned you in conversation {call}",
"View message" : "View message",
"Dismiss reminder" : "Dismiss reminder",
"View chat" : "View chat",
"{user} invited you to a private conversation" : "{user} شما را به یک گفتگوی خصوصی دعوت کرد",
"Join call" : "Join call",
"{user} invited you to a group conversation: {call}" : "{user} شما را به یک گفتگو گروهی دعوت کرد: {call}",
"Answer call" : "Answer call",
"{user} would like to talk with you" : "{user} would like to talk with you",
"Call back" : "Call back",
"A group call has started in {call}" : "A group call has started in {call}",
"You missed a group call in {call}" : "You missed a group call in {call}",
"{email} is requesting the password to access {file}" : "{email} is requesting the password to access {file}",
"{email} tried to request the password to access {file}" : "{email} tried to request the password to access {file}",
"Someone is requesting the password to access {file}" : "Someone is requesting the password to access {file}",
"Someone tried to request the password to access {file}" : "Someone tried to request the password to access {file}",
"Open settings" : "تنظیمات را باز کنید",
"The hosted signaling server is now configured and will be used." : "The hosted signaling server is now configured and will be used.",
"The hosted signaling server was removed and will not be used anymore." : "The hosted signaling server was removed and will not be used anymore.",
"The hosted signaling server account has changed the status from \"{oldstatus}\" to \"{newstatus}\"." : "The hosted signaling server account has changed the status from \"{oldstatus}\" to \"{newstatus}\".",
"error" : "خطا",
"The certificate of {host} expires in {days} days" : "The certificate of {host} expires in {days} days",
"The certificate of {host} expired" : "The certificate of {host} expired",
"Contact via Talk" : "Contact via Talk",
"Open Talk" : "Open Talk",
"Conversations" : "گفتگو",
"{user}" : "{user}",
"Messages" : "پیام ها",
"{user} in {conversation}" : "{user} in {conversation}",
"Messages in other conversations" : "Messages in other conversations",
"One-to-one rooms always need to show the other users avatar" : "One-to-one rooms always need to show the other users avatar",
"Invalid emoji character" : "Invalid emoji character",
"Invalid background color" : "Invalid background color",
"Avatar image is not square" : "تصویر آواتار مربع نیست",
"Room {number}" : "Room {number}",
"Failed to request trial because the trial server is unreachable. Please try again later." : "Failed to request trial because the trial server is unreachable. Please try again later.",
"There is a problem with the authentication of this instance. Maybe it is not reachable from the outside to verify it's URL." : "There is a problem with the authentication of this instance. Maybe it is not reachable from the outside to verify it's URL.",
"Something unexpected happened." : "Something unexpected happened.",
"The URL is invalid." : "The URL is invalid.",
"An HTTPS URL is required." : "An HTTPS URL is required.",
"The email address is invalid." : "The email address is invalid.",
"The language is invalid." : "The language is invalid.",
"The country is invalid." : "The country is invalid.",
"There is a problem with the request of the trial. Please check your logs for further information." : "There is a problem with the request of the trial. Please check your logs for further information.",
"Too many requests are send from your servers address. Please try again later." : "Too many requests are send from your servers address. Please try again later.",
"There is already a trial registered for this Nextcloud instance." : "There is already a trial registered for this Nextcloud instance.",
"Something unexpected happened. Please try again later." : "Something unexpected happened. Please try again later.",
"Failed to request trial because the trial server behaved wrongly. Please try again later." : "Failed to request trial because the trial server behaved wrongly. Please try again later.",
"Trial requested but failed to get account information. Please check back later." : "Trial requested but failed to get account information. Please check back later.",
"There is a problem with the authentication of this request. Maybe it is not reachable from the outside to verify it's URL." : "There is a problem with the authentication of this request. Maybe it is not reachable from the outside to verify it's URL.",
"Failed to fetch account information because the trial server behaved wrongly. Please check back later." : "Failed to fetch account information because the trial server behaved wrongly. Please check back later.",
"There is a problem with fetching the account information. Please check your logs for further information." : "There is a problem with fetching the account information. Please check your logs for further information.",
"There is no such account registered." : "این حساب کاربری ثبت نام نشده است.",
"Failed to fetch account information because the trial server is unreachable. Please check back later." : "Failed to fetch account information because the trial server is unreachable. Please check back later.",
"Deleting the hosted signaling server account failed. Please check back later." : "Deleting the hosted signaling server account failed. Please check back later.",
"Failed to delete the account because the trial server behaved wrongly. Please check back later." : "Failed to delete the account because the trial server behaved wrongly. Please check back later.",
"There is a problem with deleting the account. Please check your logs for further information." : "There is a problem with deleting the account. Please check your logs for further information.",
"Too many requests are sent from your servers address. Please try again later." : "Too many requests are sent from your servers address. Please try again later.",
"Failed to delete the account because the trial server is unreachable. Please check back later." : "Failed to delete the account because the trial server is unreachable. Please check back later.",
"Andorra" : "Andorra",
"United Arab Emirates" : "امارات متحده عربی",
"Afghanistan" : "افغانستان",
"Antigua and Barbuda" : "Antigua and Barbuda",
"Anguilla" : "Anguilla",
"Albania" : "آلبانی",
"Armenia" : "ارمنستان",
"Angola" : "آنگولا",
"Antarctica" : "Antarctica",
"Argentina" : "آرژانتین",
"American Samoa" : "American Samoa",
"Austria" : "استرالیا",
"Australia" : "استرالیا",
"Aruba" : "Aruba",
"Åland Islands" : "Åland Islands",
"Azerbaijan" : "آذربایجان",
"Bosnia and Herzegovina" : "Bosnia and Herzegovina",
"Barbados" : "Barbados",
"Bangladesh" : "بنگلادش",
"Belgium" : "بلژیک",
"Burkina Faso" : "بورکینافاسو",
"Bulgaria" : "بلغارستان",
"Bahrain" : "Bahrain",
"Burundi" : "بوروندی",
"Benin" : "بنین",
"Saint Barthélemy" : "Saint Barthélemy",
"Bermuda" : "Bermuda",
"Brunei Darussalam" : "Brunei Darussalam",
"Bolivia, Plurinational State of" : "Bolivia, Plurinational State of",
"Bonaire, Sint Eustatius and Saba" : "Bonaire, Sint Eustatius and Saba",
"Brazil" : "برزیل",
"Bahamas" : "باهاما",
"Bhutan" : "بوتان",
"Bouvet Island" : "Bouvet Island",
"Botswana" : "بوتسوانا",
"Belarus" : "بلاروس",
"Belize" : "بلیز",
"Canada" : "کانادا",
"Cocos (Keeling) Islands" : "Cocos (Keeling) Islands",
"Congo, the Democratic Republic of the" : "Congo, the Democratic Republic of the",
"Central African Republic" : "جمهوری آفریقای مرکزی",
"Congo" : "کنگو",
"Switzerland" : "سوئیس",
"Côte d'Ivoire" : "Côte d'Ivoire",
"Cook Islands" : "Cook Islands",
"Chile" : "شیلی",
"Cameroon" : "کامرون",
"China" : "چین",
"Colombia" : "کلومبیا",
"Costa Rica" : "کاستاریکا",
"Cuba" : "کوبا",
"Cabo Verde" : "Cabo Verde",
"Curaçao" : "Curaçao",
"Christmas Island" : "Christmas Island",
"Cyprus" : "قبرس",
"Czechia" : "Czechia",
"Germany" : "آلمان",
"Djibouti" : "جیبوتی",
"Denmark" : "دانمارک",
"Dominica" : "Dominica",
"Dominican Republic" : "جمهوری دومینیکن",
"Algeria" : "الجزایر",
"Ecuador" : "اکوادور",
"Estonia" : "استونی",
"Egypt" : "مصر",
"Western Sahara" : "Western Sahara",
"Eritrea" : "اریتره",
"Spain" : "اسپانیا",
"Ethiopia" : "اتیوپی",
"Finland" : "فنلاند",
"Fiji" : "فیجی",
"Falkland Islands (Malvinas)" : "Falkland Islands (Malvinas)",
"Micronesia, Federated States of" : "Micronesia, Federated States of",
"Faroe Islands" : "Faroe Islands",
"France" : "فرانسه",
"Gabon" : "گابن",
"United Kingdom of Great Britain and Northern Ireland" : "United Kingdom of Great Britain and Northern Ireland",
"Grenada" : "Grenada",
"Georgia" : "جورجیا",
"French Guiana" : "French Guiana",
"Guernsey" : "Guernsey",
"Ghana" : "غنا",
"Gibraltar" : "Gibraltar",
"Greenland" : "گرینلند",
"Gambia" : "گامبیا",
"Guinea" : "گینه",
"Guadeloupe" : "Guadeloupe",
"Equatorial Guinea" : "گینه استوایی",
"Greece" : "یونان",
"South Georgia and the South Sandwich Islands" : "South Georgia and the South Sandwich Islands",
"Guatemala" : "گواتمالا",
"Guam" : "Guam",
"Guinea-Bissau" : "گینه بیسائو",
"Guyana" : "گویان",
"Hong Kong" : "Hong Kong",
"Heard Island and McDonald Islands" : "Heard Island and McDonald Islands",
"Honduras" : "هندوراس",
"Croatia" : "کرواسی",
"Haiti" : "هائیتی",
"Hungary" : "مجارستان",
"Indonesia" : "اندونزی",
"Ireland" : "ایرلند",
"Israel" : "اسرائیل",
"Isle of Man" : "Isle of Man",
"India" : "هند",
"British Indian Ocean Territory" : "British Indian Ocean Territory",
"Iraq" : "عراق",
"Iran, Islamic Republic of" : "Iran, Islamic Republic of",
"Iceland" : "ایسلند",
"Italy" : "ایتالیا",
"Jersey" : "Jersey",
"Jamaica" : "جامایکا",
"Jordan" : "جردن",
"Japan" : "ژاپن",
"Kenya" : "کنیا",
"Kyrgyzstan" : "قرقیزستان",
"Cambodia" : "کمبوج",
"Kiribati" : "Kiribati",
"Comoros" : "Comoros",
"Saint Kitts and Nevis" : "Saint Kitts and Nevis",
"Korea, Democratic People's Republic of" : "Korea, Democratic People's Republic of",
"Korea, Republic of" : "Korea, Republic of",
"Kuwait" : "کویت",
"Cayman Islands" : "Cayman Islands",
"Kazakhstan" : "قزاقستان",
"Lao People's Democratic Republic" : "Lao People's Democratic Republic",
"Lebanon" : "لبنان",
"Saint Lucia" : "Saint Lucia",
"Liechtenstein" : "Liechtenstein",
"Sri Lanka" : "سریلانکا",
"Liberia" : "لیبریا",
"Lesotho" : "لسوتو",
"Lithuania" : "لیتوانی",
"Luxembourg" : "لوکزامبورگ",
"Latvia" : "لتونی",
"Libya" : "لیبی",
"Morocco" : "مراکش",
"Monaco" : "Monaco",
"Moldova, Republic of" : "Moldova, Republic of",
"Montenegro" : "مونتنگرو",
"Saint Martin (French part)" : "Saint Martin (French part)",
"Madagascar" : "ماداگاسکار",
"Marshall Islands" : "Marshall Islands",
"Macedonia, the former Yugoslav Republic of" : "Macedonia, the former Yugoslav Republic of",
"Mali" : "مالی",
"Myanmar" : "میانمار",
"Mongolia" : "مغولستان",
"Macao" : "Macao",
"Northern Mariana Islands" : "Northern Mariana Islands",
"Martinique" : "Martinique",
"Mauritania" : "موریتانی",
"Montserrat" : "Montserrat",
"Malta" : "Malta",
"Mauritius" : "Mauritius",
"Maldives" : "Maldives",
"Malawi" : "مالاوی",
"Mexico" : "مکزیک",
"Malaysia" : "مالزی",
"Mozambique" : "موزامبیک",
"Namibia" : "ناميبيا",
"New Caledonia" : "کالدونیای جدید",
"Niger" : "نیجر",
"Norfolk Island" : "Norfolk Island",
"Nigeria" : "نیجرا",
"Nicaragua" : "نیجریه",
"Netherlands" : "هلند",
"Norway" : "نروژ",
"Nepal" : "نپال",
"Nauru" : "Nauru",
"Niue" : "Niue",
"New Zealand" : "نیوزلند",
"Oman" : "عمان",
"Panama" : "پاناما",
"Peru" : "پرو",
"French Polynesia" : "French Polynesia",
"Papua New Guinea" : "پاپوا گینه نو",
"Philippines" : "فلیپین",
"Pakistan" : "پاکستان",
"Poland" : "لهستان",
"Saint Pierre and Miquelon" : "Saint Pierre and Miquelon",
"Pitcairn" : "Pitcairn",
"Puerto Rico" : "پورتوریکو",
"Palestine, State of" : "Palestine, State of",
"Portugal" : "پرتغال",
"Palau" : "Palau",
"Paraguay" : "پاروگیه",
"Qatar" : "قطر",
"Réunion" : "Réunion",
"Romania" : "رومانی",
"Serbia" : "صربستان",
"Russian Federation" : "Russian Federation",
"Rwanda" : "رواندا",
"Saudi Arabia" : "عربستان",
"Solomon Islands" : "جزایر سلیمان",
"Seychelles" : "Seychelles",
"Sudan" : "سودان",
"Sweden" : "سوئد",
"Singapore" : "سنگاپور",
"Saint Helena, Ascension and Tristan da Cunha" : "Saint Helena, Ascension and Tristan da Cunha",
"Slovenia" : "اسلونی",
"Svalbard and Jan Mayen" : "Svalbard and Jan Mayen",
"Slovakia" : "اسلواکی",
"Sierra Leone" : "سیرا لئون",
"San Marino" : "San Marino",
"Senegal" : "سنگال",
"Somalia" : "سومالی",
"Suriname" : "سوریه",
"South Sudan" : "سومالی شمالی",
"Sao Tome and Principe" : "Sao Tome and Principe",
"El Salvador" : "سلوادور",
"Sint Maarten (Dutch part)" : "Sint Maarten (Dutch part)",
"Syrian Arab Republic" : "Syrian Arab Republic",
"Eswatini" : "Eswatini",
"Turks and Caicos Islands" : "Turks and Caicos Islands",
"Chad" : "چد",
"French Southern Territories" : "French Southern Territories",
"Togo" : "توگو",
"Thailand" : "تایلند",
"Tajikistan" : "تاجیکستان",
"Tokelau" : "Tokelau",
"Timor-Leste" : "تیمور-لست",
"Turkmenistan" : "ترکمنستان",
"Tunisia" : "تونس",
"Tonga" : "تونگا",
"Turkey" : "jv;di",
"Trinidad and Tobago" : "ترینیداد و توباگو",
"Tuvalu" : "Tuvalu",
"Taiwan, Province of China" : "Taiwan, Province of China",
"Tanzania, United Republic of" : "Tanzania, United Republic of",
"Ukraine" : "اوکراین",
"Uganda" : "اوگاندا",
"United States Minor Outlying Islands" : "United States Minor Outlying Islands",
"United States of America" : "United States of America",
"Uruguay" : "اوروگویه",
"Uzbekistan" : "اوزبکستان",
"Holy See" : "Holy See",
"Saint Vincent and the Grenadines" : "Saint Vincent and the Grenadines",
"Venezuela, Bolivarian Republic of" : "Venezuela, Bolivarian Republic of",
"Virgin Islands, British" : "Virgin Islands, British",
"Virgin Islands, U.S." : "Virgin Islands, U.S.",
"Viet Nam" : "Viet Nam",
"Vanuatu" : "وانتویو",
"Wallis and Futuna" : "Wallis and Futuna",
"Samoa" : "Samoa",
"Yemen" : "یمن",
"Mayotte" : "Mayotte",
"South Africa" : "آفریقا شمالی",
"Zambia" : "زامبی",
"Zimbabwe" : "زیمباوه",
"Federation" : "Federation",
"High-performance backend" : "High-performance backend",
"Error: Cannot connect to server" : "Error: Cannot connect to server",
"Error: Server did not respond with proper JSON" : "Error: Server did not respond with proper JSON",
"Error: Certificate expired" : "Error: Certificate expired",
"Could not get version" : "Could not get version",
"Error: Running version: {version}; Server needs to be updated to be compatible with this version of Talk" : "Error: Running version: {version}; Server needs to be updated to be compatible with this version of Talk",
"Error: Server responded with: {error}" : "Error: Server responded with: {error}",
"Error: Unknown error occurred" : "Error: Unknown error occurred",
"Recording backend" : "Recording backend",
"Invalid date, date format must be YYYY-MM-DD" : "تاریخ نامعتبر است ، قالب تاریخ باید YYYY-MM-DD باشد",
"Conversation not found" : "Conversation not found",
"Chat, video & audio-conferencing using WebRTC" : "Chat, video & audio-conferencing using WebRTC",
"Navigating away from the page will leave the call in {conversation}" : "Navigating away from the page will leave the call in {conversation}",
"Leave call" : "Leave call",
"Stay in call" : "Stay in call",
"Discuss this file" : "Discuss this file",
"Share this file with others to discuss it" : "Share this file with others to discuss it",
"Share this file" : "Share this file",
"Join conversation" : "عضویت در گفتگو",
"Request password" : "Request password",
"Error requesting the password." : "Error requesting the password.",
"This conversation has ended" : "This conversation has ended",
"Error occurred when joining the conversation" : "Error occurred when joining the conversation",
"Close Talk sidebar" : "Close Talk sidebar",
"Open Talk sidebar" : "Open Talk sidebar",
"Limit to groups" : "محدود کردن به گروه ها",
"When at least one group is selected, only people of the listed groups can be part of conversations." : "When at least one group is selected, only people of the listed groups can be part of conversations.",
"Guests can still join public conversations." : "Guests can still join public conversations.",
"Users that cannot use Talk anymore will still be listed as participants in their previous conversations and also their chat messages will be kept." : "Users that cannot use Talk anymore will still be listed as participants in their previous conversations and also their chat messages will be kept.",
"Limit using Talk" : "Limit using Talk",
"Limit creating a public and group conversation" : "Limit creating a public and group conversation",
"Limit creating conversations" : "Limit creating conversations",
"Limit starting a call" : "Limit starting a call",
"Limit starting calls" : "Limit starting calls",
"When a call has started, everyone with access to the conversation can join the call." : "When a call has started, everyone with access to the conversation can join the call.",
"Everyone" : "همه",
"Users and moderators" : "Users and moderators",
"Moderators only" : "Moderators only",
"Disable calls" : "Disable calls",
"Save changes" : "ذخیره تغییرات",
"Saving …" : "ذخیره کردن …",
"Saved!" : "ذخیره!",
"Bots settings" : "Bots settings",
"State" : "وضعیت",
"Name" : "نام",
"Description" : "توضیحات",
"Last error" : "Last error",
"Total errors count" : "Total errors count",
"Find more bots" : "Find more bots",
"The following bots are installed on this server. In the documentation you can find details how to {linkstart1}build your own bot{linkend} or a {linkstart2}list of bots{linkend} to enable on your server." : "The following bots are installed on this server. In the documentation you can find details how to {linkstart1}build your own bot{linkend} or a {linkstart2}list of bots{linkend} to enable on your server.",
"No bots are installed on this server. In the documentation you can find details how to {linkstart1}build your own bot{linkend} or a {linkstart2}list of bots{linkend} to enable on your server." : "No bots are installed on this server. In the documentation you can find details how to {linkstart1}build your own bot{linkend} or a {linkstart2}list of bots{linkend} to enable on your server.",
"Description is not provided" : "Description is not provided",
"Locked for moderators" : "Locked for moderators",
"Enabled" : "فعال شده",
"Disabled" : "غیرفعال شده",
"Beta" : "بتا",
"Permissions" : "مجوزها",
"General settings" : "تنظیمات عمومی",
"Default notification settings" : "تنظیمات اعلان پیشفرض",
"Default group notification" : "Default group notification",
"Default group notification for new groups" : "Default group notification for new groups",
"Integration into other apps" : "Integration into other apps",
"Allow conversations on files" : "Allow conversations on files",
"Allow conversations on public shares for files" : "Allow conversations on public shares for files",
"Enable encryption" : "فعال کردن رمزگذاری",
"All messages" : "All messages",
"@-mentions only" : "@-mentions only",
"Off" : "خاموش",
"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." : "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.",
"URL of this Nextcloud instance" : "URL of this Nextcloud instance",
"Full name of the user requesting the trial" : "Full name of the user requesting the trial",
"Email of the user" : "Email of the user",
"Language" : "زبان",
"Country" : "کشور",
"Request signaling server trial" : "Request signaling server trial",
"You can see the current status of your hosted signaling server in the following table." : "You can see the current status of your hosted signaling server in the following table.",
"Status" : "وضعیت",
"Created at" : "ایجاد شده در",
"Expires at" : "Expires at",
"Limits" : "Limits",
"Delete the signaling server account" : "Delete the signaling server account",
"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}." : "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}.",
"Pending" : "در انتظار",
"Error" : "خطا",
"Blocked" : "مسدود کردن",
"Active" : "فعال کردن",
"Expired" : "منقضی شده",
"The trial could not be requested. Please try again later." : "The trial could not be requested. Please try again later.",
"The account could not be deleted. Please try again later." : "The account could not be deleted. Please try again later.",
"_%n user_::_%n users_" : ["%n user","%n users"],
"Matterbridge integration" : "Matterbridge integration",
"Enable Matterbridge integration" : "Enable Matterbridge integration",
"Installed version: {version}" : "Installed version: {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}." : "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}.",
"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/\"." : "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/\".",
"Matterbridge binary was not found or couldn't be executed." : "Matterbridge binary was not found or couldn't be executed.",
"You can also set the path to the Matterbridge binary manually via the config. Check the {linkstart}Matterbridge integration documentation{linkend} for more information." : "You can also set the path to the Matterbridge binary manually via the config. Check the {linkstart}Matterbridge integration documentation{linkend} for more information.",
"Downloading …" : "Downloading …",
"Install Talk Matterbridge" : "Install Talk Matterbridge",
"An error occurred while installing the Matterbridge app" : "An error occurred while installing the Matterbridge app",
"An error occurred while installing the Talk Matterbridge. Please install it manually" : "An error occurred while installing the Talk Matterbridge. Please install it manually",
"Failed to execute Matterbridge binary." : "Failed to execute Matterbridge binary.",
"Recording backend URL" : "Recording backend URL",
"Validate SSL certificate" : "Validate SSL certificate",
"Delete this server" : "Delete this server",
"Test this server" : "Test this server",
"Status: Checking connection" : "Status: Checking connection",
"OK: Running version: {version}" : "OK: Running version: {version}",
"Add a new recording backend server" : "Add a new recording backend server",
"Shared secret" : "Shared secret",
"The PHP settings \"upload_max_filesize\" or \"post_max_size\" only will allow to upload files up to {maxUpload}." : "The PHP settings \"upload_max_filesize\" or \"post_max_size\" only will allow to upload files up to {maxUpload}.",
"Recording backend settings saved" : "Recording backend settings saved",
"SIP configuration" : "SIP configuration",
"Restrict SIP configuration" : "Restrict SIP configuration",
"Enable SIP configuration" : "Enable SIP configuration",
"Only users of the following groups can enable SIP in conversations they moderate" : "Only users of the following groups can enable SIP in conversations they moderate",
"Phone number (Country)" : "Phone number (Country)",
"This information is sent in invitation emails as well as displayed in the sidebar to all participants." : "This information is sent in invitation emails as well as displayed in the sidebar to all participants.",
"SIP configuration saved!" : "SIP configuration saved!",
"High-performance backend URL" : "High-performance backend URL",
"High-performance backend settings saved" : "High-performance backend settings saved",
"STUN server URL" : "STUN server URL",
"The server address is invalid" : "The server address is invalid",
"STUN servers" : "STUN servers",
"A STUN server is used to determine the public IP address of participants behind a router." : "A STUN server is used to determine the public IP address of participants behind a router.",
"Add a new STUN server" : "Add a new STUN server",
"STUN settings saved" : "STUN settings saved",
"TURN server schemes" : "TURN server schemes",
"TURN server URL" : "TURN server URL",
"TURN server secret" : "TURN server secret",
"TURN server protocols" : "TURN server protocols",
"{schema} scheme must be used with a domain" : "{schema} scheme must be used with a domain",
"{option1} and {option2}" : "{option1} and {option2}",
"{option} only" : "{option} only",
"OK: Successful ICE candidates returned by the TURN server" : "OK: Successful ICE candidates returned by the TURN server",
"Error: No working ICE candidates returned by the TURN server" : "Error: No working ICE candidates returned by the TURN server",
"Testing whether the TURN server returns ICE candidates" : "Testing whether the TURN server returns ICE candidates",
"TURN servers" : "TURN servers",
"Add a new TURN server" : "Add a new TURN server",
"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." : "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.",
"TURN settings saved" : "TURN settings saved",
"Web server setup checks" : "Web server setup checks",
"Files required for virtual background can be loaded" : "Files required for virtual background can be loaded",
"Failed" : "Failed",
"OK" : "تایید",
"Checking …" : "Checking …",
"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." : "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.",
"Failed: \".wasm\" and \".tflite\" files were not properly returned by the web server. Please check \"System requirements\" section in Talk documentation." : "Failed: \".wasm\" and \".tflite\" files were not properly returned by the web server. Please check \"System requirements\" section in Talk documentation.",
"OK: \".wasm\" and \".tflite\" files were properly returned by the web server." : "OK: \".wasm\" and \".tflite\" files were properly returned by the web server.",
"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." : "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.",
"Could not detect the PHP and Apache configuration because exec is disabled or apachectl is not working as expected. 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." : "Could not detect the PHP and Apache configuration because exec is disabled or apachectl is not working as expected. 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.",
"Number of breakout rooms" : "Number of breakout rooms",
"Assignment method" : "Assignment method",
"Automatically assign participants" : "Automatically assign participants",
"Manually assign participants" : "Manually assign participants",
"Allow participants to choose" : "Allow participants to choose",
"Assign participants to rooms" : "Assign participants to rooms",
"Create rooms" : "Create rooms",
"Configure breakout rooms" : "Configure breakout rooms",
"Unassigned participants" : "Unassigned participants",
"Back" : "بازگشت",
"Assign" : "Assign",
"Delete breakout rooms" : "Delete breakout rooms",
"Cancel" : "لغو",
"Confirm" : "تائید",
"Create breakout rooms" : "Create breakout rooms",
"Reset" : "بازنشاندن",
"Current breakout rooms and settings will be lost" : "Current breakout rooms and settings will be lost",
"Room {roomNumber}" : "Room {roomNumber}",
"Add participant \"{user}\"" : "Add participant \"{user}\"",
"Now" : "Now",
"No upcoming events" : "رویداد پیشرویی وجود ندارد",
"From" : "از",
"To" : "به",
"Calendar" : "تقویم",
"Attendees" : "شرکت کنندگان",
"Save" : "ذخیره",
"Search participants" : "Search participants",
"No results" : "نتیجه ای یافت نشد",
"Done" : "Done",
"This conversation is read-only" : "This conversation is read-only",
"{nickName} raised their hand." : "{nickName} raised their hand.",
"A participant raised their hand." : "A participant raised their hand.",
"Previous page of videos" : "Previous page of videos",
"Next page of videos" : "Next page of videos",
"Collapse stripe" : "Collapse stripe",
"Expand stripe" : "Expand stripe",
"Copy link" : "کپی کردن لینک",
"Connecting …" : "Connecting …",
"Waiting for {user} to join the call" : "Waiting for {user} to join the call",
"Waiting for others to join the call …" : "Waiting for others to join the call …",
"You can invite others in the participant tab of the sidebar" : "شما میتوانید دیگران را از زبانه اعضا در نوارکناری دعوت کنید",
"You can invite others in the participant tab of the sidebar or share this link to invite others!" : "You can invite others in the participant tab of the sidebar or share this link to invite others!",
"Share this link to invite others!" : "این پیوند را به اشتراک بگذارید تا دیگران را دعوت کنید!",
"You are not allowed to enable audio" : "You are not allowed to enable audio",
"No audio. Click to select device" : "No audio. Click to select device",
"Mute audio" : "Mute audio",
"Mute audio (M)" : "Mute audio (M)",
"Unmute audio" : "Unmute audio",
"Unmute audio (M)" : "Unmute audio (M)",
"Access to camera was denied" : "Access to camera was denied",
"Error while accessing camera: It is likely in use by another program" : "Error while accessing camera: It is likely in use by another program",
"Error while accessing camera" : "Error while accessing camera",
"You have been muted by a moderator" : "You have been muted by a moderator",
"You are not allowed to enable video" : "You are not allowed to enable video",
"No video. Click to select device" : "No video. Click to select device",
"Disable video" : "Disable video",
"Disable video (V)" : "Disable video (V)",
"Enable video" : "Enable video",
"Enable video (V)" : "Enable video (V)",
"Enable video - Your connection will be briefly interrupted when enabling the video for the first time" : "Enable video - Your connection will be briefly interrupted when enabling the video for the first time",
"Enable video (V) - Your connection will be briefly interrupted when enabling the video for the first time" : "Enable video (V) - Your connection will be briefly interrupted when enabling the video for the first time",
"Enable video. Your connection will be briefly interrupted when enabling the video for the first time" : "Enable video. Your connection will be briefly interrupted when enabling the video for the first time",
"You" : "شما",
"Show screen" : "Show screen",
"Stop following" : "Stop following",
"Mute" : "Mute",
"Muted" : "Muted",
"Connection could not be established …" : "Connection could not be established …",
"Connection was lost and could not be re-established …" : "Connection was lost and could not be re-established …",
"Connection could not be established. Trying again …" : "Connection could not be established. Trying again …",
"Connection lost. Trying to reconnect …" : "Connection lost. Trying to reconnect …",
"Connection problems …" : "Connection problems …",
"Collapse" : "فروکش کردن",
"Expand" : "بسط دادن",
"Conversation messages" : "Conversation messages",
"Scroll to bottom" : "Scroll to bottom",
"Post message" : "Post message",
"You need to be logged in to upload files" : "You need to be logged in to upload files",
"Drop your files to upload" : "برای بارگذاری، پروندهها را اینجا رها کنید",
"Favorite" : "برگزیده",
"Hide details" : "مخفی کردن جزئیات",
"Show details" : "Show details",
"Date:" : "تاریخ:",
"Enter a name for this conversation" : "Enter a name for this conversation",
"Edit conversation name" : "Edit conversation name",
"Edit conversation description" : "Edit conversation description",
"Enter a description for this conversation" : "Enter a description for this conversation",
"Picture" : "Picture",
"Error while updating conversation name" : "Error while updating conversation name",
"Error while updating conversation description" : "Error while updating conversation description",
"The following bots can be enabled in this conversation. Reach out to your administration to get more bots installed on this server." : "The following bots can be enabled in this conversation. Reach out to your administration to get more bots installed on this server.",
"No bots are installed on this server. Reach out to your administration to get bots installed on this server." : "No bots are installed on this server. Reach out to your administration to get bots installed on this server.",
"Disable" : "غیرفعال کردن",
"Enable" : "فعالسازی",
"Set up breakout rooms for this conversation" : "Set up breakout rooms for this conversation",
"Breakout rooms" : "Breakout rooms",
"Set emoji as conversation picture" : "Set emoji as conversation picture",
"Set background color for conversation picture" : "Set background color for conversation picture",
"Upload conversation picture" : "Upload conversation picture",
"Choose conversation picture from files" : "Choose conversation picture from files",
"Remove conversation picture" : "Remove conversation picture",
"The file must be a PNG or JPG" : "فرمت فایل باید PNG یا JPG باشد",
"Set picture" : "Set picture",
"Choose your conversation picture" : "Choose your conversation picture",
"Choose" : "انتخاب کنید",
"Please select a valid PNG or JPG file" : "Please select a valid PNG or JPG file",
"Error setting conversation picture" : "Error setting conversation picture",
"Could not set the conversation picture: {error}" : "Could not set the conversation picture: {error}",
"Error cropping conversation picture" : "Error cropping conversation picture",
"Error removing conversation picture" : "Error removing conversation picture",
"Edit the default permissions for participants in this conversation. These settings do not affect moderators." : "Edit the default permissions for participants in this conversation. These settings do not affect moderators.",
"Every time permissions are modified in this section, custom permissions previously assigned to individual participants will be lost." : "Every time permissions are modified in this section, custom permissions previously assigned to individual participants will be lost.",
"All permissions" : "All permissions",
"Participants have permissions to start a call, join a call, enable audio and video, and share screen." : "Participants have permissions to start a call, join a call, enable audio and video, and share screen.",
"Restricted" : "Restricted",
"Participants can join calls, but cannot enable audio nor video nor share screen until a moderator manually grants them permissions." : "Participants can join calls, but cannot enable audio nor video nor share screen until a moderator manually grants them permissions.",
"Advanced permissions" : "Advanced permissions",
"Edit permissions" : "Edit permissions",
"Default permissions modified for {conversationName}" : "Default permissions modified for {conversationName}",
"Could not modify default permissions for {conversationName}" : "Could not modify default permissions for {conversationName}",
"Conversation settings" : "تنظیمات گفتگو",
"Basic Info" : "Basic Info",
"Personal" : "شخصی",
"Always show the device preview screen before joining a call in this conversation." : "Always show the device preview screen before joining a call in this conversation.",
"Moderation" : "Moderation",
"Meeting" : "ملاقات",
"Breakout Rooms" : "Breakout Rooms",
"Matterbridge" : "Matterbridge",
"Bots" : "Bots",
"Danger zone" : "Danger zone",
"Be careful, these actions cannot be undone." : "Be careful, these actions cannot be undone.",
"Leave conversation" : "ترک صحبت",
"Once a conversation is left, to rejoin a closed conversation, an invite is needed. An open conversation can be rejoined at any time." : "Once a conversation is left, to rejoin a closed conversation, an invite is needed. An open conversation can be rejoined at any time.",
"No" : "خیر",
"Yes" : "بله",
"Delete conversation" : "مکالمه را حذف کنید",
"Permanently delete this conversation." : "Permanently delete this conversation.",
"Delete chat messages" : "Delete chat messages",
"Permanently delete all the messages in this conversation." : "Permanently delete all the messages in this conversation.",
"Delete all chat messages" : "Delete all chat messages",
"Do you really want to delete \"{displayName}\"?" : "Do you really want to delete \"{displayName}\"?",
"Do you really want to delete all messages in \"{displayName}\"?" : "Do you really want to delete all messages in \"{displayName}\"?",
"You need to promote a new moderator before you can leave the conversation" : "You need to promote a new moderator before you can leave the conversation",
"Error while deleting conversation" : "Error while deleting conversation",
"Error while clearing chat history" : "Error while clearing chat history",
"Message expiration" : "Message expiration",
"Chat messages can be expired after a certain time. Note: Files shared in chat will not be deleted for the owner, but will no longer be shared in the conversation." : "Chat messages can be expired after a certain time. Note: Files shared in chat will not be deleted for the owner, but will no longer be shared in the conversation.",
"Custom expiration time" : "Custom expiration time",
"Message expiration disabled" : "Message expiration disabled",
"Message expiration set: {duration}" : "Message expiration set: {duration}",
"Error when trying to set message expiration" : "Error when trying to set message expiration",
"_%n hour_::_%n hours_" : ["%n hour","%n hours"],
"_%n day_::_%n days_" : ["%n day","%n days"],
"_%n week_::_%n weeks_" : ["%n week","%n weeks"],
"Guest access" : "Guest access",
"Allow guests to join this conversation via link" : "Allow guests to join this conversation via link",
"Password protection" : "Password protection",
"Set a password" : "رمزعبور تنظیم کنید",
"Enter new password" : "Enter new password",
"Save password" : "Save password",
"Resend invitations" : "Resend invitations",
"Open conversation to registered users, showing it in search results" : "Open conversation to registered users, showing it in search results",
"Error occurred when opening or limiting the conversation" : "Error occurred when opening or limiting the conversation",
"Enabling the lobby will remove non-moderators from the ongoing call." : "Enabling the lobby will remove non-moderators from the ongoing call.",
"Enable lobby, restricting the conversation to moderators" : "Enable lobby, restricting the conversation to moderators",
"Meeting start time" : "Meeting start time",
"Start time (optional)" : "Start time (optional)",
"Error occurred when restricting the conversation to moderator" : "Error occurred when restricting the conversation to moderator",
"Error occurred when opening the conversation to everyone" : "Error occurred when opening the conversation to everyone",
"Start time has been updated" : "Start time has been updated",
"Error occurred while updating start time" : "Error occurred while updating start time",
"Lock conversation" : "Lock conversation",
"This will also terminate the ongoing call." : "This will also terminate the ongoing call.",
"Lock the conversation to prevent anyone to post messages or start calls" : "Lock the conversation to prevent anyone to post messages or start calls",
"Error occurred when locking the conversation" : "Error occurred when locking the conversation",
"Error occurred when unlocking the conversation" : "Error occurred when unlocking the conversation",
"Edit" : "ویرایش",
"More information" : "More information",
"Delete" : "حذف",
"You can bridge channels from various instant messaging systems with Matterbridge." : "You can bridge channels from various instant messaging systems with Matterbridge.",
"More info on Matterbridge" : "More info on Matterbridge",
"Enable bridge" : "Enable bridge",
"Show Matterbridge log" : "Show Matterbridge log",
"Log content" : "محتوا را وارد کنید",
"Add new bridged channel to current conversation" : "Add new bridged channel to current conversation",
"unknown state" : "unknown state",
"running" : "running",
"not running, check Matterbridge log" : "not running, check Matterbridge log",
"not running" : "not running",
"Bridge saved" : "Bridge saved",
"Notifications" : "آگاهیها",
"Notify about calls in this conversation" : "Notify about calls in this conversation",
"Phone and SIP dial-in" : "Phone and SIP dial-in",
"Enable phone and SIP dial-in" : "Enable phone and SIP dial-in",
"Allow to dial-in without a PIN" : "Allow to dial-in without a PIN",
"SIP dial-in is now possible without PIN requirement" : "SIP dial-in is now possible without PIN requirement",
"SIP dial-in is now enabled" : "SIP dial-in is now enabled",
"SIP dial-in is now disabled" : "SIP dial-in is now disabled",
"Error occurred when enabling SIP dial-in" : "Error occurred when enabling SIP dial-in",
"Error occurred when disabling SIP dial-in" : "Error occurred when disabling SIP dial-in",
"Enter your name" : "اسمت را وارد کن",
"Login" : "ورود",
"Conversation actions" : "Conversation actions",
"Mark as read" : "علامت به عنوان خواندهشده",
"Mark as unread" : "علامت به عنوان خواندهنشده",
"Remove from favorites" : "حذف از برگزیدهها",
"Add to favorites" : "افزودن به برگزیدهها",
"You need to promote a new moderator before you can leave the conversation." : "You need to promote a new moderator before you can leave the conversation.",
"Conversation list" : "Conversation list",
"Filter unread mentions" : "Filter unread mentions",
"Filter unread messages" : "Filter unread messages",
"Clear filters" : "Clear filters",
"Create a new conversation" : "Create a new conversation",
"Join open conversations" : "Join open conversations",
"Clear filter" : "پاک کردن پالایه",
"Unread mentions" : "Unread mentions",
"No matches found" : "جستجو حاصلی دربرنداشت",
"Open conversations" : "مکالمه جدید",
"Users" : "کاربران",
"Groups" : "گروه ها",
"No search results" : "جستجو نتیجهای نداشت",
"Loading" : "در حال بار گزاری",
"Talk settings" : "Talk settings",
"No conversations found" : "No conversations found",
"Users and groups" : "Users and groups",
"Other sources" : "Other sources",
"An error occurred while performing the search" : "An error occurred while performing the search",
"You are currently waiting in the lobby" : "You are currently waiting in the lobby",
"The meeting will start soon" : "The meeting will start soon",
"This meeting is scheduled for {startTime}" : "This meeting is scheduled for {startTime}",
"No microphone available" : "No microphone available",
"Select microphone" : "Select microphone",
"No camera available" : "No camera available",
"Select camera" : "Select camera",
"None" : "هیچکدام",
"Media settings" : "Media settings",
"Always show preview for this conversation" : "Always show preview for this conversation",
"The call is being recorded." : "The call is being recorded.",
"Call without notification" : "Call without notification",
"The conversation participants will not be notified about this call" : "The conversation participants will not be notified about this call",
"Normal call" : "Normal call",
"The conversation participants will be notified about this call" : "The conversation participants will be notified about this call",
"Devices" : "Devices",
"Backgrounds" : "Backgrounds",
"No audio" : "No audio",
"No camera" : "No camera",