-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeleNVDA.pot
More file actions
1369 lines (1126 loc) · 47.5 KB
/
Copy pathTeleNVDA.pot
File metadata and controls
1369 lines (1126 loc) · 47.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the 'TeleNVDA' package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 'TeleNVDA' '2026.08.10.0028'\n"
"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n"
"POT-Creation-Date: 2026-08-10 00:13+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: addon\installTasks.py:114
msgid ""
"NVDA Remote has been detected on your NVDA installation. In order for "
"TeleNVDA to work without conflicts, NVDA Remote must be disabled. Otherwise, "
"TeleNVDA will refuse to work. Would you like to disable NVDA Remote now?"
msgstr ""
#. Translators: question title
#: addon\installTasks.py:117
msgid "Running NVDA Remote detected"
msgstr ""
#. Translators: Proxy mode where the user enters the proxy host, port and credentials manually.
#: addon\globalPlugins\remoteClient\dialogs.py:38
msgid "Manual configuration"
msgstr ""
#. Translators: Proxy mode where the proxy is read from the Windows system settings.
#: addon\globalPlugins\remoteClient\dialogs.py:40
msgid "Automatic Windows proxy detection"
msgstr ""
#. Translators: Proxy mode where no proxy is used at all.
#: addon\globalPlugins\remoteClient\dialogs.py:42
msgid "No proxy"
msgstr ""
#. Translators: Maximum duration for which sleep prevention is active.
#: addon\globalPlugins\remoteClient\dialogs.py:49
msgid "30 minutes"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:50
msgid "1 hour"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:51
msgid "2 hours"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:52
msgid "4 hours"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:53
msgid "8 hours"
msgstr ""
#. Translators: Option to prevent the computer from going to sleep without a time limit.
#: addon\globalPlugins\remoteClient\dialogs.py:55
msgid "Always prevent the computer from going to sleep"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:64
#: addon\globalPlugins\remoteClient\dialogs.py:259
#: addon\globalPlugins\remoteClient\dialogs.py:504
msgid "&Transport:"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:65
#: addon\globalPlugins\remoteClient\dialogs.py:260
#: addon\globalPlugins\remoteClient\dialogs.py:505
msgid "Standard (TCP)"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:65
#: addon\globalPlugins\remoteClient\dialogs.py:260
#: addon\globalPlugins\remoteClient\dialogs.py:505
msgid "WebSocket over HTTPS"
msgstr ""
#. Translators: The label of an edit field in connect dialog to enter name or address of the remote computer.
#: addon\globalPlugins\remoteClient\dialogs.py:70
#: addon\globalPlugins\remoteClient\dialogs.py:251
#: addon\globalPlugins\remoteClient\dialogs.py:510
msgid "&Host:"
msgstr ""
#. Translators: The label of an edit field in connect dialog to enter the port the server will listen on.
#: addon\globalPlugins\remoteClient\dialogs.py:73
#: addon\globalPlugins\remoteClient\dialogs.py:254
#: addon\globalPlugins\remoteClient\dialogs.py:312
msgid "&Port:"
msgstr ""
#. Translators: Label of the edit field to enter key (password) to secure the remote connection.
#: addon\globalPlugins\remoteClient\dialogs.py:77
#: addon\globalPlugins\remoteClient\dialogs.py:318
#: addon\globalPlugins\remoteClient\dialogs.py:525
msgid "&Key:"
msgstr ""
#. Translators: The button used to generate a random key/password.
#: addon\globalPlugins\remoteClient\dialogs.py:81
#: addon\globalPlugins\remoteClient\dialogs.py:321
msgid "&Generate Key"
msgstr ""
#. Translators: Label of an edit field to enter a second password to exchange encrypted data.
#: addon\globalPlugins\remoteClient\dialogs.py:85
#: addon\globalPlugins\remoteClient\dialogs.py:325
#: addon\globalPlugins\remoteClient\dialogs.py:530
msgid "En&cryption password (optional):"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:88
#: addon\globalPlugins\remoteClient\dialogs.py:263
#: addon\globalPlugins\remoteClient\dialogs.py:534
msgid "WebSocket &path:"
msgstr ""
#. Translators: Title of the group of proxy settings in the connect dialog.
#: addon\globalPlugins\remoteClient\dialogs.py:100
msgid "Proxy"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:102
#: addon\globalPlugins\remoteClient\dialogs.py:538
msgid "Proxy &mode:"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:107
#: addon\globalPlugins\remoteClient\dialogs.py:544
msgid "HTTP/SOCKS &proxy host:"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:110
#: addon\globalPlugins\remoteClient\dialogs.py:548
msgid "Proxy por&t:"
msgstr ""
#. Translators: tooltip clarifying that this port is the intermediary proxy port, not the relay/server port above.
#: addon\globalPlugins\remoteClient\dialogs.py:113
#: addon\globalPlugins\remoteClient\dialogs.py:552
msgid ""
"Port of an intermediary HTTP/SOCKS proxy server, if any. Left at 0 when no "
"proxy is used. Unrelated to the relay/server port above."
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:115
#: addon\globalPlugins\remoteClient\dialogs.py:554
msgid "Proxy &type:"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:119
#: addon\globalPlugins\remoteClient\dialogs.py:559
msgid "Proxy &username:"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:122
#: addon\globalPlugins\remoteClient\dialogs.py:563
msgid "Proxy pass&word:"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:200
#: addon\globalPlugins\remoteClient\dialogs.py:279
msgid "Host must be set."
msgstr ""
#. Translators: Title of an error dialog.
#: addon\globalPlugins\remoteClient\dialogs.py:200
#: addon\globalPlugins\remoteClient\dialogs.py:279
#: addon\globalPlugins\remoteClient\dialogs.py:398
#: addon\globalPlugins\remoteClient\dialogs.py:437
#: addon\globalPlugins\remoteClient\dialogs.py:441
#: addon\globalPlugins\remoteClient\dialogs.py:446
#: addon\globalPlugins\remoteClient\dialogs.py:451
#: addon\globalPlugins\remoteClient\dialogs.py:455
#: addon\globalPlugins\remoteClient\dialogs.py:460
#: addon\globalPlugins\remoteClient\dialogs.py:804
#: addon\globalPlugins\remoteClient\dialogs.py:813
#: addon\globalPlugins\remoteClient\dialogs.py:820
#: addon\globalPlugins\remoteClient\dialogs.py:823
#: addon\globalPlugins\remoteClient\dialogs.py:827
#: addon\globalPlugins\remoteClient\dialogs.py:832
#: addon\globalPlugins\remoteClient\file_transfer.py:575
#: addon\globalPlugins\remoteClient\file_transfer.py:586
#: addon\globalPlugins\remoteClient\file_transfer.py:603
#: addon\globalPlugins\remoteClient\file_transfer.py:619
#: addon\globalPlugins\remoteClient\file_transfer.py:639
#: addon\globalPlugins\remoteClient\file_transfer.py:676
msgid "Error"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:246
#: addon\globalPlugins\remoteClient\dialogs.py:296
msgid "Connectivity test"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:249
msgid "Test a relay endpoint without joining a channel."
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:268
msgid "&Test"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:271
msgid "Close"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:294
msgid "Unknown error"
msgstr ""
#. Translators: Used in server mode to obtain the external IP address for the server (controlled computer) for direct connection.
#: addon\globalPlugins\remoteClient\dialogs.py:304
msgid "Get External &IP"
msgstr ""
#. Translators: Label of the field displaying the external IP address if using direct (client to server) connection.
#: addon\globalPlugins\remoteClient\dialogs.py:308
msgid "&External IP:"
msgstr ""
#. Translators: label of a checkbox which allows forwarding a port using UPNP
#: addon\globalPlugins\remoteClient\dialogs.py:316
#: addon\globalPlugins\remoteClient\dialogs.py:522
msgid "Use &UPNP to forward this port if possible"
msgstr ""
#. Translators: message asking the user wether perform portcheck with UPNP or not
#: addon\globalPlugins\remoteClient\dialogs.py:343
msgid ""
"Would you like to use UPNP to forward the chosen port before detecting your "
"IP address?"
msgstr ""
#. Translators: title of the message asking the user to try portcheck with UPNP
#: addon\globalPlugins\remoteClient\dialogs.py:345
msgid "Do you want to use UPNP?"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:389
#, python-brace-format
msgid "Successfully retrieved IP address. Port {port} is open."
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:389
msgid "Success"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:391
#, python-brace-format
msgid "Retrieved external IP, but port {port} is not currently forwarded."
msgstr ""
#. Translators: The title of the warning dialog displayed when handle keys from other applications is disabled.
#: addon\globalPlugins\remoteClient\dialogs.py:391
#: addon\globalPlugins\remoteClient\__init__.py:1226
msgid "Warning"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:398
msgid ""
"Unable to contact portcheck server or UPNP device, please manually retrieve "
"your IP address and forward ports if required. See the NVDA log for more "
"details."
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:405
msgid "Client"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:405
msgid "Server"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:409
#: addon\globalPlugins\remoteClient\dialogs.py:484
msgid "Allow this machine to be controlled"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:409
#: addon\globalPlugins\remoteClient\dialogs.py:484
msgid "Control another machine"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:437
#: addon\globalPlugins\remoteClient\dialogs.py:820
msgid "Both host and key must be set."
msgstr ""
#. Translators: error message for key/password length less than 6 characters
#: addon\globalPlugins\remoteClient\dialogs.py:441
#: addon\globalPlugins\remoteClient\dialogs.py:455
#: addon\globalPlugins\remoteClient\dialogs.py:827
msgid "The key must be longer than 6 characters."
msgstr ""
#. Translators: error message for key/password being sequential, example 123456
#: addon\globalPlugins\remoteClient\dialogs.py:446
#: addon\globalPlugins\remoteClient\dialogs.py:460
#: addon\globalPlugins\remoteClient\dialogs.py:832
msgid ""
"The key must not be sequential. Please, avoid keys such as 1234, 4321 or "
"similar."
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:451
#: addon\globalPlugins\remoteClient\dialogs.py:823
msgid "Both port and key must be set."
msgstr ""
#. Translators: title for the TeleNVDA settings category in NVDA settings dialog
#. Translators: script category for add-on gestures
#: addon\globalPlugins\remoteClient\dialogs.py:468
#: addon\globalPlugins\remoteClient\__init__.py:159
#: addon\globalPlugins\remoteClient\__init__.py:523
msgid "TeleNVDA"
msgstr ""
#. Translators: A checkbox in add-on options dialog to set whether remote server is started when NVDA starts.
#: addon\globalPlugins\remoteClient\dialogs.py:472
msgid "Auto-connect to control server on startup"
msgstr ""
#. Translators: A checkbox in add-on options dialog to enable update checks when NVDA starts.
#: addon\globalPlugins\remoteClient\dialogs.py:476
msgid "Check for TeleNVDA updates on startup"
msgstr ""
#. Translators: Whether or not to use a relay server when autoconnecting
#: addon\globalPlugins\remoteClient\dialogs.py:479
msgid "Use Remote Control Server"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:479
msgid "Host Control Server"
msgstr ""
#. Translators: A checkbox in add-on options dialog to set whether auto-connect is automatically turned off after a configurable period without any real remote control activity.
#: addon\globalPlugins\remoteClient\dialogs.py:490
msgid "Automatically disable auto-connect without any remote control activity"
msgstr ""
#. Translators: Label for the inactivity duration field. The value uses days:hours:minutes.
#: addon\globalPlugins\remoteClient\dialogs.py:495
msgid "Inactivity duration (days:hours:minutes):"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:501
msgid ""
"Format: days:hours:minutes. For example, 30:00:00 means 30 days and 00:00:01 "
"means 1 minute."
msgstr ""
#. Translators: label of the port used to reach the relay or server, as opposed to the proxy port below.
#: addon\globalPlugins\remoteClient\dialogs.py:515
msgid "&Port (server/relay):"
msgstr ""
#. Translators: tooltip clarifying that this port is used to reach the relay/server, not the proxy below.
#: addon\globalPlugins\remoteClient\dialogs.py:519
msgid ""
"Port used to reach the relay or server (default 6837, or 443 for WebSocket "
"over HTTPS). Unrelated to the proxy port below."
msgstr ""
#. Translators: A checkbox in add-on options dialog to set whether sounds play instead of beeps.
#: addon\globalPlugins\remoteClient\dialogs.py:568
msgid "Play sounds instead of beeps"
msgstr ""
#. Translators: A checkbox in add-on options dialog to set whether to display an alert before the controlled computer disconnects.
#: addon\globalPlugins\remoteClient\dialogs.py:571
msgid "Display an alert before the controlled computer disconnects"
msgstr ""
#. Translators: A checkbox in add-on options dialog to set whether to mute remote speech when controlling the local machine.
#: addon\globalPlugins\remoteClient\dialogs.py:574
msgid "Mute remote speech when controlling local machine"
msgstr ""
#. Translators: A checkbox in add-on options dialog to set whether allow or block speech commands
#: addon\globalPlugins\remoteClient\dialogs.py:577
msgid "Process speech commands when controlling another computer"
msgstr ""
#. Translators: A checkbox in add-on options dialog to set whether server welcome messages are displayed only once
#: addon\globalPlugins\remoteClient\dialogs.py:580
msgid "Show server welcome messages only once"
msgstr ""
#. Translators: A checkbox in add-on options dialog to prevent the computer from going to sleep when it is left unattended.
#: addon\globalPlugins\remoteClient\dialogs.py:583
msgid "Prevent this computer from going to sleep when it is not used"
msgstr ""
#. Translators: Label for the delay after which an F15 key press is sent to keep the computer awake.
#: addon\globalPlugins\remoteClient\dialogs.py:587
msgid "Delay without activity before keeping the computer awake (in seconds):"
msgstr ""
#. Translators: Label for the maximum duration during which sleep is prevented.
#: addon\globalPlugins\remoteClient\dialogs.py:591
msgid "Maximum duration for preventing the computer from going to sleep:"
msgstr ""
#. Translators: A checkbox in add-on options dialog to allow sending files larger than 10 MB to computers running the original TeleNVDA.
#: addon\globalPlugins\remoteClient\dialogs.py:596
msgid ""
"Allow files larger than 10 MB even when the other computer does not support "
"the new transfer system"
msgstr ""
#. Translators: Label for the maximum size of a file sent without the new transfer system.
#: addon\globalPlugins\remoteClient\dialogs.py:600
msgid "Maximum size of those transfers (in MB):"
msgstr ""
#. Translators: Label for the maximum size of a file accepted from the other computer, 0 meaning no limit.
#: addon\globalPlugins\remoteClient\dialogs.py:604
msgid "Maximum size of received files, in MB (0 for no limit):"
msgstr ""
#. Translators: A checkbox in add-on options dialog to allow sharing this screen with the controlling computer.
#: addon\globalPlugins\remoteClient\dialogs.py:608
msgid "Allow sharing the screen of the controlled computer"
msgstr ""
#. Translators: A checkbox in add-on options dialog to ask before the screen of this computer is shared.
#: addon\globalPlugins\remoteClient\dialogs.py:612
msgid "Ask before sharing this screen"
msgstr ""
#. Translators: A checkbox in add-on options dialog to let the controlling computer move the mouse.
#: addon\globalPlugins\remoteClient\dialogs.py:615
msgid "Allow the controlling computer to use the mouse of this computer"
msgstr ""
#. Translators: a text field in add-on options dialog to set the portcheck service URL
#: addon\globalPlugins\remoteClient\dialogs.py:618
msgid "Portcheck &service URL: "
msgstr ""
#. Translators: A button in add-on options dialog to delete all fingerprints of unauthorized certificates.
#: addon\globalPlugins\remoteClient\dialogs.py:622
msgid "Delete all trusted fingerprints"
msgstr ""
#. Translators: Label for the folder where received screenshots are saved.
#: addon\globalPlugins\remoteClient\dialogs.py:626
msgid "Screenshot save &folder:"
msgstr ""
#. Translators: Button used to choose the folder where received screenshots are saved.
#: addon\globalPlugins\remoteClient\dialogs.py:631
msgid "&Browse..."
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:769
msgid ""
"When connecting to an unauthorized server, you will again be prompted to "
"accepts its certificate."
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:769
msgid "Are you sure you want to delete all stored trusted fingerprints?"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:782
msgid "Choose the folder where received screenshots will be saved"
msgstr ""
#. Translators: error message for invalid format on Portcheck service URL
#: addon\globalPlugins\remoteClient\dialogs.py:804
#, python-brace-format
msgid ""
"Invalid format for portcheck service URL. You must include {port} somewhere."
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:812
msgid ""
"Invalid inactivity duration. Use the format jj:hh:mm, for example 30:00:00 "
"or 00:00:01."
msgstr ""
#. Translators: A title bar of a window presented when an attempt has been made to connect with a server with unauthorized certificate.
#: addon\globalPlugins\remoteClient\dialogs.py:892
msgid "TeleNVDA Connection Security Warning"
msgstr ""
#. Translators: A message of a window presented when an attempt has been made to connect with a server with unauthorized certificate.
#: addon\globalPlugins\remoteClient\dialogs.py:894
#, python-brace-format
msgid ""
"Warning! The certificate of this server could not be verified.\n"
"This connection may not be secure. It is possible that someone is trying to "
"overhear your communication.\n"
"Before continuing please make sure that the following server certificate "
"fingerprint is a proper one.\n"
"If you have any questions, please contact the server administrator.\n"
"\n"
"Server SHA256 fingerprint: {fingerprint}\n"
"\n"
"Do you want to continue connecting?"
msgstr ""
#: addon\globalPlugins\remoteClient\dialogs.py:896
msgid "Connect and do not ask again for this server"
msgstr ""
#. Translators: Title of the connect dialog.
#: addon\globalPlugins\remoteClient\dialogs.py:896
#: addon\globalPlugins\remoteClient\__init__.py:1098
msgid "Connect"
msgstr ""
#. Translators: Default name used when a received file has no usable name.
#: addon\globalPlugins\remoteClient\file_transfer.py:83
msgid "received file"
msgstr ""
#. Translators: Units used to report the size of a file being transferred.
#: addon\globalPlugins\remoteClient\file_transfer.py:91
msgid "bytes"
msgstr ""
#: addon\globalPlugins\remoteClient\file_transfer.py:91
msgid "KB"
msgstr ""
#: addon\globalPlugins\remoteClient\file_transfer.py:91
msgid "MB"
msgstr ""
#: addon\globalPlugins\remoteClient\file_transfer.py:91
msgid "GB"
msgstr ""
#: addon\globalPlugins\remoteClient\file_transfer.py:91
msgid "TB"
msgstr ""
#. Translators: Transfer speed, {size} is a formatted file size such as "1.2 MB".
#: addon\globalPlugins\remoteClient\file_transfer.py:102
#, python-brace-format
msgid "{size}/s"
msgstr ""
#. Translators: Remaining time of a file transfer, in hours and minutes.
#: addon\globalPlugins\remoteClient\file_transfer.py:111
#, python-brace-format
msgid "{hours} h {minutes} min"
msgstr ""
#. Translators: Remaining time of a file transfer, in minutes and seconds.
#: addon\globalPlugins\remoteClient\file_transfer.py:114
#, python-brace-format
msgid "{minutes} min {seconds} s"
msgstr ""
#. Translators: Remaining time of a file transfer, in seconds.
#: addon\globalPlugins\remoteClient\file_transfer.py:116
#, python-brace-format
msgid "{seconds} s"
msgstr ""
#. Translators: Name of the progress bar of the file transfer dialog.
#: addon\globalPlugins\remoteClient\file_transfer.py:132
msgid "Progress"
msgstr ""
#. Translators: Button which interrupts a file transfer.
#: addon\globalPlugins\remoteClient\file_transfer.py:137
msgid "&Cancel"
msgstr ""
#. Translators: Remaining time of a file transfer which cannot be estimated yet.
#: addon\globalPlugins\remoteClient\file_transfer.py:168
msgid "unknown"
msgstr ""
#. Translators: Status of a file transfer in progress.
#: addon\globalPlugins\remoteClient\file_transfer.py:171
#, python-brace-format
msgid "{percent}% - {transferred} of {total} - {speed} - {remaining} remaining"
msgstr ""
#. Translators: Progress of a file transfer, announced periodically.
#: addon\globalPlugins\remoteClient\file_transfer.py:182
#, python-brace-format
msgid "{percent}%, {transferred} of {total}"
msgstr ""
#. Translators: Title of the dialog reporting the progress of a file being sent.
#: addon\globalPlugins\remoteClient\file_transfer.py:220
msgid "Sending a file"
msgstr ""
#. Translators: Message reported when a file could not be sent.
#: addon\globalPlugins\remoteClient\file_transfer.py:282
msgid "Unable to send the file."
msgstr ""
#. Translators: Message reported when the other computer refused a file transfer.
#: addon\globalPlugins\remoteClient\file_transfer.py:300
msgid "The other computer refused the file transfer."
msgstr ""
#. Translators: Message reported when a file has been sent successfully.
#: addon\globalPlugins\remoteClient\file_transfer.py:348
#: addon\globalPlugins\remoteClient\file_transfer.py:647
msgid "File sent"
msgstr ""
#. Translators: Message reported when a file transfer was interrupted.
#: addon\globalPlugins\remoteClient\file_transfer.py:354
msgid "File transfer interrupted"
msgstr ""
#. Translators: Title of the dialog reporting the progress of a file being received.
#: addon\globalPlugins\remoteClient\file_transfer.py:389
msgid "Receiving a file"
msgstr ""
#. Translators: Message reported when a received file was corrupted during the transfer.
#: addon\globalPlugins\remoteClient\file_transfer.py:407
#: addon\globalPlugins\remoteClient\file_transfer.py:415
msgid "The file transfer failed because data was lost."
msgstr ""
#. Translators: Message reported when a received file does not match what was sent.
#: addon\globalPlugins\remoteClient\file_transfer.py:442
msgid "The received file is corrupted and was discarded."
msgstr ""
#. Translators: Message reported when a received file could not be written to disk.
#: addon\globalPlugins\remoteClient\file_transfer.py:450
msgid "Unable to save the received file."
msgstr ""
#. Translators: Message reported when a file has been received successfully.
#. Translators: message spoken when the file has been received successfully
#: addon\globalPlugins\remoteClient\file_transfer.py:457
#: addon\globalPlugins\remoteClient\local_machine.py:307
msgid "File received"
msgstr ""
#. Translators: Message reported when the other computer interrupted a file transfer.
#: addon\globalPlugins\remoteClient\file_transfer.py:471
msgid "The file transfer was interrupted by the other computer."
msgstr ""
#. Translators: Message shown when a file transfer is already in progress.
#: addon\globalPlugins\remoteClient\file_transfer.py:573
msgid "A file transfer is already in progress. Please wait until it completes."
msgstr ""
#. Translators: Message shown when the file to send could not be read.
#: addon\globalPlugins\remoteClient\file_transfer.py:585
#: addon\globalPlugins\remoteClient\file_transfer.py:638
msgid "Unable to read the specified file."
msgstr ""
#. Translators: Message shown when the other computer refuses files of this size.
#: addon\globalPlugins\remoteClient\file_transfer.py:600
#, python-brace-format
msgid ""
"This file is too large. The other computer only accepts files up to {size}."
msgstr ""
#. Translators: Message shown when a file is too large for the legacy transfer.
#: addon\globalPlugins\remoteClient\file_transfer.py:616
#, python-brace-format
msgid ""
"This file is too large. The other computer only supports transfers up to "
"{size}."
msgstr ""
#. Translators: Question asked before starting a transfer which blocks the session.
#: addon\globalPlugins\remoteClient\file_transfer.py:625
msgid ""
"The session will be blocked until the transfer is complete. Are you sure you "
"want to continue?"
msgstr ""
#. Translators: Title of a warning dialog.
#. Translators: question title
#: addon\globalPlugins\remoteClient\file_transfer.py:627
#: addon\globalPlugins\remoteClient\__init__.py:673
msgid "Warning!"
msgstr ""
#. Translators: Message reported when an incoming file is larger than the configured limit.
#: addon\globalPlugins\remoteClient\file_transfer.py:663
msgid ""
"A file transfer was refused because the file is larger than the configured "
"limit."
msgstr ""
#. Translators: Message shown when there is not enough free space to receive a file.
#: addon\globalPlugins\remoteClient\file_transfer.py:675
msgid "There is not enough free disk space to receive this file."
msgstr ""
#. Translators: Message displayed in the transfer dialog when receiving a file.
#: addon\globalPlugins\remoteClient\file_transfer.py:690
#, python-brace-format
msgid "Choose where to save the received file ({name}, {size})"
msgstr ""
#. Translators: Supported file types when sending or receiving files.
#. Translators: supported file types when sending or receiving files
#: addon\globalPlugins\remoteClient\file_transfer.py:697
#: addon\globalPlugins\remoteClient\local_machine.py:296
#: addon\globalPlugins\remoteClient\__init__.py:730
msgid "All files (*.*)"
msgstr ""
#: addon\globalPlugins\remoteClient\local_machine.py:161
msgid "Clipboard updated"
msgstr ""
#. Translators: Sent when a user fails to send CTRL+ALT+DEL from a remote NVDA instance
#: addon\globalPlugins\remoteClient\local_machine.py:174
msgid "No permission on device to trigger CTRL+ALT+DEL from remote"
msgstr ""
#. Translators: message displayed in transfer file dialog when receiving a file
#: addon\globalPlugins\remoteClient\local_machine.py:292
msgid "Choose where to save the received file"
msgstr ""
#. Translators: message spoken when screen sharing is turned off
#: addon\globalPlugins\remoteClient\screen_share.py:266
msgid "Screen sharing stopped"
msgstr ""
#. Translators: message spoken when screen sharing is requested from the wrong computer
#: addon\globalPlugins\remoteClient\screen_share.py:273
msgid "Screen sharing can only be started from the controlling computer"
msgstr ""
#. Translators: message spoken when the screen sharing helper is missing
#: addon\globalPlugins\remoteClient\screen_share.py:276
msgid "Screen sharing is not available on this computer"
msgstr ""
#. Translators: message spoken when the other computer cannot share its screen
#: addon\globalPlugins\remoteClient\screen_share.py:280
msgid "The other computer does not support screen sharing"
msgstr ""
#. Translators: message spoken when screen sharing has been requested
#: addon\globalPlugins\remoteClient\screen_share.py:288
msgid "Screen sharing requested"
msgstr ""
#. Translators: question asked before sharing this screen, with mouse control
#: addon\globalPlugins\remoteClient\screen_share.py:328
msgid ""
"The controlling computer asks to see this screen and to control the mouse. "
"Do you accept?"
msgstr ""
#. Translators: question asked before sharing this screen
#: addon\globalPlugins\remoteClient\screen_share.py:331
msgid "The controlling computer asks to see this screen. Do you accept?"
msgstr ""
#. Translators: title of the screen sharing request dialog
#: addon\globalPlugins\remoteClient\screen_share.py:335
msgid "Screen sharing request"
msgstr ""
#. Translators: message spoken on the controlled computer when it starts sharing its screen
#: addon\globalPlugins\remoteClient\screen_share.py:368
msgid "Sharing this screen"
msgstr ""
#. Translators: message spoken when the screen sharing helper could not be started
#: addon\globalPlugins\remoteClient\screen_share.py:391
msgid "Unable to start screen sharing"
msgstr ""
#. Translators: message spoken when the other computer ended screen sharing
#. Translators: message spoken when screen sharing stopped unexpectedly
#: addon\globalPlugins\remoteClient\screen_share.py:405
#: addon\globalPlugins\remoteClient\screen_share.py:470
msgid "Screen sharing ended"
msgstr ""
#. Translators: message spoken when the screen sharing picture starts flowing
#: addon\globalPlugins\remoteClient\screen_share.py:458
msgid "Screen sharing started"
msgstr ""
#. Translators: message spoken when the screen sharing link could not be established
#: addon\globalPlugins\remoteClient\screen_share.py:475
msgid "Unable to establish the screen sharing connection"
msgstr ""
#. Translators: message spoken when the other computer refused to share its screen
#: addon\globalPlugins\remoteClient\screen_share.py:506
msgid "The other computer refused to share its screen"
msgstr ""
#. Translators: message spoken when the other computer is already sharing its screen
#: addon\globalPlugins\remoteClient\screen_share.py:509
msgid "The other computer is already sharing its screen"
msgstr ""
#. Translators: message spoken when the other computer cannot share its screen
#: addon\globalPlugins\remoteClient\screen_share.py:511
msgid "The other computer is unable to share its screen"
msgstr ""
#. translators: Message for version mismatch
#: addon\globalPlugins\remoteClient\session.py:73
msgid ""
"The version of the relay server which you have connected to is not "
"compatible with this version of the Remote Client.\n"
"Please either use a different server or upgrade your version of the addon."
msgstr ""
#: addon\globalPlugins\remoteClient\session.py:81
msgid "Message of the Day"
msgstr ""
#. Translators: message spoken when this computer has sent a screenshot to the controlling computer
#: addon\globalPlugins\remoteClient\session.py:289
msgid "Screenshot sent"
msgstr ""
#: addon\globalPlugins\remoteClient\session.py:378
msgid "Remote NVDA not connected."
msgstr ""
#. Translators: message spoken when the controlled computer never returned the
#. requested screenshot.
#: addon\globalPlugins\remoteClient\session.py:455
msgid "No screenshot received from the remote computer"
msgstr ""
#: addon\globalPlugins\remoteClient\url_handler.py:67
msgid "Invalid URL"
msgstr ""
#. Translators: Message shown when an invalid URL has been provided.
#: addon\globalPlugins\remoteClient\url_handler.py:69
#, python-format
msgid "Unable to parse url \"%s\""
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:213
msgid "Your NVDA Remote configuration was corrupted and has been reset."
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:213
msgid "NVDA Remote Configuration Error"
msgstr ""
#. Translators: Spoken when auto-connect is automatically disabled after a long period without remote control activity.
#: addon\globalPlugins\remoteClient\__init__.py:292
msgid ""
"The auto-connect option was automatically disabled after a long period "
"without any remote control activity."
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:340
msgid ""
"A previously downloaded TeleNVDA update could not be finished automatically. "
"NVDA must be restarted to complete the installation. Restart NVDA now?"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:344
#: addon\globalPlugins\remoteClient\__init__.py:367
#: addon\globalPlugins\remoteClient\__init__.py:382
#: addon\globalPlugins\remoteClient\__init__.py:390
#: addon\globalPlugins\remoteClient\__init__.py:398
#: addon\globalPlugins\remoteClient\__init__.py:405
#: addon\globalPlugins\remoteClient\__init__.py:424
#: addon\globalPlugins\remoteClient\__init__.py:433
#: addon\globalPlugins\remoteClient\__init__.py:439
msgid "TeleNVDA update"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:366
msgid "An update check is already in progress."
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:381
#, python-brace-format
msgid ""
"Unable to check for TeleNVDA updates.\n"
"\n"
"{error}"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:389
msgid "TeleNVDA is up to date."
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:395
#, python-brace-format
msgid ""
"A TeleNVDA update is available: version {version}.\n"
"\n"
"Do you want to download and install it now?"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:404
msgid "Another TeleNVDA update operation is already in progress."
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:423
#, python-brace-format
msgid ""
"Unable to download or verify the TeleNVDA update.\n"
"\n"
"{error}"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:432
#, python-brace-format
msgid ""
"NVDA could not install the TeleNVDA update.\n"
"\n"
"{error}"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:438
msgid ""
"The TeleNVDA update was installed. NVDA must be restarted to finish the "
"installation. Restart NVDA now?"
msgstr ""
#. Translators: Item in TeleNVDA submenu to connect to a remote computer.
#: addon\globalPlugins\remoteClient\__init__.py:473
msgid "Connect..."
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:473
msgid ""
"Remotely connect to another computer running NVDA Remote Access or TeleNVDA"
msgstr ""
#. Translators: Item in TeleNVDA submenu to disconnect from a remote computer.
#: addon\globalPlugins\remoteClient\__init__.py:476
msgid "Disconnect"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:476
msgid "Disconnect from another computer running NVDA Remote Access or TeleNVDA"
msgstr ""
#. Translators: Menu item in TeleNVDA submenu to mute speech and sounds from the remote computer.
#: addon\globalPlugins\remoteClient\__init__.py:480
#: addon\globalPlugins\remoteClient\__init__.py:696
#: addon\globalPlugins\remoteClient\__init__.py:1006
msgid "Mute remote"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:480
#: addon\globalPlugins\remoteClient\__init__.py:690
msgid "Mute speech and sounds from the remote computer"
msgstr ""
#. Translators: Menu item in TeleNVDA submenu to push clipboard content to the remote computer.
#: addon\globalPlugins\remoteClient\__init__.py:484
msgid "&Push clipboard"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:484
msgid "Push the clipboard to the other machine"
msgstr ""
#. Translators: Menu item in TeleNVDA submenu to send a file to the remote computer.
#: addon\globalPlugins\remoteClient\__init__.py:488
msgid "Send &file..."
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:488
msgid "Send a file to the other machine"
msgstr ""
#: addon\globalPlugins\remoteClient\__init__.py:491
msgid "Request &screenshot"