forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPSReadLineResources.Designer.cs
More file actions
1839 lines (1636 loc) · 74.2 KB
/
PSReadLineResources.Designer.cs
File metadata and controls
1839 lines (1636 loc) · 74.2 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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Microsoft.PowerShell {
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class PSReadLineResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal PSReadLineResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.PowerShell.PSReadLine.PSReadLineResources", typeof(PSReadLineResources).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Abort the current operation, e.g. incremental history search.
/// </summary>
internal static string AbortDescription {
get {
return ResourceManager.GetString("AbortDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Accept the current line and recall the next line from history after the current line finishes executing.
/// </summary>
internal static string AcceptAndGetNextDescription {
get {
return ResourceManager.GetString("AcceptAndGetNextDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Accept the input or move to the next line if input is missing a closing token..
/// </summary>
internal static string AcceptLineDescription {
get {
return ResourceManager.GetString("AcceptLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor to the next line without attempting to execute the input.
/// </summary>
internal static string AddLineDescription {
get {
return ResourceManager.GetString("AddLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor back one character.
/// </summary>
internal static string BackwardCharDescription {
get {
return ResourceManager.GetString("BackwardCharDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete the charcter before the cursor.
/// </summary>
internal static string BackwardDeleteCharDescription {
get {
return ResourceManager.GetString("BackwardDeleteCharDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete text from the cursor to the start of the line.
/// </summary>
internal static string BackwardDeleteLineDescription {
get {
return ResourceManager.GetString("BackwardDeleteLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete the previous word in the line..
/// </summary>
internal static string BackwardDeleteWordDescription {
get {
return ResourceManager.GetString("BackwardDeleteWordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the text from the cursor to the beginning of the line to the kill ring.
/// </summary>
internal static string BackwardKillLineDescription {
get {
return ResourceManager.GetString("BackwardKillLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the text from the start of the current or previous word to the cursor to the kill ring.
/// </summary>
internal static string BackwardKillWordDescription {
get {
return ResourceManager.GetString("BackwardKillWordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replaces the character in front of the cursor..
/// </summary>
internal static string BackwardReplaceCharDescription {
get {
return ResourceManager.GetString("BackwardReplaceCharDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor to the beginning of the current or previous word.
/// </summary>
internal static string BackwardWordDescription {
get {
return ResourceManager.GetString("BackwardWordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move to the first item in the history.
/// </summary>
internal static string BeginningOfHistoryDescription {
get {
return ResourceManager.GetString("BeginningOfHistoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor to the beginning of the line.
/// </summary>
internal static string BeginningOfLineDescription {
get {
return ResourceManager.GetString("BeginningOfLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Abort editing the current line and re-evaluate the prompt.
/// </summary>
internal static string CancelLineDescription {
get {
return ResourceManager.GetString("CancelLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to translate '{0}' to virtual key code: {1}..
/// </summary>
internal static string CantTranslateKey {
get {
return ResourceManager.GetString("CantTranslateKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allows you to select multiple lines from the console using Shift+UpArrow/DownArrow and copy the selected lines to clipboard by pressing Enter..
/// </summary>
internal static string CaptureScreenDescription {
get {
return ResourceManager.GetString("CaptureScreenDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Read a character and move the cursor to the previous occurence of that character.
/// </summary>
internal static string CharacterSearchBackwardDescription {
get {
return ResourceManager.GetString("CharacterSearchBackwardDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Read a character and move the cursor to the next occurence of that character.
/// </summary>
internal static string CharacterSearchDescription {
get {
return ResourceManager.GetString("CharacterSearchDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chord can have at most two keys..
/// </summary>
internal static string ChordWithTooManyKeys {
get {
return ResourceManager.GetString("ChordWithTooManyKeys", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove all items from the command line history (not PowerShell history).
/// </summary>
internal static string ClearHistoryDescription {
get {
return ResourceManager.GetString("ClearHistoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove all items from the kill ring.
/// </summary>
internal static string ClearKillRingDescription {
get {
return ResourceManager.GetString("ClearKillRingDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear the screen and redraw the current line at the top of the screen.
/// </summary>
internal static string ClearScreenDescription {
get {
return ResourceManager.GetString("ClearScreenDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Command '{0}' cannot be found..
/// </summary>
internal static string CommandNotFoundError {
get {
return ResourceManager.GetString("CommandNotFoundError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Complete the input if there is a single completion, otherwise complete the input with common prefix for all completions. Show possible completions if pressed a second time..
/// </summary>
internal static string CompleteDescription {
get {
return ResourceManager.GetString("CompleteDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copy selected region to the system clipboard. If no region is selected, copy the whole line.
/// </summary>
internal static string CopyDescription {
get {
return ResourceManager.GetString("CopyDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Either copy selected text to the clipboard, or if no text is selected, cancel editing the line with CancelLine..
/// </summary>
internal static string CopyOrCancelLineDescription {
get {
return ResourceManager.GetString("CopyOrCancelLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete selected region placing deleted text in the system clipboard.
/// </summary>
internal static string CutDescription {
get {
return ResourceManager.GetString("CutDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes all characters between the cursor and the matching brace..
/// </summary>
internal static string DeleteBraceDescription {
get {
return ResourceManager.GetString("DeleteBraceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete the character under the cusor.
/// </summary>
internal static string DeleteCharDescription {
get {
return ResourceManager.GetString("DeleteCharDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete the character under the cusor, or if the line is empty, exit the process..
/// </summary>
internal static string DeleteCharOrExitDescription {
get {
return ResourceManager.GetString("DeleteCharOrExitDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete to the end of the current word, as delimited by white space and common delimiters..
/// </summary>
internal static string DeleteEndOfWordDescription {
get {
return ResourceManager.GetString("DeleteEndOfWordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes the current line..
/// </summary>
internal static string DeleteLineDescription {
get {
return ResourceManager.GetString("DeleteLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes all of the line except for leading whitespace..
/// </summary>
internal static string DeleteLineToFirstCharDescription {
get {
return ResourceManager.GetString("DeleteLineToFirstCharDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes from the cursor to the end of the line..
/// </summary>
internal static string DeleteToEndDescription {
get {
return ResourceManager.GetString("DeleteToEndDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes from the cursor to the end of the current word..
/// </summary>
internal static string DeleteToEndOfWordDescription {
get {
return ResourceManager.GetString("DeleteToEndOfWordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes the current word..
/// </summary>
internal static string DeleteWordDescription {
get {
return ResourceManager.GetString("DeleteWordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start or accumulate a numeric argument to other functions.
/// </summary>
internal static string DigitArgumentDescription {
get {
return ResourceManager.GetString("DigitArgumentDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display all {0} possibilities? (y or n) _.
/// </summary>
internal static string DisplayAllPossibilities {
get {
return ResourceManager.GetString("DisplayAllPossibilities", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to String is not used in the UI.
/// </summary>
internal static string EmacsCtrlXDescription {
get {
return ResourceManager.GetString("EmacsCtrlXDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to String is not used in the UI.
/// </summary>
internal static string EmacsMetaDescription {
get {
return ResourceManager.GetString("EmacsMetaDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move to the last item (the current input) in the history.
/// </summary>
internal static string EndOfHistoryDescription {
get {
return ResourceManager.GetString("EndOfHistoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor to the end of the line.
/// </summary>
internal static string EndOfLineDescription {
get {
return ResourceManager.GetString("EndOfLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mark the location of the cursor and move the cursor to the position of the previous mark.
/// </summary>
internal static string ExchangePointAndMarkDescription {
get {
return ResourceManager.GetString("ExchangePointAndMarkDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor forward one character.
/// </summary>
internal static string ForwardCharDescription {
get {
return ResourceManager.GetString("ForwardCharDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete text from the cursor to the end of the line.
/// </summary>
internal static string ForwardDeleteLineDescription {
get {
return ResourceManager.GetString("ForwardDeleteLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search history forward interactively.
/// </summary>
internal static string ForwardSearchHistoryDescription {
get {
return ResourceManager.GetString("ForwardSearchHistoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor forward to the end of the current word, or if between words, to the end of the next word. .
/// </summary>
internal static string ForwardWordDescription {
get {
return ResourceManager.GetString("ForwardWordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Go to matching brace.
/// </summary>
internal static string GotoBraceDescription {
get {
return ResourceManager.GetString("GotoBraceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Moves the cursor to the perscribed column..
/// </summary>
internal static string GotoColumnDescription {
get {
return ResourceManager.GetString("GotoColumnDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Positions the cursor at the first non-blank character..
/// </summary>
internal static string GotoFirstNonBlankOfLineDescription {
get {
return ResourceManager.GetString("GotoFirstNonBlankOfLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This error will not be reported again in this session. Consider using a different path with:
/// Set-PSReadlineOption -HistorySavePath <Path>
///Or not saving history with:
/// Set-PSReadlineOption -HistorySaveStyle SaveNothing.
/// </summary>
internal static string HistoryFileErrorFinalMessage {
get {
return ResourceManager.GetString("HistoryFileErrorFinalMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error reading or writing history file '{0}': {1}.
/// </summary>
internal static string HistoryFileErrorMessage {
get {
return ResourceManager.GetString("HistoryFileErrorMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search for the previous item in the history that starts with the current input - like PreviousHistory if the input is empty.
/// </summary>
internal static string HistorySearchBackwardDescription {
get {
return ResourceManager.GetString("HistorySearchBackwardDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search for the next item in the history that starts with the current input - like NextHistory if the input is empty.
/// </summary>
internal static string HistorySearchForwardDescription {
get {
return ResourceManager.GetString("HistorySearchForwardDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to String is not used in the UI.
/// </summary>
internal static string IgnoreDescription {
get {
return ResourceManager.GetString("IgnoreDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete the current character and insert the next character..
/// </summary>
internal static string InsertCharacterDescription {
get {
return ResourceManager.GetString("InsertCharacterDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Inserts a new empty line above the current line without attempting to execute the input.
/// </summary>
internal static string InsertLineAboveDescription {
get {
return ResourceManager.GetString("InsertLineAboveDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Inserts a new empty line below the current line without attempting to execute the input.
/// </summary>
internal static string InsertLineBelowDescription {
get {
return ResourceManager.GetString("InsertLineBelowDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Duplicate or invalid modifier token '{0}' for key '{1}'..
/// </summary>
internal static string InvalidModifier {
get {
return ResourceManager.GetString("InvalidModifier", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid sequence '{0}'..
/// </summary>
internal static string InvalidSequence {
get {
return ResourceManager.GetString("InvalidSequence", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Inverts the case of the current character and advances the cursor..
/// </summary>
internal static string InvertCaseDescription {
get {
return ResourceManager.GetString("InvertCaseDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Erases the current prompt and calls the prompt function to redisplay the prompt.
/// </summary>
internal static string InvokePromptDescription {
get {
return ResourceManager.GetString("InvokePromptDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Key is unbound.
/// </summary>
internal static string KeyIsUnbound {
get {
return ResourceManager.GetString("KeyIsUnbound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the text from the cursor to the end of the input to the kill ring.
/// </summary>
internal static string KillLineDescription {
get {
return ResourceManager.GetString("KillLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Kill the text between the cursor and the mark.
/// </summary>
internal static string KillRegionDescription {
get {
return ResourceManager.GetString("KillRegionDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the text from the cursor to the end of the current or next word to the kill ring.
/// </summary>
internal static string KillWordDescription {
get {
return ResourceManager.GetString("KillWordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Complete the input if there is a single completion, otherwise complete the input by selecting from a menu of possible completions..
/// </summary>
internal static string MenuCompleteDescription {
get {
return ResourceManager.GetString("MenuCompleteDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move to the end of the line..
/// </summary>
internal static string MoveToEndOfLineDescription {
get {
return ResourceManager.GetString("MoveToEndOfLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace the input with the next item in the history.
/// </summary>
internal static string NextHistoryDescription {
get {
return ResourceManager.GetString("NextHistoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor to the next line if the input has multiple lines..
/// </summary>
internal static string NextLineDescription {
get {
return ResourceManager.GetString("NextLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor forward to the start of the next word.
/// </summary>
internal static string NextWordDescription {
get {
return ResourceManager.GetString("NextWordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Moves the cursor forward to the end of the next word..
/// </summary>
internal static string NextWordEndDescription {
get {
return ResourceManager.GetString("NextWordEndDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The -ViMode parameter was used, but the current EditMode is not Vi..
/// </summary>
internal static string NotInViMode {
get {
return ResourceManager.GetString("NotInViMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to
///Oops, something went wrong. Please report this bug with the details below.
///Report on GitHub: https://github.com/lzybkr/PSReadLine/issues/new.
/// </summary>
internal static string OopsAnErrorMessage1 {
get {
return ResourceManager.GetString("OopsAnErrorMessage1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -----------------------------------------------------------------------
///Last {0} Keys:
///{1}
///
///Exception:
///{2}
///-----------------------------------------------------------------------.
/// </summary>
internal static string OopsAnErrorMessage2 {
get {
return ResourceManager.GetString("OopsAnErrorMessage2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An exception occurred in custom key handler, see $error for more information: {0}.
/// </summary>
internal static string OopsCustomHandlerException {
get {
return ResourceManager.GetString("OopsCustomHandlerException", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Write the contents of the local clipboard after the cursor..
/// </summary>
internal static string PasteAfterDescription {
get {
return ResourceManager.GetString("PasteAfterDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Write the contents of the local clipboard before the cursor..
/// </summary>
internal static string PasteBeforeDescription {
get {
return ResourceManager.GetString("PasteBeforeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Paste text from the system clipboard.
/// </summary>
internal static string PasteDescription {
get {
return ResourceManager.GetString("PasteDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display the possible completions without changing the input.
/// </summary>
internal static string PossibleCompletionsDescription {
get {
return ResourceManager.GetString("PossibleCompletionsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Inserts the entered character at the beginning and accepts the line..
/// </summary>
internal static string PrependAndAcceptDescription {
get {
return ResourceManager.GetString("PrependAndAcceptDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace the input with the previous item in the history.
/// </summary>
internal static string PreviousHistoryDescription {
get {
return ResourceManager.GetString("PreviousHistoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move the cursor to the previous line if the input has multiple lines..
/// </summary>
internal static string PreviousLineDescription {
get {
return ResourceManager.GetString("PreviousLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Redo an undo.
/// </summary>
internal static string RedoDescription {
get {
return ResourceManager.GetString("RedoDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Repeat the last recorded character search in the opposite direction..
/// </summary>
internal static string RepeatLastCharSearchBackwardsDescription {
get {
return ResourceManager.GetString("RepeatLastCharSearchBackwardsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Repeat the last recorded character search..
/// </summary>
internal static string RepeatLastCharSearchDescription {
get {
return ResourceManager.GetString("RepeatLastCharSearchDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Repeats the last modification command..
/// </summary>
internal static string RepeatLastCommandDescription {
get {
return ResourceManager.GetString("RepeatLastCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Repeats the last search..
/// </summary>
internal static string RepeatLastSearchDescription {
get {
return ResourceManager.GetString("RepeatLastSearchDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Repeat the last search, but in the opposite direction..
/// </summary>
internal static string RepeatSearchBackwardDescription {
get {
return ResourceManager.GetString("RepeatSearchBackwardDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Repeat the last search..
/// </summary>
internal static string RepeatSearchDescription {
get {
return ResourceManager.GetString("RepeatSearchDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace the current character with the next set of characters typed..
/// </summary>
internal static string ReplaceCharDescription {
get {
return ResourceManager.GetString("ReplaceCharDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace the current character with only one character..
/// </summary>
internal static string ReplaceCharInPlaceDescription {
get {
return ResourceManager.GetString("ReplaceCharInPlaceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to length is too big.
/// </summary>
internal static string ReplacementLengthTooBig {
get {
return ResourceManager.GetString("ReplacementLengthTooBig", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search history backwards interactively.
/// </summary>
internal static string ReverseSearchHistoryDescription {
get {
return ResourceManager.GetString("ReverseSearchHistoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Equivalent to undo all edits (clears the line except lines imported from history).
/// </summary>
internal static string RevertLineDescription {
get {
return ResourceManager.GetString("RevertLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scroll the display down one screen.
/// </summary>
internal static string ScrollDisplayDownDescription {
get {
return ResourceManager.GetString("ScrollDisplayDownDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scroll the display down one line.
/// </summary>
internal static string ScrollDisplayDownLineDescription {
get {
return ResourceManager.GetString("ScrollDisplayDownLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scroll the display to the cursor.
/// </summary>
internal static string ScrollDisplayToCursorDescription {
get {
return ResourceManager.GetString("ScrollDisplayToCursorDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scroll the display to the top.
/// </summary>
internal static string ScrollDisplayTopDescription {
get {
return ResourceManager.GetString("ScrollDisplayTopDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scroll the display up one screen.
/// </summary>
internal static string ScrollDisplayUpDescription {
get {
return ResourceManager.GetString("ScrollDisplayUpDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scroll the display up one line.
/// </summary>
internal static string ScrollDisplayUpLineDescription {
get {
return ResourceManager.GetString("ScrollDisplayUpLineDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Searches backward for the perscribed character..
/// </summary>
internal static string SearchBackwardCharDescription {
get {
return ResourceManager.GetString("SearchBackwardCharDescription", resourceCulture);
}
}