forked from signalapp/Signal-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.json
5864 lines (5864 loc) · 323 KB
/
messages.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
{
"smartling": {
"placeholder_format_custom": "(\\$.+?\\$)",
"translate_paths": [
{
"key": "{*}/message",
"path": "*/message",
"instruction": "*/description"
}
]
},
"AddUserToAnotherGroupModal__title": {
"message": "गटात जोडा",
"description": "Shown as the title of the dialog that allows you to add a contact to an group"
},
"AddUserToAnotherGroupModal__confirm-title": {
"message": "नवीन सदस्य जोडायचा?",
"description": "Shown as the title of the confirmation dialog when adding a contact to a group, after having selected the group"
},
"AddUserToAnotherGroupModal__confirm-add": {
"message": "जोडा",
"description": "Shown in the affirmative button of the confirmation dialog when adding a contact to a group"
},
"AddUserToAnotherGroupModal__confirm-message": {
"message": "“$group$” गटामध्ये “$contact$” ला जोडायचे",
"description": "Shown in the confirmation dialog body when adding a contact to a group"
},
"AddUserToAnotherGroupModal__toast--user-added-to-group": {
"message": "$contact$ हा $group$ मध्ये जोडला गेला होता",
"description": "Shown in toast after a user is added to an existing group"
},
"AddUserToAnotherGroupModal__toast--adding-user-to-group": {
"message": "$contact$ ला जोडत आहे...",
"description": "Shown in toast while a user is being added to a group"
},
"GroupListItem__message-default": {
"message": "$count$सदस्य",
"description": "Shown below the group name when selecting a group to invite a contact to"
},
"GroupListItem__message-already-member": {
"message": "आधीपासून सदस्य आहे",
"description": "Shown below the group name when selecting a group to invite a contact to, when the group item is disabled"
},
"GroupListItem__message-pending": {
"message": "सदस्यत्व प्रलंबित आहे",
"description": "Shown below the group name when selecting a group to invite a contact to, when the group item is disabled"
},
"softwareAcknowledgments": {
"message": "सॉफ्टवेअर पोचपावती",
"description": "Shown in the about box for the link to software acknowledgments"
},
"privacyPolicy": {
"message": "अटी आणि गोपनीयता धोरण",
"description": "Shown in the about box for the link to https://signal.org/legal"
},
"appleSilicon": {
"message": "Apple सिलिकॉन",
"description": "Shown in the about box for Apple silicon product name"
},
"copyErrorAndQuit": {
"message": "त्रुटी कॉपी करा आणि सोडा",
"description": "Shown in the top-level error popup, allowing user to copy the error text and close the app"
},
"unknownContact": {
"message": "अज्ञात संपर्क",
"description": "Shown as the name of a contact if we don't have any displayable information about them"
},
"unknownGroup": {
"message": "अज्ञात गट",
"description": "Shown as the name of a group if we don't have any information about it"
},
"databaseError": {
"message": "डेटाबेस त्रुटी",
"description": "Shown in a popup if the database cannot start up properly"
},
"deleteAndRestart": {
"message": "सर्व डेटा हटवा आणि पुन्हा सुरू करा",
"description": "Shown in a popup if the database cannot start up properly; allows user to delete database and restart"
},
"mainMenuFile": {
"message": "फाईल",
"description": "The label that is used for the File menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
"mainMenuCreateStickers": {
"message": "स्टिकर पॅक तयार करा/अपलोड करा",
"description": "The label that is used for the Create/upload sticker pack option in the File menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
"mainMenuEdit": {
"message": "संपादित करा",
"description": "The label that is used for the Edit menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
"mainMenuView": {
"message": "दृश्य",
"description": "The label that is used for the View menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
"mainMenuWindow": {
"message": "पटल",
"description": "The label that is used for the Window menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
"mainMenuHelp": {
"message": "मदत",
"description": "The label that is used for the Help menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
"mainMenuSettings": {
"message": "प्राधान्यता…",
"description": "The label that is used for the Preferences menu in the program main menu. This should be consistent with the standard naming for ‘Preferences’ on the operating system."
},
"appMenuServices": {
"message": "सेवा",
"description": "Application menu item for macOS 'Services'"
},
"appMenuHide": {
"message": "लपवा",
"description": "Application menu command to hide the window"
},
"appMenuHideOthers": {
"message": "इतर लपवा",
"description": "Application menu command to hide all other windows"
},
"appMenuUnhide": {
"message": "सर्व दाखवा",
"description": "Application menu command to show all application windows"
},
"appMenuQuit": {
"message": "Signal बंद करा",
"description": "Application menu command to close the application"
},
"editMenuUndo": {
"message": "अनडू करा",
"description": "Edit menu command to remove recently-typed text"
},
"editMenuRedo": {
"message": "रीडू करा",
"description": "Edit menu command to restore previously undone typed text"
},
"editMenuCut": {
"message": "कापा",
"description": "Edit menu command to remove selected text and add it to clipboard"
},
"editMenuCopy": {
"message": "कॉपी करा",
"description": "Edit menu command to add selected text to clipboard"
},
"editMenuPaste": {
"message": "चिकटवा",
"description": "Edit menu command to insert text from clipboard at cursor location"
},
"editMenuPasteAndMatchStyle": {
"message": "चिकटवा आणि शैली जुळवा",
"description": "Edit menu command to insert text from clipboard at cursor location, taking only text and not style information"
},
"editMenuDelete": {
"message": "काढून टाका",
"description": "Edit menu command to remove the selected text"
},
"editMenuSelectAll": {
"message": "सर्व निवडा",
"description": "Edit menu command to select all of the text in selected text box"
},
"editMenuStartSpeaking": {
"message": "बोलणे सुरू करा",
"description": "Edit menu item under 'speech' to start dictation"
},
"editMenuStopSpeaking": {
"message": "बोलणे थांबवा",
"description": "Edit menu item under 'speech' to stop dictation"
},
"windowMenuClose": {
"message": "पटल बंद करा",
"description": "Window menu command to close the current window"
},
"windowMenuMinimize": {
"message": "छोटे करा",
"description": "Window menu command to minimize the current window"
},
"windowMenuZoom": {
"message": "झूम करा",
"description": "Window menu command to make the current window the size of the whole screen"
},
"windowMenuBringAllToFront": {
"message": "सर्व समोर आणा",
"description": "Window menu command to bring all windows of current application to front"
},
"viewMenuResetZoom": {
"message": "खरा आकार",
"description": "View menu command to go back to the default zoom"
},
"viewMenuZoomIn": {
"message": "आत झूम करा",
"description": "View menu command to make everything bigger"
},
"viewMenuZoomOut": {
"message": "बाहेर झूम करा",
"description": "View menu command to make everything smaller"
},
"viewMenuToggleFullScreen": {
"message": "पूर्ण स्क्रीन टॉगल",
"description": "View menu command to enter or leave Full Screen mode"
},
"viewMenuToggleDevTools": {
"message": "डेव्हलपर साधने टॉगल करा",
"description": "View menu command to show or hide the developer tools"
},
"menuSetupAsNewDevice": {
"message": "नवीन डिव्हाईस म्हणून सेटअप करा",
"description": "When the application is not yet set up, menu option to start up the set up as fresh device"
},
"menuSetupAsStandalone": {
"message": "स्टँडअलोन डिव्हाईस म्हणून सेटअप करा",
"description": "Only available on development modes, menu option to open up the standalone device setup sequence"
},
"messageContextMenuButton": {
"message": "अधिक क्रिया",
"description": "Label for context button next to each message"
},
"contextMenuCopyLink": {
"message": "दुवा कॉपी करा",
"description": "Shown in the context menu for a link to indicate that the user can copy the link"
},
"contextMenuCopyImage": {
"message": "चित्र कॉपी करा",
"description": "Shown in the context menu for an image to indicate that the user can copy the image"
},
"contextMenuNoSuggestions": {
"message": "कोणत्याही सूचना नाहीत",
"description": "Shown in the context menu for a misspelled word to indicate that there are no suggestions to replace the misspelled word"
},
"avatarMenuViewArchive": {
"message": "आर्काईव्ह बघा",
"description": "One of the menu options available in the Avatar popup menu"
},
"avatarMenuChatColors": {
"message": "चॅट रंग",
"description": "One of the menu options available in the Avatar popup menu"
},
"avatarMenuUpdateAvailable": {
"message": "Signal अद्यतनित करा",
"description": "One of the menu options available in the Avatar popup menu"
},
"loading": {
"message": "लोड करत आहे...",
"description": "Message shown on the loading screen before we've loaded any messages"
},
"optimizingApplication": {
"message": "अॅपलिकेशन ऑप्टीमाईझ करत आहे...",
"description": "Message shown on the loading screen while we are doing application optimizations"
},
"migratingToSQLCipher": {
"message": "संदेश ऑप्टीमाईझ करत आहे... $status$ पूर्ण.",
"description": "Message shown on the loading screen while we are doing application optimizations"
},
"archivedConversations": {
"message": "आर्काईव्ह केलेले संभाषणे.",
"description": "Shown in place of the search box when showing archived conversation list"
},
"LeftPane--pinned": {
"message": "पिन केलेला",
"description": "Shown as a header for pinned conversations in the left pane"
},
"LeftPane--chats": {
"message": "चॅट",
"description": "Shown as a header for non-pinned conversations in the left pane"
},
"archiveHelperText": {
"message": "ही संभाषणे आर्काईव्हे केलेले आहेत आणि इनबॉक्स मध्ये फक्त नवीन संदेश प्राप्त झाल्यास दिसतील.",
"description": "Shown at the top of the archived conversations list in the left pane"
},
"noArchivedConversations": {
"message": "आर्काईव्ह केलेली संभाषणे नाहीत.",
"description": "Shown at the top of the archived conversations list in the left pane if there is no any archived conversation"
},
"archiveConversation": {
"message": "आर्काइव्ह",
"description": "Shown in menu for conversation, and moves conversation out of main conversation list"
},
"markUnread": {
"message": "वाचले नाही अशी खुण करा",
"description": "Shown in menu for conversation, and marks conversation as unread"
},
"moveConversationToInbox": {
"message": "अनआर्काईव्ह",
"description": "Undoes Archive Conversation action, and moves archived conversation back to the main conversation list"
},
"pinConversation": {
"message": "संभाषण पिन करा",
"description": "Shown in menu for conversation, and pins the conversation to the top of the conversation list"
},
"unpinConversation": {
"message": "संभाषण अनपिन करा",
"description": "Undoes Archive Conversation action, and unpins the conversation from the top of the conversation list"
},
"pinnedConversationsFull": {
"message": "आपण फक्त 4 गप्पा pin करू शकता",
"description": "Shown in a toast when a user attempts to pin more than the maximum number of chats"
},
"chooseDirectory": {
"message": "फोल्डर निवडा",
"description": "Button to allow the user to find a folder on disk"
},
"chooseFile": {
"message": "फाईल निवडा",
"description": "Button to allow the user to find a file on disk"
},
"loadDataHeader": {
"message": "आपला डेटा लोड करा",
"description": "Header shown on the first screen in the data import process"
},
"loadDataDescription": {
"message": "आपण आताच निर्यात प्रक्रियेतून गेला आहात, आणि आपले संपर्क आणि संदेश आपल्या संगणकावर धीर धरून प्रतीक्षा करत आहेत. आपला जतन केलेला Signal डेटा असलेला फोल्डर निवडा.",
"description": "Introduction to the process of importing messages and contacts from disk"
},
"importChooserTitle": {
"message": "निर्यात केलेल्या डेटाची निर्देशिका निवडा",
"description": "Title of the popup window used to select data previously exported"
},
"importErrorHeader": {
"message": "काहीतरी चुकीचे झाले!",
"description": "Header of the error screen after a failed import"
},
"importingHeader": {
"message": "संपर्क आणि संदेश लोड करत आहे",
"description": "Header of screen shown as data is import"
},
"importErrorFirst": {
"message": "आपण Signal डेटा जतन केलेली अचूक निर्देशिका निवडली आहे याची खात्री करा. तिचे नाव 'Signal Export' ने सुरु होते. आपण क्रोम अॅप वापरूनदेखील डेटाची नवीन प्रत जतन करू शकता.",
"description": "Message shown if the import went wrong; first paragraph"
},
"importErrorSecond": {
"message": "जर ह्या पायऱ्या आपल्यासाठी चालत नसतील, तर कृपया एक डीबग लॉग प्रविष्ट करा(दृश्य -> डीबग लॉग) जेणे करून आम्ही आपल्याला स्थलांतर करण्यास मदत करू शकू!",
"description": "Message shown if the import went wrong; second paragraph"
},
"importAgain": {
"message": "फोल्डर निवडा आणि पुन्हा प्रयत्न करा",
"description": "Button shown if the user runs into an error during import, allowing them to start over"
},
"importCompleteHeader": {
"message": "यश!",
"description": "Header shown on the screen at the end of a successful import process"
},
"importCompleteStartButton": {
"message": "Signal Desktop वापरणे सुरू करा",
"description": "Button shown at end of successful import process, nothing left but a restart"
},
"importCompleteLinkButton": {
"message": "हा डिव्हाईस आपल्या फोन सोबत लिंक करा",
"description": "Button shown at end of successful 'light' import process, so the standard linking process still needs to happen"
},
"selectedLocation": {
"message": "आपले निवडलेले स्थान",
"description": "Message shown as the export location if we didn't capture the target directory"
},
"upgradingDatabase": {
"message": "डेटाबेस श्रेणीसुधारित करत आहे. ह्याला काही वेळ लागू शकतो...",
"description": "Message shown on the loading screen when we're changing database structure on first run of a new version"
},
"loadingMessages": {
"message": "संदेश लोड करत आहे. आतापर्यंत$count$...",
"description": "Message shown on the loading screen when we're catching up on the backlog of messages"
},
"view": {
"message": "बघा",
"description": "Used as a label on a button allowing user to see more information"
},
"youLeftTheGroup": {
"message": "आपण आता या गटाचे सदस्य नाही.",
"description": "Displayed when a user can't send a message because they have left the group"
},
"invalidConversation": {
"message": "हा गट अवैध आहे. कृपया एक नवीन गट तयार करा.",
"description": "Displayed when a user can't send a message because something has gone wrong in the conversation."
},
"scrollDown": {
"message": "संभाषणाच्या शेवटपर्यंत स्क्रोल करा",
"description": "Alt text for button to take user down to bottom of conversation, shown when user scrolls up"
},
"messagesBelow": {
"message": "खाली नवीन संदेश",
"description": "Alt text for button to take user down to bottom of conversation with more than one message out of screen"
},
"unreadMessage": {
"message": "1 न वाचलेला संदेश",
"description": "Text for unread message separator, just one message"
},
"unreadMessages": {
"message": "$count$ न वाचलेले संदेश",
"description": "Text for unread message separator, with count"
},
"messageHistoryUnsynced": {
"message": "आपल्या सुरक्षेसाठी, नवीन लिंक केलेल्या डिव्हाईस मध्ये संभाषण इतिहास स्थानांतरित केला जात नाही.",
"description": "Shown in the conversation history when a user links a new device to explain what is not supported."
},
"youMarkedAsVerified": {
"message": "आपण $name$ सोबतचा आपला सुरक्षितता नंबर सत्यापित म्हणून चिन्हांकित केला आहे",
"description": "Shown in the conversation history when the user marks a contact as verified."
},
"youMarkedAsNotVerified": {
"message": "आपण $name$ सोबतचा आपला सुरक्षितता नंबर असत्यापित म्हणून चिन्हांकित केला आहे",
"description": "Shown in the conversation history when the user marks a contact as not verified, whether on the Safety Number screen or by dismissing a banner or dialog."
},
"youMarkedAsVerifiedOtherDevice": {
"message": "$name$ सोबत आपण आपला सुरक्षितता नंबर दुसऱ्या डिव्हाईस वरून सत्यापित म्हणून चिन्हांकित केला आहे",
"description": "Shown in the conversation history when we discover that the user marked a contact as verified on another device."
},
"youMarkedAsNotVerifiedOtherDevice": {
"message": "$name$ सोबत आपण आपला सुरक्षितता नंबर दुसऱ्या डिव्हाईस वरून असत्यापित म्हणून चिन्हांकित केला आहे",
"description": "Shown in the conversation history when we discover that the user marked a contact as not verified on another device."
},
"membersNeedingVerification": {
"message": "आपण शेवटचे सत्यापित केल्यापासून या गट सदस्यांसोबतचे आपले सुरक्षितता नंबर बदलले आहेत. आपला त्यांच्यासोबतचा नवीन सुरक्षितता नंबर बघण्यासाठी एका गट सदस्यावर क्लिक करा.",
"description": "When there are multiple previously-verified group members with safety number changes, a banner will be shown. The list of contacts with safety number changes is shown, and this text introduces that list."
},
"changedRightAfterVerify": {
"message": "आपण सत्यापित करण्याचा प्रयत्न करत असलेला सुरक्षितता नंबर बदलला आहे. कृपया$name1$ सोबतचा आपला नवीन सुरक्षितता नंबरचे पुनरावलोकन करा. लक्षात ठेवा, ह्या परिवर्तनाचा अर्थ असा होऊ शकतो की कुणीतरी आपले परस्पर संवादामध्ये अटकाव करण्याचा प्रयत्न करत आहे किंवा $name2$ने Signal पुनर्स्थापित केले आहे .",
"description": "Shown on the safety number screen when the user has selected to verify/unverify a contact's safety number, and we immediately discover a safety number change"
},
"changedVerificationWarning": {
"message": "पुढील व्यक्तींनी डिव्हाइस पुनर्स्थापित केले किंवा बदलले असतील. गोपनीयता सुनिश्चित करण्यासाठी आपला सुरक्षितता नंबर त्यांच्यासोबत सत्यापित करा.",
"description": "Shown on confirmation dialog when user attempts to send a message"
},
"safetyNumberChangeDialog__pending-messages": {
"message": "प्रलंबित संदेश पाठवा",
"description": "Shown on confirmation dialog when user attempts to send a message in the outbox"
},
"identityKeyErrorOnSend": {
"message": "$name1$ सोबतचा आपला सुरक्षितता नंबर बदलला आहे. ह्याचा अर्थ असा होऊ शकतो की कुणीतरी आपल्या परस्परसंवादामध्ये अटकाव करण्याचा प्रयत्न करत आहे किंवा $name2$याने Signal पुनर्स्थापित केले आहे. आपण या संपर्कासोबत आपला सुरक्षितता नंबर सत्यापित करू शकता.",
"description": "Shown when user clicks on a failed recipient in the message detail view after an identity key change"
},
"sendAnyway": {
"message": "तरीही पाठवा",
"description": "Used on a warning dialog to make it clear that it might be risky to send the message."
},
"callAnyway": {
"message": "तरीही कॉल करा",
"description": "Used on a warning dialog to make it clear that it might be risky to call the conversation."
},
"continueCall": {
"message": "कॉल सुरू ठेवा",
"description": "Used on a warning dialog to make it clear that it might be risky to continue the group call."
},
"noLongerVerified": {
"message": "$name$ सोबतचा आपला सुरक्षितता नंबर बदलला आहे आणि आता सत्यापित नाही. दाखविण्यासाठी क्लिक करा.",
"description": "Shown in conversation banner when user's safety number has changed, but they were previously verified."
},
"multipleNoLongerVerified": {
"message": "या गटामधील अनेक सदस्यांसोबतचे आपले सुरक्षितता नंबर बदलले आहेत आणि आता सत्यापित नाहीत. दाखविण्यासाठी क्लिक करा.",
"description": "Shown in conversation banner when more than one group member's safety number has changed, but they were previously verified."
},
"debugLogExplanation": {
"message": "आपण जेव्हा सबमिट वर क्लिक कराल, आपला लॉग हा 30 दिवसासाठी एका असामान्य, प्रकाशित न केलेल्या URL वर पोस्ट केले जाईल. आपण ते प्रथम स्थानिक रित्या जतन करू शकता.",
"description": "Description of what will happen with your debug log"
},
"debugLogError": {
"message": "अपलोड मध्ये काहीतरी चुकले! कृपया [email protected] ला इमेल करा आणि तुमचा लॉग टेक्स्ट फाईल रूपात संलग्न करा.",
"description": "Error message a recommendations if debug log upload fails"
},
"debugLogSuccess": {
"message": "दुरुस्ती/डिबग लॉग सादर केला",
"description": "Title of the success page for submitting a debug log"
},
"debugLogSuccessNextSteps": {
"message": "डिबग लॉग अपलोड करण्यात आला. आपण जेव्हा सहाय्यता शी संपर्क साधता, तेव्हा खाली दिलेली URL कॉपी करा आणि ती आपणाला दिसलेल्या समस्येच्या वर्णनाच्या सह आणि त्याला पुन्हा तयार करण्याच्या टप्प्यांसह जोडा.",
"description": "Explanation of next steps to take when submitting debug log"
},
"debugLogLogIsIncomplete": {
"message": "... संपूर्ण लॉग पाहण्यास, जतन करा क्लिक करा",
"description": "Shown as the text for the copy button on the debug log screen"
},
"debugLogCopy": {
"message": "दुवा कॉपी करा",
"description": "Shown as the text for the copy button on the debug log screen"
},
"debugLogSave": {
"message": "जतन करा",
"description": "Shown as the text for the download button on the debug log screen"
},
"debugLogLinkCopied": {
"message": "आपल्या क्लिपबोर्ड वर दुवा कॉपी केले",
"description": "Shown in a toast to let the user know that the link to the debug log has been copied to their clipboard"
},
"reportIssue": {
"message": "समर्थन सोबत संपर्क साधा",
"description": "Link to open the issue tracker"
},
"gotIt": {
"message": "कळले!",
"description": "Label for a button that dismisses a dialog. The user clicks it to confirm that they understand the message in the dialog."
},
"submit": {
"message": "प्रविष्ट करा"
},
"acceptNewKey": {
"message": "स्वीकार करा",
"description": "Label for a button to accept a new safety number"
},
"verify": {
"message": "सत्यापित म्हणून चिन्हांकित करा"
},
"unverify": {
"message": "असत्यापित म्हणून चिन्हांकित करा"
},
"isVerified": {
"message": "$name$ सोबत आपण आपला सुरक्षितता नंबर सत्यापित केला आहे.",
"description": "Summary state shown at top of the safety number screen if user has verified contact."
},
"isNotVerified": {
"message": "$name$ सोबत आपण आपला सुरक्षितता नंबर सत्यापित केला नाही.",
"description": "Summary state shown at top of the safety number screen if user has not verified contact."
},
"verified": {
"message": "सत्यापित"
},
"newIdentity": {
"message": "नवीन सुरक्षितता नंबर",
"description": "Header for a key change dialog"
},
"identityChanged": {
"message": "या संपर्कासोबत सोबतचा आपला सुरक्षितता नंबर बदलला आहे. ह्याचा अर्थ कुणीतरी आपल्या परस्परसंवादामध्ये अटकाव करण्याचा प्रयत्न करतो आहे किंवा या संपर्काने Signal पुनर्स्थापित केले आहे असा होऊ शकतो. आपण आपला खालील सुरक्षितता नंबर सत्यापित करण्याची इच्छा ठेवू शकता."
},
"incomingError": {
"message": "येणारा संदेश हाताळण्यात त्रुटी"
},
"media": {
"message": "मीडिया",
"description": "Header of the default pane in the media gallery, showing images and videos"
},
"mediaEmptyState": {
"message": "या संभाषणात आपल्याकडे कुठलीही मिडिया नाही",
"description": "Message shown to user in the media gallery when there are no messages with media attachments (images or video)"
},
"allMedia": {
"message": "सर्व मिडिया",
"description": "Header for the media gallery"
},
"documents": {
"message": "दस्तऐवज",
"description": "Header of the secondary pane in the media gallery, showing every non-media attachment"
},
"documentsEmptyState": {
"message": "या संभाषणात आपल्याकडे कुठलेही दस्तऐवज नाही",
"description": "Message shown to user in the media gallery when there are no messages with document attachments (anything other than images or video)"
},
"today": {
"message": "आज",
"description": "The string \"today\""
},
"yesterday": {
"message": "काल",
"description": "The string \"yesterday\""
},
"thisWeek": {
"message": "ह्या आठवड्यात",
"description": "Section header in the media gallery"
},
"thisMonth": {
"message": "हा महिना",
"description": "Section header in the media gallery"
},
"unsupportedAttachment": {
"message": "असमर्थित संलग्न प्रकार. जतन करण्यासाठी क्लिक करा.",
"description": "Displayed for incoming unsupported attachment"
},
"clickToSave": {
"message": "जतन करण्यासाठी क्लिक करा.",
"description": "Hover text for attachment filenames"
},
"unnamedFile": {
"message": "अनामित फाईल",
"description": "Hover text for attachment filenames"
},
"voiceMessage": {
"message": "व्हॉईस संदेश",
"description": "Name for a voice message attachment"
},
"dangerousFileType": {
"message": "सुरक्षा कारणांमुळे संलग्न प्रकारांची अनुमती नाही",
"description": "Shown in toast when user attempts to send .exe file, for example"
},
"loadingPreview": {
"message": "पुनरावलोकन लोड करत आहे...",
"description": "Shown while Signal Desktop is fetching metadata for a url in composition area"
},
"stagedPreviewThumbnail": {
"message": "$domain$ करिता ड्राफ्ट थंबनेल दुवा पुनरावलोकन",
"description": "Shown while Signal Desktop is fetching metadata for a url in composition area"
},
"previewThumbnail": {
"message": "$domain$ करिता थंबनेल दुवा पुनरावलोकन",
"description": "Shown while Signal Desktop is fetching metadata for a url in composition area"
},
"stagedImageAttachment": {
"message": "ड्राफ्ट चित्र संलग्न: $path$",
"description": "Alt text for staged attachments"
},
"cdsMirroringErrorToast": {
"message": "डेस्कटॉप संपर्क शोध सेवा विसंगतीमध्ये गेला.",
"description": "An error popup when we discovered an inconsistency between mirrored Contact Discovery Service requests."
},
"decryptionErrorToast": {
"message": "डेस्कटॉप $name$, उपकरण $deviceId$ कडून कूटबद्धीकरण त्रुटी मध्ये गेला",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users."
},
"decryptionErrorToastAction": {
"message": "लॉग सादर करा",
"description": "Label for the decryption error toast button"
},
"cannotSelectPhotosAndVideosAlongWithFiles": {
"message": "आपण फाईल्ससह फोटो आणि व्हिडिओ निवडू शकत नाही.",
"description": "An error popup when the user has attempted to add an attachment"
},
"maximumAttachments": {
"message": "आपण या संदेशामध्ये यापेक्षा अधिक संलग्न जोडू शकत नाही.",
"description": "An error popup when the user has attempted to add an attachment"
},
"fileSizeWarning": {
"message": "क्षमस्व, निवडलेली फाईल आकार प्रतिबंधने ओलांडते."
},
"unableToLoadAttachment": {
"message": "निवडलेले संलग्न जोडण्यात अक्षम."
},
"disconnected": {
"message": "डिसकनेक्ट झाले",
"description": "Displayed when the desktop client cannot connect to the server."
},
"connecting": {
"message": "कनेक्ट करत आहे...",
"description": "Displayed when the desktop client is currently connecting to the server."
},
"connect": {
"message": "पुन्हा जोडणी/रिकनेक्ट साठी क्लिक करा.",
"description": "Shown to allow the user to manually attempt a reconnect."
},
"connectingHangOn": {
"message": "आणखी फारसा वेळ लागणार नाही",
"description": "Subtext description for when the client is connecting to the server."
},
"offline": {
"message": "ऑफलाईन",
"description": "Displayed when the desktop client has no network connection."
},
"checkNetworkConnection": {
"message": "आपले नेटवर्क कनेक्शन तपासा.",
"description": "Obvious instructions for when a user's computer loses its network connection"
},
"submitDebugLog": {
"message": "डीबग लॉग",
"description": "Menu item and header text for debug log modal (sentence case)"
},
"debugLog": {
"message": "डीबग लॉग",
"description": "View menu item to open the debug log (title case)"
},
"forceUpdate": {
"message": "फोर्स अद्यतन करा",
"description": "View menu item to force the app to update download and install"
},
"helpMenuShowKeyboardShortcuts": {
"message": "कीबोर्ड शॉर्टकट दर्शवा",
"description": "Item under the help menu, pops up a screen showing the application's keyboard shortcuts"
},
"contactUs": {
"message": "आमच्या सोबत संपर्क साधा",
"description": "Item under the help menu, takes you to the contact us support page"
},
"goToReleaseNotes": {
"message": "रिलीझ टिपा वर जा",
"description": "Item under the help menu, takes you to GitHub page for release notes"
},
"goToForums": {
"message": "फोरम वर जा",
"description": "Item under the Help menu, takes you to the forums"
},
"goToSupportPage": {
"message": "समर्थन पृष्ठावर जा",
"description": "Item under the Help menu, takes you to the support page"
},
"joinTheBeta": {
"message": "बीटामध्ये सामील व्हा",
"description": "Item under the Help menu, takes you to an article describing how to install the beta release of Signal Desktop"
},
"signalDesktopPreferences": {
"message": "Signal Desktop प्राधान्यता",
"description": "Title of the window that pops up with Signal Desktop preferences in it"
},
"signalDesktopStickerCreator": {
"message": "स्टिकर पॅक उत्पादक",
"description": "Title of the window that pops up with Signal Desktop preferences in it"
},
"aboutSignalDesktop": {
"message": "Signal Desktop बद्दल",
"description": "Item under the Help menu, which opens a small about window"
},
"screenShareWindow": {
"message": "स्क्रीन सामायिक करत आहे",
"description": "Title for screen sharing window"
},
"speech": {
"message": "वाचा",
"description": "Item under the Edit menu, with 'start/stop speaking' items below it"
},
"show": {
"message": "दाखवा",
"description": "Command under Window menu, to show the window"
},
"hide": {
"message": "लपवा",
"description": "Command in the tray icon menu, to hide the window"
},
"quit": {
"message": "बंद करा",
"description": "Command in the tray icon menu, to quit the application"
},
"signalDesktop": {
"message": "Signal Desktop",
"description": "Tooltip for the tray icon"
},
"search": {
"message": "शोध",
"description": "Placeholder text in the search input"
},
"clearSearch": {
"message": "शोध साफ करा",
"description": "Aria label for clear search button"
},
"searchIn": {
"message": "चॅट शोधा",
"description": "Shown in the search box before text is entered when searching in a specific conversation"
},
"noSearchResults": {
"message": "\"$searchTerm$\" करिता कुठलेही परिणाम नाहीत",
"description": "Shown in the search left pane when no results were found"
},
"noSearchResults--sms-only": {
"message": "SMS/MMS संपर्क डेस्कटॉपवर उपलब्ध नाहीत.",
"description": "Shown in the search left pane when no results were found and primary device has SMS/MMS handling enabled"
},
"noSearchResultsInConversation": {
"message": "$conversationName$ मध्ये \"$searchTerm$\" करिता कुठलेही परिणाम नाहीत",
"description": "Shown in the search left pane when no results were found"
},
"conversationsHeader": {
"message": "संभाषण",
"description": "Shown to separate the types of search results"
},
"contactsHeader": {
"message": "संपर्क",
"description": "Shown to separate the types of search results"
},
"groupsHeader": {
"message": "गट",
"description": "Shown to separate the types of search results"
},
"messagesHeader": {
"message": "संदेश",
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "वापरकर्ता नावाने शोधा",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "फोन नंबरद्वारे शोधा",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
"description": "@ added to username to signify it as a username. Should it be on the right in your language?"
},
"welcomeToSignal": {
"message": "Signal मध्ये स्वागत आहे"
},
"whatsNew": {
"message": "या अपडेट मध्ये See $whatsNew$ पहा",
"description": "Shown in the main window"
},
"viewReleaseNotes": {
"message": "नवीन काय आहे",
"description": "Clickable link that displays the latest release notes"
},
"typingAlt": {
"message": "या संभाषणासाठी टाईपिंग अॅनिमेशन",
"description": "Used as the 'title' attribute for the typing animation"
},
"contactInAddressBook": {
"message": "ही व्यक्ती आपल्या संपर्कांमध्ये आहे.",
"description": "Description of icon denoting that contact is from your address book"
},
"contactAvatarAlt": {
"message": "$name$ संपर्कासाठी अवतार",
"description": "Used in the alt tag for the image avatar of a contact"
},
"sendMessageToContact": {
"message": "संदेश पाठवा",
"description": "Shown when you are sent a contact and that contact has a signal account"
},
"home": {
"message": "घर",
"description": "Shown on contact detail screen as a label for an address/phone/email"
},
"work": {
"message": "कार्य",
"description": "Shown on contact detail screen as a label for an address/phone/email"
},
"mobile": {
"message": "मोबाईल",
"description": "Shown on contact detail screen as a label for a phone or email"
},
"email": {
"message": "ईमेल",
"description": "Generic label shown if contact email has custom type but no label"
},
"phone": {
"message": "फोन",
"description": "Generic label shown if contact phone has custom type but no label"
},
"address": {
"message": "पत्ता",
"description": "Generic label shown if contact address has custom type but no label"
},
"poBox": {
"message": "पोऑ बॉक्स",
"description": "When rendering an address, used to provide context to a post office box"
},
"downloading": {
"message": "डाऊनलोड करत आहे",
"description": "Shown in the message bubble while a long message attachment is being downloaded"
},
"downloadFullMessage": {
"message": "संपूर्ण संदेश डाऊनलोड करा",
"description": "Shown in the message bubble while a long message attachment is not downloaded"
},
"downloadAttachment": {
"message": "संलग्न डाऊनलोड करा",
"description": "Shown in a message's triple-dot menu if there isn't room for a dedicated download button"
},
"reactToMessage": {
"message": "संदेशाला प्रतिसाद द्या",
"description": "Shown in triple-dot menu next to message to allow user to react to the associated message"
},
"replyToMessage": {
"message": "संदेशाला प्रतिसाद द्या",
"description": "Shown in triple-dot menu next to message to allow user to start crafting a message with a quotation"
},
"originalMessageNotFound": {
"message": "मूळ संदेश आढळला नाही",
"description": "Shown in quote if reference message was not found as message was initially downloaded and processed"
},
"originalMessageNotAvailable": {
"message": "मूळ संदेश आता उपलब्ध नाही",
"description": "Shown in toast if user clicks on quote that references message no longer in database"
},
"messageFoundButNotLoaded": {
"message": "मूळ संदेश सापडला, पण लोड केलेला नाही. त्यास लोड करण्यासाठी वर स्क्रोल करा.",
"description": "Shown in toast if user clicks on quote references messages not loaded in view, but in database"
},
"voiceRecording--start": {
"message": "आवाज संदेशाचे ध्वनिमुद्रण सुरु करा",
"description": "Tooltip for microphone button to start voice message"
},
"voiceRecording--complete": {
"message": "आवाज संदेश पूर्ण करा व पाठवा",
"description": "Tooltip for green complete voice message and send"
},
"voiceRecording--cancel": {
"message": "आवाज संदेश रद्द करा",
"description": "Tooltip for red button to cancel voice message"
},
"voiceRecordingInterruptedMax": {
"message": "व्हॉईस संदेश रेकॉर्डिंग बंद झाली कारण कमाल वेळेची मर्यादा पोहोचली आहे.",
"description": "Confirmation dialog message for when the voice recording is interrupted due to max time limit"
},
"voiceRecordingInterruptedBlur": {
"message": "व्हॉईस संदेश रेकॉर्डिंग बंद झाली कारण आपण दुसऱ्या अॅपवर स्विच केले आहे.",
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "व्हाईस संदेश एका तासासाठी मर्यादित केले आहेत. तुम्ही दुसऱ्या अॅप स्वीच झाल्यास रेकॉर्डिंग थांबेल.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
"message": "व्हॉईस संदेशात फक्त एक संलग्न असायला हवे.",
"description": "Shown in toast if tries to record a voice note with any staged attachments"
},
"voiceNoteError": {
"message": "व्हॉइस रेकॉर्डरमध्ये दोष होते.",
"description": "Shown in a dialog to inform user that we experienced an unrecoverable error"
},
"attachmentSaved": {
"message": "संलग्नक/अटॅचमेंट सेव्ह झाली",
"description": "Shown after user selects to save to downloads"
},
"attachmentSavedShow": {
"message": "फोल्डर मध्ये दाखवा",
"description": "Button label for showing the attachment in your file system"
},
"you": {
"message": "आपण",
"description": "Shown when the user represented is the current user."
},
"replyingTo": {
"message": "$name$ ला प्रतिसाद देत आहे",
"description": "Shown in iOS theme when you or someone quotes to a message which is not from you"
},
"audioPermissionNeeded": {
"message": "ऑडिओ संदेश पाठविण्यासाठी, Signal Desktop ला आपला मायक्रोफोन अॅक्सेस करण्याची अनुमती द्या.",
"description": "Shown if the user attempts to send an audio message without audio permissions turned on"
},
"audioCallingPermissionNeeded": {
"message": "कॉलिंग साठी, Signal Desktop ला आपला मायक्रोफोन अॅक्सेस करण्याची अनुमती द्या.",
"description": "Shown if the user attempts access the microphone for calling without audio permissions turned on"
},
"videoCallingPermissionNeeded": {
"message": "व्हिडिओ कॉलिंग साठी, Signal Desktop ला आपला कॅमेरा अॅक्सेस करण्याची अनुमती द्या.",
"description": "Shown if the user attempts access the camera for video calling without video permissions turned on"
},
"allowAccess": {
"message": "अॅक्सेस अनुमती द्या",
"description": "Button shown in popup asking to enable microphone/video permissions to send audio messages"
},
"showSettings": {
"message": "सेटिंग दाखवा",
"description": "A button shown in dialog requesting the user to turn on audio permissions"
},
"audio": {
"message": "ऑडिओ",
"description": "Shown in a quotation of a message containing an audio attachment if no text was originally provided with that attachment"
},
"video": {
"message": "व्हिडिओ",
"description": "Shown in a quotation of a message containing a video if no text was originally provided with that video"
},
"photo": {
"message": "फोटो",
"description": "Shown in a quotation of a message containing a photo if no text was originally provided with that image"
},
"text": {
"message": "मजकूर",
"description": "Label for the word 'text'"
},
"cannotUpdate": {
"message": "अद्यतनित करू शकत नाही",
"description": "Shown as the title of our update error dialogs on windows"
},
"muted": {
"message": "म्यूट केलेले",
"description": "Shown in a button when a conversation is muted"
},
"mute": {
"message": "म्यूट करा",
"description": "Shown in a button when a conversation is unmuted and can be muted"
},
"cannotUpdateDetail": {
"message": "Signal अद्यतनित होऊ शकत नाही. हस्तचलित पद्धतीने त्याला स्थापित करण्यासाठी $retry$ किंवा t $url$ ला भेट द्या. नंतर, या समस्येबद्दल $support$ भेट द्या",
"description": "Shown if a general error happened while trying to install update package"
},
"cannotUpdateRequireManualDetail": {
"message": "Signal अद्यतनित होऊ शकत नाही. त्याला हस्तचलित पद्धतीने स्थापित करण्यास $url$ला भेट द्या. नंतर या समस्येबद्दल, $support$ ला",
"description": "Shown if a general error happened while trying to install update package and manual update is required"
},
"readOnlyVolume": {
"message": "Signal Desktop हे कदाचित macOS क्वॉरंटाईन मध्ये आहे, आणि स्वयं-अद्यतन करू शकणार नाही. कृपया$folder$यासोबत फाईंडरने $app$वर हलविण्याचा प्रयत्न करा.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update"
},
"ok": {
"message": "ठीक"
},
"cancel": {
"message": "रद्द करा"
},
"discard": {
"message": "टाकून द्या"
},
"failedToSend": {
"message": "काही प्राप्तकर्त्यांना पाठविण्यात अयशस्वी. आपले नेटवर्क कनेक्शन तपासा."
},
"error": {
"message": "त्रुटी"
},
"messageDetail": {
"message": "संदेश तपशील"
},
"delete": {
"message": "काढून टाका"
},
"accept": {
"message": "स्वीकारा"
},
"forward": {
"message": "फॉर्वर्ड करा"
},
"done": {
"message": "ठीक",
"description": "Label for done"
},
"update": {
"message": "अद्यतन"
},
"next2": {
"message": "पुढे"
},
"on": {