-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathResources.resw
More file actions
3049 lines (3004 loc) · 218 KB
/
Copy pathResources.resw
File metadata and controls
3049 lines (3004 loc) · 218 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
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="AddProfile_AddNewTextBlock.Text" xml:space="preserve">
<value>Нови празан профил</value>
<comment>Button label that creates a new profile with default settings.</comment>
</data>
<data name="AddProfile_Duplicate.Header" xml:space="preserve">
<value>Дуплирај профил</value>
<comment>This is the header for a control that lets the user duplicate one of their existing profiles.</comment>
</data>
<data name="AddProfile_DuplicateTextBlock.Text" xml:space="preserve">
<value>Дуплирај</value>
<comment>Button label that duplicates the selected profile and navigates to the duplicate's page.</comment>
</data>
<data name="ColorScheme_InboxSchemeDuplicate.Header" xml:space="preserve">
<value>Ова шема боја је део уграђених подешавања или инсталираног проширења</value>
</data>
<data name="ColorScheme_InboxSchemeDuplicate.HelpText" xml:space="preserve">
<value>Ако желите да измените ову шему боја, прво морате да направите њену копију.</value>
</data>
<data name="ColorScheme_DuplicateButton.Content" xml:space="preserve">
<value>Направи копију</value>
<comment>This is a call to action; the user can click the button to make a copy of the current color scheme.</comment>
</data>
<data name="ColorScheme_SetAsDefault.Header" xml:space="preserve">
<value>Постави шему боја као подразумевану</value>
<comment>This is the header for a control that allows the user to set the currently selected color scheme as their default.</comment>
</data>
<data name="ColorScheme_SetAsDefault.HelpText" xml:space="preserve">
<value>Ова шема боја се, као подразумевана, примењује на све ваше профиле. Појединачни профили још увек могу да бирају сопствене шеме боја.</value>
<comment>A description explaining how this control changes the user's default color scheme.</comment>
</data>
<data name="ColorScheme_Rename.Header" xml:space="preserve">
<value>Промени име шеми боја</value>
<comment>This is the header for a control that allows the user to rename the currently selected color scheme.</comment>
</data>
<data name="ColorScheme_Background.Text" xml:space="preserve">
<value>Позадина</value>
<comment>This is the header for a control that lets the user select the background color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Black.Text" xml:space="preserve">
<value>Црна</value>
<comment>This is the header for a control that lets the user select the black color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Blue.Text" xml:space="preserve">
<value>Плава</value>
<comment>This is the header for a control that lets the user select the blue color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightBlack.Text" xml:space="preserve">
<value>Светлоцрна</value>
<comment>This is the header for a control that lets the user select the bright black color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightBlue.Text" xml:space="preserve">
<value>Светлоплава</value>
<comment>This is the header for a control that lets the user select the bright blue color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightCyan.Text" xml:space="preserve">
<value>Светлоцијан</value>
<comment>This is the header for a control that lets the user select the bright cyan color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightGreen.Text" xml:space="preserve">
<value>Светлозелена</value>
<comment>This is the header for a control that lets the user select the bright green color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightPurple.Text" xml:space="preserve">
<value>Светлопурпурна</value>
<comment>This is the header for a control that lets the user select the bright purple color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightRed.Text" xml:space="preserve">
<value>Светлоцрвена</value>
<comment>This is the header for a control that lets the user select the bright red color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightWhite.Text" xml:space="preserve">
<value>Светлобела</value>
<comment>This is the header for a control that lets the user select the bright white color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightYellow.Text" xml:space="preserve">
<value>Светложута</value>
<comment>This is the header for a control that lets the user select the bright yellow color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_CursorColor.Text" xml:space="preserve">
<value>Боја курсора</value>
<comment>This is the header for a control that lets the user select the text cursor's color displayed on the screen.</comment>
</data>
<data name="ColorScheme_Cyan.Text" xml:space="preserve">
<value>Цијан</value>
<comment>This is the header for a control that lets the user select the cyan color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Foreground.Text" xml:space="preserve">
<value>Предњи план</value>
<comment>This is the header for a control that lets the user select the foreground color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Green.Text" xml:space="preserve">
<value>Зелена</value>
<comment>This is the header for a control that lets the user select the green color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Purple.Text" xml:space="preserve">
<value>Пурпурна</value>
<comment>This is the header for a control that lets the user select the purple color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_SelectionBackground.Text" xml:space="preserve">
<value>Позадина избора</value>
<comment>This is the header for a control that lets the user select the background color for selected text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Red.Text" xml:space="preserve">
<value>Црвена</value>
<comment>This is the header for a control that lets the user select the red color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_White.Text" xml:space="preserve">
<value>Бела</value>
<comment>This is the header for a control that lets the user select the white color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Yellow.Text" xml:space="preserve">
<value>Жута</value>
<comment>This is the header for a control that lets the user select the yellow color for text displayed on the screen.</comment>
</data>
<data name="Globals_Language.Header" xml:space="preserve">
<value>Језик (потребно је поновно покретање)</value>
<comment>The header for a control allowing users to choose the app's language.</comment>
</data>
<data name="Globals_Language.HelpText" xml:space="preserve">
<value>Бира језик приказа апликације. Ово ће заменити подразумевани језик интерфејса Windows-а.</value>
<comment>A description explaining how this control changes the app's language. {Locked="Windows"}</comment>
</data>
<data name="Globals_LanguageDefault" xml:space="preserve">
<value>Подразумевани</value>
<comment>The app contains a control allowing users to choose the app's language. If this value is chosen, the language preference list of the system settings is used instead.</comment>
</data>
<data name="Globals_DefaultInputScope.Header" xml:space="preserve">
<value>Подразумевани режим IME уноса</value>
<comment>The "input scope" of an IME tells it what type of characters should be available for input. A Chinese IME for instance may show English letters instead of Chinese ones. It's a technical term. We're using "input mode" instead of "input scope" to make it easier to understand for users.</comment>
</data>
<data name="Globals_DefaultInputScope.HelpText" xml:space="preserve">
<value>Обавештава IME који језик да користи подразумевано. За језике који се ослањају на IME и подразумевано не користе латиничне карактере, ово подешавање може да се употреби тако да се приликом покретања форсира унос на енглеском језику.</value>
</data>
<data name="Globals_DefaultInputScopeDefault.Content" xml:space="preserve">
<value>Подразумевани</value>
</data>
<data name="Globals_DefaultInputScopeAlphanumericHalfWidth.Content" xml:space="preserve">
<value>Алфанумерички пола ширине (енглески)</value>
</data>
<data name="Globals_AlwaysShowTabs.Header" xml:space="preserve">
<value>Увек прикажи картице</value>
<comment>Header for a control to toggle if the app should always show the tabs (similar to a website browser).</comment>
</data>
<data name="Globals_AlwaysShowTabs.HelpText" xml:space="preserve">
<value>Када је искључено, линија са картицама ће се појавити када се креира нова картица. Не може да се искључи када је укључено „Сакриј насловну линију”.</value>
<comment>A description for what the "always show tabs" setting does. Presented near "Globals_AlwaysShowTabs.Header". This setting cannot be disabled while "Globals_ShowTitlebar.Header" is enabled.</comment>
</data>
<data name="Globals_NewTabPosition.Header" xml:space="preserve">
<value>Позиција новокреираних картица</value>
<comment>Header for a control to select position of newly created tabs.</comment>
</data>
<data name="Globals_NewTabPosition.HelpText" xml:space="preserve">
<value>Наводи место на линији картица на којем се појављују картице које се креирају.</value>
<comment>A description for what the "Position of newly created tabs" setting does.</comment>
</data>
<data name="Globals_NewTabPositionAfterLastTab.Content" xml:space="preserve">
<value>Након последње картице</value>
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the last tab.</comment>
</data>
<data name="Globals_NewTabPositionAfterCurrentTab.Content" xml:space="preserve">
<value>Након текуће картице</value>
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
</data>
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
<value>Аутоматски копирај избор у системску оставу</value>
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
</data>
<data name="Globals_DetectURLs.Header" xml:space="preserve">
<value>Аутоматски детектуј URL адресе и омогући клик на њих</value>
<comment>Header for a control to toggle whether the terminal should automatically detect URLs and make them clickable, or not.</comment>
</data>
<data name="Globals_SearchWebDefaultQueryUrl.Header" xml:space="preserve">
<value>Подразумевани URL који се користи за „Претражи веб” акцију.</value>
<comment>Header for a control to set the query URL when using the "search web" action.</comment>
</data>
<data name="Globals_SearchWebDefaultQueryUrl.HelpText" xml:space="preserve">
<value>Местоодржач „%s” биће замењен упитом за претрагу.</value>
<comment>{Locked="%s"} Additional text presented near "Globals_SearchWebDefaultQueryUrl.Header".</comment>
</data>
<data name="Globals_TrimBlockSelection.Header" xml:space="preserve">
<value>Уклони празан простор на крају у правоугаоном избору</value>
<comment>Header for a control to toggle whether a text selected with block selection should be trimmed of white spaces when copied to the clipboard, or not.</comment>
</data>
<data name="Globals_TrimPaste.Header" xml:space="preserve">
<value>Уклони празан простор на крају када се налепљује</value>
<comment>Header for a control to toggle whether pasted text should be trimmed of white spaces, or not.</comment>
</data>
<data name="Globals_DefaultProfile.Header" xml:space="preserve">
<value>Подразумевани профил</value>
<comment>Header for a control to select your default profile from the list of profiles you've created.</comment>
</data>
<data name="Globals_DefaultProfile.HelpText" xml:space="preserve">
<value>Профил који се отвара када се кликне икона ’+’ или куцањем пречице за нову картицу.</value>
<comment>A description for what the default profile is and when it's used.</comment>
</data>
<data name="Globals_DefaultTerminal.Header" xml:space="preserve">
<value>Подразумевана терминалска апликација</value>
<comment>Header for a drop down that permits the user to select which installed Terminal application will launch when command line tools like CMD are run from the Windows Explorer run box or start menu or anywhere else that they do not already have a graphical window assigned.</comment>
</data>
<data name="Globals_DefaultTerminal.HelpText" xml:space="preserve">
<value>Терминалска апликација која се покреће када се апликација из командне линије покрене без постојеће сесије, као, на пример, из Старт менија или из дијалога Покрени.</value>
<comment>A description to clarify that the dropdown choice for default terminal will tell the operating system which Terminal application (Intelligent Terminal, the preview build, the legacy inbox window, or a 3rd party one) to use when starting a command line tool like CMD or Powershell that does not already have a window.</comment>
</data>
<data name="Globals_GraphicsAPI.Header" xml:space="preserve">
<value>Графички API</value>
<comment>This text is shown next to a list of choices.</comment>
</data>
<data name="Globals_GraphicsAPI.HelpText" xml:space="preserve">
<value>Direct3D 11 нуди боље перформансе и богатије могућности, док је Direct2D стабилнији. Подразумевана опција „Аутоматски” изабраће API који најбоље одговара вашем графичком хардверу. Ако наиђете на озбиљне проблеме, размислите о томе да користите Direct2D.</value>
</data>
<data name="Globals_GraphicsAPI_Automatic.Text" xml:space="preserve">
<value>Аутоматски</value>
<comment>The default choice between multiple graphics APIs.</comment>
</data>
<data name="Globals_GraphicsAPI_Direct2d.Text" xml:space="preserve">
<value>Direct2D</value>
</data>
<data name="Globals_GraphicsAPI_Direct3d11.Text" xml:space="preserve">
<value>Direct3D 11</value>
</data>
<data name="Globals_DisablePartialInvalidation.Header" xml:space="preserve">
<value>Искључи делимичну Swap Chain инвалидацију</value>
<comment>"Swap Chain" is an official technical term by Microsoft. This text is shown next to a toggle.</comment>
</data>
<data name="Globals_DisablePartialInvalidation.HelpText" xml:space="preserve">
<value>Подразумевано, исцртавач текста користи FLIP_SEQUENTIAL Swap Chain и декларише прљаве правоугаонике користећи Present1 API. Када се ово подешавање укључи, уместо њега се користи FLIP_DISCARD Swap Chain и не декларишу се прљави правоугаоници. Да ли је боље једно или друго, зависи од вашег хардвера и бројних других фактора.</value>
<comment>{Locked="Present1","FLIP_DISCARD","FLIP_SEQUENTIAL"}</comment>
</data>
<data name="Globals_SoftwareRendering.Header" xml:space="preserve">
<value>Користи софтверско исцртавање (WARP)</value>
<comment>{Locked="WARP"} WARP is the "Windows Advanced Rasterization Platform". This text is shown next to a toggle.</comment>
</data>
<data name="Globals_SoftwareRendering.HelpText" xml:space="preserve">
<value>Када је укључено, терминал ће да користи софтверски исцртавач (WARP). Ово подешавање би требало да остане искључено у скоро свим случајевима.</value>
<comment>{Locked="WARP"} WARP is the "Windows Advanced Rasterization Platform".</comment>
</data>
<data name="Globals_TextMeasurement.Header" xml:space="preserve">
<value>Режим мерења текста</value>
<comment>This text is shown next to a list of choices.</comment>
</data>
<data name="Globals_TextMeasurement.HelpText" xml:space="preserve">
<value>Ово мења начин на који се долазни текст распоређује у ћелије. Опција „Скупине графема” је најсавременији и Unicode-исправан начин за то, док је „wcswidth” уобичајен приступ на UNIX системима, а „Windows Console” опонаша начин на који је то некада радило у Windows-у. Измена овог подешавања захтева поновно покретање програма Интелигентни Терминал и примењује се само на апликације покренуте из њега.</value>
</data>
<data name="Globals_TextMeasurement_Graphemes.Text" xml:space="preserve">
<value>Скупине графема</value>
<comment>The default choice between multiple graphics APIs.</comment>
</data>
<data name="Globals_TextMeasurement_Wcswidth.Text" xml:space="preserve">
<value>wcswidth</value>
<comment>{Locked="wcswidth"}</comment>
</data>
<data name="Globals_TextMeasurement_Console.Text" xml:space="preserve">
<value>Windows Console</value>
</data><data name="Globals_AmbiguousWidth.Header" xml:space="preserve">
<value>Ширина двосмислених знакова</value>
<comment>A label for a drop down selector, referring to the East Asian Ambiguous Width Unicode specification.</comment>
</data><data name="Globals_AmbiguousWidth.HelpText" xml:space="preserve">
<value>Подешава ширину која се користи за источноазијске знакове двосмислене ширине. „Уско” (подразумевано) даје предност компатибилности, док „Широко” даје предност читљивости са многим CJK фонтовима. У режиму „Широко” неке апликације можда неће радити исправно и могу изазвати непредвидљиво померање курсора. Измена овог подешавања захтева поновно покретање програма Интелигентни Терминал и примењује се само на апликације покренуте из њега.</value>
</data><data name="Globals_AmbiguousWidth_Narrow.Text" xml:space="preserve">
<value>Уско</value>
<comment>As in "narrow width". Refers to the East Asian Ambiguous Width Unicode specification.</comment>
</data><data name="Globals_AmbiguousWidth_Wide.Text" xml:space="preserve">
<value>Широко</value>
<comment>As in "wide width". Refers to the East Asian Ambiguous Width Unicode specification.</comment>
</data>
<data name="Globals_InitialCols.Text" xml:space="preserve">
<value>Колоне</value>
<comment>Header for a control to choose the number of columns in the terminal's text grid.</comment>
</data>
<data name="Globals_InitialRows.Text" xml:space="preserve">
<value>Редови</value>
<comment>Header for a control to choose the number of rows in the terminal's text grid.</comment>
</data>
<data name="Globals_InitialColsBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Почетне колоне</value>
<comment>Name for a control to choose the number of columns in the terminal's text grid.</comment>
</data>
<data name="Globals_InitialRowsBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Почетни редови</value>
<comment>Name for a control to choose the number of rows in the terminal's text grid.</comment>
</data>
<data name="Globals_InitialPosXBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>X позиција</value>
<comment>Name for a control to choose the X coordinate of the terminal's starting position.</comment>
</data>
<data name="Globals_InitialPosXBox.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Унесите вредност за x координату.</value>
<comment>Tooltip for the control that allows the user to choose the X coordinate of the terminal's starting position.</comment>
</data>
<data name="Globals_InitialPosXBox.PlaceholderText" xml:space="preserve">
<value>X</value>
<comment>The string to be displayed when there is no current value in the x-coordinate number box.</comment>
</data>
<data name="Globals_InitialPosYBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Y позиција</value>
<comment>Name for a control to choose the Y coordinate of the terminal's starting position.</comment>
</data>
<data name="Globals_InitialPosYBox.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Унесите вредност за y координату.</value>
<comment>Tooltip for the control that allows the user to choose the Y coordinate of the terminal's starting position.</comment>
</data>
<data name="Globals_InitialPosYBox.PlaceholderText" xml:space="preserve">
<value>Y</value>
<comment>The string to be displayed when there is no current value in the y-coordinate number box.</comment>
</data>
<data name="Globals_DefaultLaunchPositionCheckbox.Content" xml:space="preserve">
<value>Нека Windows одлучи</value>
<comment>A checkbox for the "launch position" setting. Toggling this control sets the launch position to whatever the Windows operating system decides.</comment>
</data>
<data name="Globals_DefaultLaunchPositionCheckbox.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Ако је укључено, користи се системска подразумевана позиција покретања.</value>
<comment>A description for what the "default launch position" checkbox does. Presented near "Globals_DefaultLaunchPositionCheckbox".</comment>
</data>
<data name="Globals_FirstWindowPreference.Header" xml:space="preserve">
<value>Када се Терминал покрене</value>
<comment>Header for a control to select how the terminal should load its first window.</comment>
</data>
<data name="Globals_FirstWindowPreference.HelpText" xml:space="preserve">
<value>Шта би требало да се прикаже када се креира први терминал.</value>
</data>
<data name="Globals_FirstWindowPreferenceDefaultProfile.Content" xml:space="preserve">
<value>Отвори картицу са подразумеваним профилом</value>
<comment>An option to choose from for the "First window preference" setting. Open the default profile.</comment>
</data>
<data name="Globals_FirstWindowPreferencePersistedWindowLayout.Content" xml:space="preserve">
<value>Отвори прозоре из претходне сесије</value>
<comment>An option to choose from for the "First window preference" setting. Reopen the layouts from the last session.</comment>
</data>
<data name="Globals_FirstWindowPreferencePersistedLayoutAndContent.Content" xml:space="preserve">
<value>Обнови распоред прозора и садржај</value>
<comment>An option to choose from for the "First window preference" setting. Reopen the layouts from the last session and preserve the content.</comment>
</data>
<data name="Globals_FirstWindowPreferencePersistedLayout.Content" xml:space="preserve">
<value>Обнови распоред прозора</value>
<comment>An option to choose from for the "First window preference" setting. Reopen the layouts from the last session, but don't preserve the content.</comment>
</data>
<data name="Globals_LaunchParameters.Header" xml:space="preserve">
<value>Параметри покретања</value>
<comment>Header for a set of settings that determine how terminal launches. These settings include the launch mode, launch position and whether the terminal should center itself on launch.</comment>
</data>
<data name="Globals_LaunchParameters.HelpText" xml:space="preserve">
<value>Подешавања која контролишу како се покреће терминал</value>
<comment>A description for what the "launch parameters" expander contains. Presented near "Globals_LaunchParameters.Header".</comment>
</data>
<data name="Globals_LaunchModeSetting.Text" xml:space="preserve">
<value>Режим при покретању</value>
<comment>Header for a control to select what mode to launch the terminal in.</comment>
</data>
<data name="Globals_LaunchModeSetting.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Како ће се терминал приказати приликом покретања. Фокус ће сакрити линију картица и насловну линију.</value>
<comment>'Focus' must match <Globals_LaunchModeFocus.Content>.</comment>
</data>
<data name="Globals_LaunchModeDefault.Content" xml:space="preserve">
<value>Подразумевани</value>
<comment>An option to choose from for the "launch mode" setting. Default option.</comment>
</data>
<data name="Globals_LaunchModeFullscreen.Content" xml:space="preserve">
<value>Пун екран</value>
<comment>An option to choose from for the "launch mode" setting. Opens the app in a full screen state.</comment>
</data>
<data name="Globals_LaunchModeMaximized.Content" xml:space="preserve">
<value>Увећано</value>
<comment>An option to choose from for the "launch mode" setting. Opens the app maximized (covers the whole screen).</comment>
</data>
<data name="Globals_WindowingBehavior.Header" xml:space="preserve">
<value>Понашање нове инстанце</value>
<comment>Header for a control to select how new app instances are handled.</comment>
</data>
<data name="Globals_WindowingBehavior.HelpText" xml:space="preserve">
<value>Контролише како се нове инстанце терминала каче на постојеће прозоре.</value>
<comment>A description for what the "windowing behavior" setting does. Presented near "Globals_WindowingBehavior.Header".</comment>
</data>
<data name="Globals_WindowingBehaviorUseNew.Content" xml:space="preserve">
<value>Креирај нови прозор</value>
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances create a new window.</comment>
</data>
<data name="Globals_WindowingBehaviorUseAnyExisting.Content" xml:space="preserve">
<value>Прикачи на последње коришћени прозор</value>
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window.</comment>
</data>
<data name="Globals_WindowingBehaviorUseExisting.Content" xml:space="preserve">
<value>Прикачи на последње коришћени прозор на овој радној површини</value>
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
</data>
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
<value>Сакриј насловну линију (потребно је поновно покретање)</value>
<comment>Header for a control to toggle whether the title bar should be shown or not. Changing this setting requires the user to relaunch the app.</comment>
</data>
<data name="Globals_ShowTitlebar.HelpText" xml:space="preserve">
<value>Када је искључено, линија наслова ће се појавити изнад картица.</value>
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
</data>
<data name="Globals_AcrylicTabRow.Header" xml:space="preserve">
<value>Користи акрилни материјал у реду картица</value>
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
</data>
<data name="Globals_ShowTitleInTitlebar.Header" xml:space="preserve">
<value>Користи наслов активног терминала као наслов апликације</value>
<comment>Header for a control to toggle whether the terminal's title is shown as the application title, or not.</comment>
</data>
<data name="Globals_ShowTitleInTitlebar.HelpText" xml:space="preserve">
<value>Када је искључено, линија наслова ће да буде ’Терминал’.</value>
<comment>A description for what the "show title in titlebar" setting does. Presented near "Globals_ShowTitleInTitlebar.Header".{Locked="Windows"}</comment>
</data>
<data name="Globals_SnapToGridOnResize.Header" xml:space="preserve">
<value>Ограничи промену величине прозора на мрежу карактера</value>
<comment>Header for a control to toggle whether the terminal snaps the window to the character grid when resizing, or not.</comment>
</data>
<data name="Globals_SnapToGridOnResize.HelpText" xml:space="preserve">
<value>Када је искључено, промена величине прозора ће бити глатка.</value>
<comment>A description for what the "snap to grid on resize" setting does. Presented near "Globals_SnapToGridOnResize.Header".</comment>
</data>
<data name="Globals_StartOnUserLogin.Header" xml:space="preserve">
<value>Покрени приликом стартовања машине</value>
<comment>Header for a control to toggle whether the app should launch when the user's machine starts up, or not.</comment>
</data>
<data name="Globals_StartOnUserLogin.HelpText" xml:space="preserve">
<value>Терминал се аутоматски покреће када се пријавите на Windows.</value>
<comment>A description for what the "start on user login" setting does. Presented near "Globals_StartOnUserLogin.Header". {Locked="Windows"}</comment>
</data>
<data name="Globals_CenterOnLaunchCentered" xml:space="preserve">
<value>Центрирано</value>
<comment>Shorthand, explanatory text displayed when the user has enabled the feature indicated by "Globals_CenterOnLaunch.Text".</comment>
</data>
<data name="Globals_CenterOnLaunch.Text" xml:space="preserve">
<value>Прозор се центрира приликом покретања</value>
<comment>Header for a control to toggle whether the app should launch in the center of the screen, or not.</comment>
</data>
<data name="Globals_CenterOnLaunch.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Када је укључено, прозор ће се приликом покретања поставити у центар екрана.</value>
<comment>A description for what the "center on launch" setting does. Presented near "Globals_CenterOnLaunch.Header".</comment>
</data>
<data name="Globals_AlwaysOnTop.Header" xml:space="preserve">
<value>Увек на врху</value>
<comment>Header for a control to toggle if the app will always be presented on top of other windows, or is treated normally (when disabled).</comment>
</data>
<data name="Profile_ForceVTInput.Header" xml:space="preserve">
<value>Користи стару верзију кодирања уноса</value>
<comment>Header for a control to toggle legacy input encoding for the terminal.</comment>
</data><data name="Profile_AllowKittyKeyboardMode.Header" xml:space="preserve">
<value>Дозволи Kitty Keyboard протокол</value>
<comment>{Locked="Kitty"}Kitty is a moniker and its Keyboard Protocol is a protocol specification.</comment>
</data>
<data name="Profile_AllowVtChecksumReport.Header" xml:space="preserve">
<value>Дозволи DECRQCRA (Request Checksum of Rectangular Area)</value>
<comment>{Locked="DECRQCRA"}{Locked="Request Checksum of Rectangular Area"}Header for a control to toggle support for the DECRQCRA control sequence.</comment>
</data>
<data name="Profile_AllowVtClipboardWrite.Header" xml:space="preserve">
<value>Дозволи OSC 52 (Manipulate Selection Data) за упис у клипборд</value>
<comment>{Locked="OSC 52"}{Locked="Manipulate Selection Data"}Header for a control to toggle support for applications to change the contents of the Windows system clipboard.</comment>
</data>
<data name="Profile_AllowOscNotifications.Header" xml:space="preserve">
<value>Дозволи да OSC 777 (Desktop Notification) приказује искачућа обавештења</value>
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
</data>
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
<value>Када је омогућено, апликације могу да пошаљу управљачку секвенцу OSC 777 да би покренуле обавештење на радној површини са прилагођеним насловом и телом.</value>
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
</data>
<data name="Globals_AllowHeadless.Header" xml:space="preserve">
<value>Дозволи да се Интелигентни Терминал извршава у позадини</value>
<comment>Header for a control to toggle support for Intelligent Terminal to run in the background.</comment>
</data>
<data name="Globals_DebugFeaturesEnabled.Header" xml:space="preserve">
<value>Укључи функције за отклањање грешака</value>
<comment>Header for a control to toggle debug features.</comment>
</data>
<data name="Globals_AlwaysOnTop.HelpText" xml:space="preserve">
<value>Терминал ће увек бити изнад свих осталих прозора на радној површини.</value>
<comment>A description for what the "always on top" setting does. Presented near "Globals_AlwaysOnTop.Header".</comment>
</data>
<data name="Profile_ForceVTInput.HelpText" xml:space="preserve">
<value>Одређени унос тастатуром у неким апликацијама ће можда престати да ради исправно када се укључи ово подешавање.</value>
<comment>Additional description for what the "force vt input" setting does. Presented near "Globals_ForceVTInput.Header".</comment>
</data>
<data name="Globals_AllowHeadless.HelpText" xml:space="preserve">
<value>Ово омогућава да акције као што су Global Summon и Quake режим раде чак и када нема отворених прозора.</value>
<comment>Additional description for what the "allow headless" setting does. Presented near "Globals_AllowHeadless.Header".</comment>
</data>
<data name="Globals_TabWidthMode.Header" xml:space="preserve">
<value>Режим ширине картица</value>
<comment>Header for a control to choose how wide the tabs are.</comment>
</data>
<data name="Globals_TabWidthMode.HelpText" xml:space="preserve">
<value>Компактни ће да скупи неактивне картице на величину иконе.</value>
<comment>A description for what the "tab width mode" setting does. Presented near "Globals_TabWidthMode.Header". 'Compact' must match the value for <Globals_TabWidthModeCompact.Content>.</comment>
</data>
<data name="Globals_TabWidthModeCompact.Content" xml:space="preserve">
<value>Компактни</value>
<comment>An option to choose from for the "tab width mode" setting. When selected, unselected tabs collapse to show only their icon. The selected tab adjusts to display the content within the tab.</comment>
</data>
<data name="Globals_TabWidthModeEqual.Content" xml:space="preserve">
<value>Једнаки</value>
<comment>An option to choose from for the "tab width mode" setting. When selected, each tab has the same width.</comment>
</data>
<data name="Globals_TabWidthModeTitleLength.Content" xml:space="preserve">
<value>Дужина наслова</value>
<comment>An option to choose from for the "tab width mode" setting. When selected, each tab adjusts its width to the content within the tab.</comment>
</data>
<data name="Globals_Theme.Header" xml:space="preserve">
<value>Тема апликације</value>
<comment>Header for a control to choose the theme colors used in the app.</comment>
</data>
<data name="Globals_ThemeDark.Content" xml:space="preserve">
<value>Тамна</value>
<comment>An option to choose from for the "theme" setting. When selected, the app is in dark theme and darker colors are used throughout the app.</comment>
</data>
<data name="Globals_ThemeSystem.Content" xml:space="preserve">
<value>Користи тему система Windows</value>
<comment>An option to choose from for the "theme" setting. When selected, the app uses the theme selected in the Windows operating system.</comment>
</data>
<data name="Globals_ThemeLight.Content" xml:space="preserve">
<value>Светла</value>
<comment>An option to choose from for the "theme" setting. When selected, the app is in light theme and lighter colors are used throughout the app.</comment>
</data>
<data name="Globals_ThemeDarkLegacy.Content" xml:space="preserve">
<value>Тамна (старо)</value>
<comment>An option to choose from for the "theme" setting. When selected, the app is in dark theme and darker colors are used throughout the app. This is an older version of the "dark" theme</comment>
</data>
<data name="Globals_ThemeSystemLegacy.Content" xml:space="preserve">
<value>Користи тему система Windows (застарело)</value>
<comment>An option to choose from for the "theme" setting. When selected, the app uses the theme selected in the Windows operating system. This is an older version of the "Use Windows theme" theme</comment>
</data>
<data name="Globals_ThemeLightLegacy.Content" xml:space="preserve">
<value>Светла (старо)</value>
<comment>An option to choose from for the "theme" setting. When selected, the app is in light theme and lighter colors are used throughout the app. This is an older version of the "light" theme</comment>
</data>
<data name="Globals_WordDelimiters.Header" xml:space="preserve">
<value>Граничници речи</value>
<comment>Header for a control to determine what delimiters to use to identify separate words during word selection.</comment>
</data>
<data name="Globals_WordDelimiters.HelpText" xml:space="preserve">
<value>Ови симболи ће се користити када извршите двоструки клик на текст у терминалу или активирате „Режим избора”.</value>
<comment>A description for what the "word delimiters" setting does. Presented near "Globals_WordDelimiters.Header". "Mark" is used in the sense of "choosing something to interact with."</comment>
</data>
<data name="Nav_Appearance.Content" xml:space="preserve">
<value>Изглед</value>
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
</data>
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
<value>Шеме боја</value>
<comment>Header for the "color schemes" menu item. This navigates to a page that lets you see and modify schemes of colors that can be used by the terminal.</comment>
</data>
<data name="Nav_Interaction.Content" xml:space="preserve">
<value>Интеракција</value>
<comment>Header for the "interaction" menu item. This navigates to a page that lets you see and modify settings related to the user's mouse and touch interactions with the app.</comment>
</data>
<data name="Nav_Compatibility.Content" xml:space="preserve">
<value>Компатибилност</value>
<comment>Header for the "compatibility" menu item. This navigates to a page that lets you see and modify settings related to compatibility with command line scenarios.</comment>
</data>
<data name="Nav_Launch.Content" xml:space="preserve">
<value>Покретање</value>
<comment>Header for the "startup" menu item. This navigates to a page that lets you see and modify settings related to the app's launch experience (i.e. screen position, mode, etc.)</comment>
</data>
<data name="Nav_PaneOpenedAnnouncement" xml:space="preserve">
<value>Навигационо окно је отворено</value>
<comment>Screen reader announcement made when the user activates the toggle button that opens the settings navigation pane.</comment>
</data>
<data name="Nav_PaneClosedAnnouncement" xml:space="preserve">
<value>Навигационо окно је затворено</value>
<comment>Screen reader announcement made when the user activates the toggle button that closes the settings navigation pane.</comment>
</data>
<data name="Nav_OpenJSON.Content" xml:space="preserve">
<value>Отвори JSON датотеку</value>
<comment>Header for a menu item. This opens the JSON file that is used to log the app's settings.</comment>
</data>
<data name="Nav_ProfileDefaults.Content" xml:space="preserve">
<value>Подразумевано</value>
<comment>Header for the "defaults" menu item. This navigates to a page that lets you see and modify settings that affect profiles. This is the lowest layer of profile settings that all other profile settings are based on. If a profile doesn't define a setting, this page is responsible for figuring out what that setting is supposed to be.</comment>
</data>
<data name="Nav_Rendering.Content" xml:space="preserve">
<value>Исцртавање</value>
<comment>Header for the "rendering" menu item. This navigates to a page that lets you see and modify settings related to the app's rendering of text in the terminal.</comment>
</data>
<data name="Nav_Actions.Content" xml:space="preserve">
<value>Акције</value>
<comment>Header for the "actions" menu item. This navigates to a page that lets you see the available commands in the app.</comment>
</data>
<data name="Nav_EditAction.Content" xml:space="preserve">
<value>Уреди акцију...</value>
<comment>Header for the "edit action" page. This is the page that lets you modify a specific command and its key bindings.</comment>
</data>
<data name="Nav_Extensions.Content" xml:space="preserve">
<value>Проширења</value>
<comment>Header for the "extensions" menu item. This navigates to a page that lets you see and modify extensions for the app.</comment>
</data><data name="Nav_AIAgents.Content" xml:space="preserve">
<value>Агенти</value>
<comment>Header for the "Agents" menu item. This navigates to a page that lets you configure AI agent integration settings.</comment>
</data><data name="AIAgents_PageSubtitle.Text" xml:space="preserve">
<value>Подесите начин на који агенти раде у терминалу</value>
<comment>Subtitle shown beneath the page title on the AI Agents settings page.</comment>
</data>
<data name="AIAgents_PageSubtitlePrefix" xml:space="preserve">
<value>Подесите начин на који агенти раде у терминалу.</value>
<comment>Subtitle shown beneath the page title on the AI Agents settings page. The hyperlink in AIAgents_PageSubtitlePrivacyLink follows this sentence inline; the trailing period belongs to this prefix.</comment>
</data>
<data name="AIAgents_PageSubtitlePrivacyLink" xml:space="preserve">
<value>Сазнајте како се подаци користе.</value>
<comment>Inline hyperlink text that follows the AI Agents page subtitle and navigates to the privacy policy page. Includes a trailing period.</comment>
</data><data name="AIAgents_AcpGroupHeader.Text" xml:space="preserve">
<value>Панел агента</value>
<comment>Section header for the agent pane settings group.</comment>
</data><data name="AIAgents_DelegateGroupHeader.Text" xml:space="preserve">
<value>Палета команди</value>
<comment>Section header for the command palette agent settings group.</comment>
</data><data name="AIAgents_AcpAgent.Header" xml:space="preserve">
<value>Агент</value>
<comment>Header for the setting that specifies which AI agent CLI powers the agent pane.</comment>
</data><data name="AIAgents_AcpAgent.HelpText" xml:space="preserve">
<value>Изаберите агента који се користи у панелу агента. Сваки компатибилан ACP агент биће аутоматски откривен.</value>
<comment>Supplementary description for the agent pane setting. {Locked="ACP"}</comment>
</data><data name="AIAgents_AcpModel.Header" xml:space="preserve">
<value>Модел</value>
<comment>Header for the setting that specifies the model used by the agent pane agent.</comment>
</data><data name="AIAgents_AcpModel.HelpText" xml:space="preserve">
<value>Изаберите модел који овај агент користи.</value>
<comment>Supplementary description for the model setting.</comment>
</data><data name="AIAgents_DelegateAgent.Header" xml:space="preserve">
<value>Агент</value>
<comment>Header for the setting that specifies which agent CLI handles command palette / on-demand requests.</comment>
</data><data name="AIAgents_DelegateAgent.HelpText" xml:space="preserve">
<value>Изаберите агента који се користи за брзе радње у палети команди.</value>
<comment>Supplementary description for the command palette agent setting.</comment>
</data><data name="AIAgents_AutoFix.Header" xml:space="preserve">
<value>Аутоматски предложи исправке за неуспеле команде</value>
<comment>Header for the toggle that enables automatic fix suggestions when commands fail.</comment>
</data><data name="AIAgents_AutoFix.HelpText" xml:space="preserve">
<value>Када је омогућено, ВИ агент аутоматски анализира неуспеле команде и предлаже исправку. Када је онемогућено, неуспеле команде приказују наговештај на који је могуће кликнути у статусној траци — притисните Ctrl+Alt+. или кликните на наговештај да бисте затражили исправку.</value>
<comment>Supplementary description for the auto-error-detection setting.</comment>
</data><data name="AIAgents_PanePosition.Header" xml:space="preserve">
<value>Позиција панела</value>
<comment>Header for the setting that controls where the agent pane appears relative to the active pane.</comment>
</data><data name="AIAgents_PanePosition.HelpText" xml:space="preserve">
<value>Где се агент налази</value>
<comment>Supplementary description for the pane position setting.</comment>
</data>
<data name="AIAgents_SessionManagement.Header" xml:space="preserve">
<value>Сесије</value>
<comment>Title for the setting that controls agent session tracking.</comment>
</data>
<data name="AIAgents_SessionManagement.HelpText" xml:space="preserve">
<value>Пратите који су ВИ агенти покренути, а који захтевају вашу интервенцију.</value>
<comment>{Locked=qps-ploc,qps-ploca,qps-plocm} Description for the Sessions setting. In this context, "agent" refers to an AI agent (e.g. Copilot, Claude, Gemini), not a human agent or representative.</comment>
</data>
<data name="AIAgents_ShowTokenUsageAndCost.Header" xml:space="preserve"><value>Коришћење токена</value><comment>Header for a setting that shows available context-window usage and session cost in the terminal bottom bar. Session cost is reported for the active AI session. Keep 'session cost' generic and do not add a specific unit. Either value may be unavailable.</comment></data>
<data name="AIAgents_ShowTokenUsageAndCost.HelpText" xml:space="preserve"><value>Прикажи преостали контекст и цену сесије када су доступни</value><comment>Supplementary description for the usage visibility setting. Session cost is reported for the active AI session. Keep 'session cost' generic and do not add a specific unit. Either value may be unavailable.</comment></data>
<data name="AIAgents_PanePosition_Bottom" xml:space="preserve">
<value>Доле</value>
<comment>Value shown in the agent pane position dropdown (selects which side of the terminal the agent pane opens on). Translation should match the existing FreOverlay_PanePositionBottom string used in the first-run experience.</comment>
</data>
<data name="AIAgents_PanePosition_Right" xml:space="preserve">
<value>Десно</value>
<comment>Value shown in the agent pane position dropdown (selects which side of the terminal the agent pane opens on). Translation should match the existing FreOverlay_PanePositionRight string used in the first-run experience.</comment>
</data>
<data name="AIAgents_PanePosition_Top" xml:space="preserve">
<value>Горе</value>
<comment>Value shown in the agent pane position dropdown (selects which side of the terminal the agent pane opens on). Translation should match the existing FreOverlay_PanePositionTop string used in the first-run experience.</comment>
</data>
<data name="AIAgents_PanePosition_Left" xml:space="preserve">
<value>Лево</value>
<comment>Value shown in the agent pane position dropdown (selects which side of the terminal the agent pane opens on). Translation should match the existing FreOverlay_PanePositionLeft string used in the first-run experience.</comment>
</data><data name="AIAgents_YoloMode.Header" xml:space="preserve"><value>Користи Yolo режим добављача</value><comment>{Locked="Yolo"} Header for the global setting that asks each AI agent provider to enable its advertised ACP session Yolo capability.</comment></data>
<data name="AIAgents_YoloMode.HelpText" xml:space="preserve"><value>Користи ACP режим сесије добављача агента да би смањио број потврда или их заобишао. Добављач дефинише резултујуће дозволе, sandbox окружење и приступ датотекама и мрежи. Добављачи без подржаног режима и даље ће тражити дозволу.</value><comment>{Locked="ACP"} Risk warning shown under the Yolo toggle. Here provider means the selected AI agent provider, not a network provider.</comment></data>
<data name="Profile_OpacitySlider.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Непрозирност позадине</value>
<comment>Name for a control to determine the level of opacity for the background of the control. The user can choose to make the background of the app more or less opaque.</comment>
</data>
<data name="Profile_Opacity.Header" xml:space="preserve">
<value>Непрозирност позадине</value>
<comment>Header for a control to determine the level of opacity for the background of the control. The user can choose to make the background of the app more or less opaque.</comment>
</data>
<data name="Profile_Opacity.HelpText" xml:space="preserve">
<value>Поставља непрозирност прозора.</value>
<comment>A description for what the "opacity" setting does. Presented near "Profile_Opacity.Header".</comment>
</data>
<data name="Profile_Advanced.Header" xml:space="preserve">
<value>Напредно</value>
<comment>Header for a sub-page of profile settings focused on more advanced scenarios.</comment>
</data>
<data name="Profile_Terminal.Header" xml:space="preserve">
<value>Емулација терминала</value>
<comment>Header for a sub-page of profile settings focused on customizing the capabilities of the terminal.</comment>
</data>
<data name="Profile_AltGrAliasing.Header" xml:space="preserve">
<value>AltGr алијас</value>
<comment>Header for a control to toggle whether the app treats ctrl+alt as the AltGr (also known as the Alt Graph) modifier key found on keyboards. {Locked="AltGr"}</comment>
</data>
<data name="Profile_AltGrAliasing.HelpText" xml:space="preserve">
<value>Windows подразумевано третира Ctrl+Alt као алијас за AltGr. Ово подешавање ће да преиначи подразумевано Windows понашање.</value>
<comment>A description for what the "AltGr aliasing" setting does. Presented near "Profile_AltGrAliasing.Header". {Locked="Windows"}</comment>
</data>
<data name="Profile_AntialiasingMode.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Умекшавање текста</value>
<comment>Name for a control to select the graphical anti-aliasing format of text.</comment>
</data>
<data name="Profile_AntialiasingMode.Header" xml:space="preserve">
<value>Умекшавање текста</value>
<comment>Header for a control to select the graphical anti-aliasing format of text.</comment>
</data>
<data name="Profile_AntialiasingMode.HelpText" xml:space="preserve">
<value>Контролише начин на који исцртавач умекшава назубљеност ивица текста.</value>
<comment>A description for what the "antialiasing mode" setting does. Presented near "Profile_AntialiasingMode.Header".</comment>
</data>
<data name="Profile_AntialiasingModeAliased.Content" xml:space="preserve">
<value>Назубљено</value>
<comment>An option to choose from for the "text antialiasing" setting. When selected, the app's text renderer does not use antialiasing techniques.</comment>
</data>
<data name="Profile_AntialiasingModeClearType.Content" xml:space="preserve">
<value>ClearType</value>
<comment>An option to choose from for the "text antialiasing" setting. When selected, the app's text renderer uses a "ClearType" antialiasing technique. {Locked="ClearType"}</comment>
</data>
<data name="Profile_AntialiasingModeGrayscale.Content" xml:space="preserve">
<value>Сиви тонови</value>
<comment>An option to choose from for the "text antialiasing" setting. When selected, the app's text renderer uses a grayscale antialiasing technique.</comment>
</data>
<data name="Profile_Appearance.Header" xml:space="preserve">
<value>Изглед</value>
<comment>Header for a sub-page of profile settings focused on customizing the appearance of the profile.</comment>
</data>
<data name="Profile_BackgroundImageBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Путања до слике позадине</value>
<comment>Name for a control to determine the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImage.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Путања до слике позадине</value>
<comment>Name for a control to determine the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImage.Header" xml:space="preserve">
<value>Путања до слике позадине</value>
<comment>Header for a control to determine the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImage.HelpText" xml:space="preserve">
<value>Локација фајла слике која се користи као позадина прозора.</value>
<comment>A description for what the "background image path" setting does. Presented near "Profile_BackgroundImage".</comment>
</data>
<data name="Profile_BackgroundImageAlignment.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Поравнање слике позадине</value>
<comment>Name for a control to choose the visual alignment of the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImageAlignment.Header" xml:space="preserve">
<value>Поравнање слике позадине</value>
<comment>Header for a control to choose the visual alignment of the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImageAlignment.HelpText" xml:space="preserve">
<value>Подешава како се слика позадине поравнава са границама прозора.</value>
<comment>A description for what the "background image alignment" setting does. Presented near "Profile_BackgroundImageAlignment".</comment>
</data>
<data name="Profile_BackgroundImageAlignmentBottom.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Дно</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentBottomLeft.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Доле лево</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentBottomRight.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Доле десно</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentCenter.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Центар</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentLeft.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Лево</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentRight.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Десно</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentTop.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Врх</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentTopLeft.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Горе лево</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentTopRight.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Горе десно</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageBrowse.Content" xml:space="preserve">
<value>Прегледај...</value>
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
</data>
<data name="Profile_AddFontAxisButton.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Додај нову осу фонта</value>
</data>
<data name="Profile_AddNewFontAxis.Text" xml:space="preserve">
<value>Додај нову</value>
<comment>Button label that adds a new font axis for the current font.</comment>
</data>
<data name="Profile_AddFontFeatureButton.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Додај нову могућност фонта</value>
</data>
<data name="Profile_DeleteFontKeyValuePairButton.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Обриши</value>
</data>
<data name="Profile_AddNewFontFeature.Text" xml:space="preserve">
<value>Додај нову</value>
<comment>Button label that adds a new font feature for the current font.</comment>
</data>
<data name="Profile_BackgroundImageOpacitySlider.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Непрозирност слике позадине</value>
<comment>Name for a control to choose the opacity of the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImageOpacity.Header" xml:space="preserve">
<value>Непрозирност слике позадине</value>
<comment>Header for a control to choose the opacity of the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImageOpacity.HelpText" xml:space="preserve">
<value>Поставља непрозирност слике позадине.</value>
<comment>A description for what the "background image opacity" setting does. Presented near "Profile_BackgroundImageOpacity".</comment>
</data>
<data name="Profile_BackgroundImageStretchMode.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Режим истезања слике позадине</value>
<comment>Name for a control to choose the stretch mode of the image presented on the background of the app. Stretch mode is how the image is resized to fill its allocated space.</comment>
</data>
<data name="Profile_BackgroundImageStretchMode.Header" xml:space="preserve">
<value>Режим истезања слике позадине</value>
<comment>Header for a control to choose the stretch mode of the image presented on the background of the app. Stretch mode is how the image is resized to fill its allocated space.</comment>
</data>
<data name="Profile_BackgroundImageStretchMode.HelpText" xml:space="preserve">
<value>Подешава како се мења величина слике позадине тако да испуни прозор.</value>
<comment>A description for what the "background image stretch mode" setting does. Presented near "Profile_BackgroundImageStretchMode".</comment>
</data>
<data name="Profile_BackgroundImageStretchModeFill.Content" xml:space="preserve">
<value>Испуни</value>
<comment>An option to choose from for the "background image stretch mode" setting. When selected, the image is resized to fill the destination dimensions. The aspect ratio is not preserved.</comment>
</data>
<data name="Profile_BackgroundImageStretchModeNone.Content" xml:space="preserve">
<value>Ништа</value>
<comment>An option to choose from for the "background image stretch mode" setting. When selected, the image preserves its original size.</comment>
</data>
<data name="Profile_BackgroundImageStretchModeUniform.Content" xml:space="preserve">
<value>Уједначено</value>
<comment>An option to choose from for the "background image stretch mode" setting. When selected,the image is resized to fit in the destination dimensions while it preserves its native aspect ratio.</comment>
</data>
<data name="Profile_BackgroundImageStretchModeUniformToFill.Content" xml:space="preserve">
<value>Уједначено да се испуни</value>
<comment>An option to choose from for the "background image stretch mode" setting. When selected, the content is resized to fill the destination dimensions while it preserves its native aspect ratio. But if the aspect ratio of the destination differs, the image is clipped to fit in the space (to fill the space)</comment>
</data>
<data name="Profile_CloseOnExit.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Понашање при прекиду профила</value>
<comment>Name for a control to select the behavior of a terminal session (a profile) when it closes.</comment>
</data>
<data name="Profile_CloseOnExit.Header" xml:space="preserve">
<value>Понашање при прекиду профила</value>
<comment>Header for a control to select the behavior of a terminal session (a profile) when it closes.</comment>
</data>
<data name="Profile_CloseOnExitAlways.Content" xml:space="preserve">
<value>Затвори када се процес заврши успешно, неуспешно или се сруши</value>
<comment>An option to choose from for the "profile termination behavior" (or "close on exit") setting. When selected, the terminal closes if the process exits in a controlled (exit) or uncontrolled (fail or crash) scenario.</comment>
</data>