forked from apache/lucenenet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStrings.Designer.cs
More file actions
1278 lines (1138 loc) · 55.8 KB
/
Copy pathStrings.Designer.cs
File metadata and controls
1278 lines (1138 loc) · 55.8 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 Lucene.Net.Cli.Resources {
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.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Strings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
internal Strings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("lucene-cli.Resources.Strings", typeof(Strings).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)]
public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Utilities to manage specialized analyzers..
/// </summary>
public static string AnalysisCommandDescription {
get {
return ResourceManager.GetString("AnalysisCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Generates a set of custom dictionary files for the Lucene.Net.Analysis.Kuromoji library..
/// </summary>
public static string AnalysisKuromojiBuildDictionaryCommandDescription {
get {
return ResourceManager.GetString("AnalysisKuromojiBuildDictionaryCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Generates the following set of binary files:
///
///- CharacterDefinition.dat
///- ConnectionCosts.dat
///- TokenInfoDictionary$buffer.dat
///- TokenInfoDictionary$fst.dat
///- TokenInfoDictionary$posDict.dat
///- TokenInfoDictionary$targetMap.dat
///- UnknownDictionary$buffer.dat
///- UnknownDictionary$posDict.dat
///- UnknownDictionary$targetMap.dat
///
///If these files are placed into a subdirectory of your application named 'kuromoji-data', they will be used automatically by Lucene.Net.Analysis.Kuromoji features such as the J [rest of string was truncated]";.
/// </summary>
public static string AnalysisKuromojiBuildDictionaryCommandExtendedHelpText {
get {
return ResourceManager.GetString("AnalysisKuromojiBuildDictionaryCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The dictionary format. Valid values are IPADIC and UNIDIC. If an invalid value is passed, IPADIC is assumed..
/// </summary>
public static string AnalysisKuromojiBuildDictionaryCommandFormatDescription {
get {
return ResourceManager.GetString("AnalysisKuromojiBuildDictionaryCommandFormatDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The directory where the dictionary input files are located..
/// </summary>
public static string AnalysisKuromojiBuildDictionaryCommandInputDirectoryDescription {
get {
return ResourceManager.GetString("AnalysisKuromojiBuildDictionaryCommandInputDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file encoding used by the input files. If not supplied, the default value is EUC-JP..
/// </summary>
public static string AnalysisKuromojiBuildDictionaryCommandInputDirectoryEncodingDescription {
get {
return ResourceManager.GetString("AnalysisKuromojiBuildDictionaryCommandInputDirectoryEncodingDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Normalize the entries using normalization form KC..
/// </summary>
public static string AnalysisKuromojiBuildDictionaryCommandNormalizeDescription {
get {
return ResourceManager.GetString("AnalysisKuromojiBuildDictionaryCommandNormalizeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The directory to put the dictionary output..
/// </summary>
public static string AnalysisKuromojiBuildDictionaryCommandOutputDirectoryDescription {
get {
return ResourceManager.GetString("AnalysisKuromojiBuildDictionaryCommandOutputDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Compiles a stemmer table for the Egothor stemmer..
/// </summary>
public static string AnalysisStempelCompileStemsCommandDescription {
get {
return ResourceManager.GetString("AnalysisStempelCompileStemsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The path to a file containing a stemmer table. Multiple values are allowed..
/// </summary>
public static string AnalysisStempelCompileStemsCommandStemmerTableFilesDescription {
get {
return ResourceManager.GetString("AnalysisStempelCompileStemsCommandStemmerTableFilesDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The encoding to use for the stemmer table files. If not supplied, defaults to UTF-8..
/// </summary>
public static string AnalysisStempelCompileStemsCommandStemmerTableFilesEncodingDescription {
get {
return ResourceManager.GetString("AnalysisStempelCompileStemsCommandStemmerTableFilesEncodingDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The name of the desired stemming algorithm to use..
/// </summary>
public static string AnalysisStempelCompileStemsCommandStemmingAlgorithmDescription {
get {
return ResourceManager.GetString("AnalysisStempelCompileStemsCommandStemmingAlgorithmDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Generates patch commands from an already prepared stemmer table..
/// </summary>
public static string AnalysisStempelPatchStemsCommandDescription {
get {
return ResourceManager.GetString("AnalysisStempelPatchStemsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The path to a file containing a stemmer table. Multiple values are allowed..
/// </summary>
public static string AnalysisStempelPatchStemsCommandStemmerTableFilesDescription {
get {
return ResourceManager.GetString("AnalysisStempelPatchStemsCommandStemmerTableFilesDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The encoding to use for the stemmer table files. If not supplied, defaults to UTF-8..
/// </summary>
public static string AnalysisStempelPatchStemsCommandStemmerTableFilesEncodingDescription {
get {
return ResourceManager.GetString("AnalysisStempelPatchStemsCommandStemmerTableFilesEncodingDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Utilities for benchmarking Lucene.Net..
/// </summary>
public static string BenchmarkCommandDescription {
get {
return ResourceManager.GetString("BenchmarkCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Splits Reuters SGML documents into simple text files containing: Title, Date, Dateline, Body..
/// </summary>
public static string BenchmarkExtractReutersCommandDescription {
get {
return ResourceManager.GetString("BenchmarkExtractReutersCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path to Reuters SGML files..
/// </summary>
public static string BenchmarkExtractReutersCommandInputDirectoryDescription {
get {
return ResourceManager.GetString("BenchmarkExtractReutersCommandInputDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path to a directory where the output files will be written..
/// </summary>
public static string BenchmarkExtractReutersCommandOutputDirectoryDescription {
get {
return ResourceManager.GetString("BenchmarkExtractReutersCommandOutputDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Extracts a downloaded Wikipedia dump into separate files for indexing..
/// </summary>
public static string BenchmarkExtractWikipediaCommandDescription {
get {
return ResourceManager.GetString("BenchmarkExtractWikipediaCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tells the extractor to skip WIKI docs that contain only images..
/// </summary>
public static string BenchmarkExtractWikipediaCommandDiscardImageOnlyDocsDescription {
get {
return ResourceManager.GetString("BenchmarkExtractWikipediaCommandDiscardImageOnlyDocsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Input path to a Wikipedia XML file..
/// </summary>
public static string BenchmarkExtractWikipediaCommandInputWikipediaFileDescription {
get {
return ResourceManager.GetString("BenchmarkExtractWikipediaCommandInputWikipediaFileDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path to a directory where the output files will be written..
/// </summary>
public static string BenchmarkExtractWikipediaCommandOutputDirectoryDescription {
get {
return ResourceManager.GetString("BenchmarkExtractWikipediaCommandOutputDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Suggests quality queries based on index contents. Used for making quality test benchmarks..
/// </summary>
public static string BenchmarkFindQualityQueriesCommandDescription {
get {
return ResourceManager.GetString("BenchmarkFindQualityQueriesCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An algorithm file specifying the parameters of the benchmark to run..
/// </summary>
public static string BenchmarkRunCommandAlgorithmFileDescription {
get {
return ResourceManager.GetString("BenchmarkRunCommandAlgorithmFileDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Runs a benchmark based on an algorithm file..
/// </summary>
public static string BenchmarkRunCommandDescription {
get {
return ResourceManager.GetString("BenchmarkRunCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Runs a TREC evaluation..
/// </summary>
public static string BenchmarkRunTrecEvalCommandDescription {
get {
return ResourceManager.GetString("BenchmarkRunTrecEvalCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Output submission file for TREC evaluation..
/// </summary>
public static string BenchmarkRunTrecEvalCommandOutputSubmissionFileDescription {
get {
return ResourceManager.GetString("BenchmarkRunTrecEvalCommandOutputSubmissionFileDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use description field in query..
/// </summary>
public static string BenchmarkRunTrecEvalCommandQueryOnDescriptionDescription {
get {
return ResourceManager.GetString("BenchmarkRunTrecEvalCommandQueryOnDescriptionDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use narrative field in query..
/// </summary>
public static string BenchmarkRunTrecEvalCommandQueryOnNarrativeDescription {
get {
return ResourceManager.GetString("BenchmarkRunTrecEvalCommandQueryOnNarrativeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use title field in query. This flag will automatically be on if no other field is specified..
/// </summary>
public static string BenchmarkRunTrecEvalCommandQueryOnTitleDescription {
get {
return ResourceManager.GetString("BenchmarkRunTrecEvalCommandQueryOnTitleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Input file conataining relevance judgements..
/// </summary>
public static string BenchmarkRunTrecEvalCommandQueryRelevanceFileDescription {
get {
return ResourceManager.GetString("BenchmarkRunTrecEvalCommandQueryRelevanceFileDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Input file containing queries..
/// </summary>
public static string BenchmarkRunTrecEvalCommandTopicsFileDescription {
get {
return ResourceManager.GetString("BenchmarkRunTrecEvalCommandTopicsFileDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sample of a performance test written programmatically instead of using an algorithm file..
/// </summary>
public static string BenchmarkSampleCommandDescription {
get {
return ResourceManager.GetString("BenchmarkSampleCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cross check term vectors..
/// </summary>
public static string CrossCheckTermVectorsDescription {
get {
return ResourceManager.GetString("CrossCheckTermVectorsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Shows example usage of category associations..
/// </summary>
public static string DemoAssociationsFacetsCommandDescription {
get {
return ResourceManager.GetString("DemoAssociationsFacetsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Demos for various Lucene.Net functionality including C# code samples..
/// </summary>
public static string DemoCommandDescription {
get {
return ResourceManager.GetString("DemoCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Shows simple usage of dynamic range faceting, using the expressions module to calculate distance..
/// </summary>
public static string DemoDistanceFacetsCommandDescription {
get {
return ResourceManager.GetString("DemoDistanceFacetsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Shows facets aggregation by an expression..
/// </summary>
public static string DemoExpressionAggregationFacetsCommandDescription {
get {
return ResourceManager.GetString("DemoExpressionAggregationFacetsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Index all text files under a directory..
/// </summary>
public static string DemoIndexFilesCommandDescription {
get {
return ResourceManager.GetString("DemoIndexFilesCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This demo can be used to learn how to build a Lucene.Net index. After the index is built, you can run the search-files demo to run queries against it..
/// </summary>
public static string DemoIndexFilesCommandExtendedHelpText {
get {
return ResourceManager.GetString("DemoIndexFilesCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The source directory containing files to index. This operation is recursive..
/// </summary>
public static string DemoIndexFilesCommandSourceDirectoryDescription {
get {
return ResourceManager.GetString("DemoIndexFilesCommandSourceDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Adds new documents to an existing index. If not supplied, any existing index in the <INDEX_DIRECTORY> will be overwritten..
/// </summary>
public static string DemoIndexFilesCommandUpdateDescription {
get {
return ResourceManager.GetString("DemoIndexFilesCommandUpdateDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Demonstrates indexing categories into different indexed fields..
/// </summary>
public static string DemoMultiCategoryListsFacetsCommandDescription {
get {
return ResourceManager.GetString("DemoMultiCategoryListsFacetsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Shows simple usage of dynamic range faceting..
/// </summary>
public static string DemoRangeFacetsCommandDescription {
get {
return ResourceManager.GetString("DemoRangeFacetsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Simple command-line based search demo. Run index-files demo first..
/// </summary>
public static string DemoSearchFilesCommandDescription {
get {
return ResourceManager.GetString("DemoSearchFilesCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Run the index-files demo first to create an index to run this command against. You can either use a file containing many queries (each on a single line), a single query on the command line, or omit both options to run queries interactively..
/// </summary>
public static string DemoSearchFilesCommandExtendedHelpText {
get {
return ResourceManager.GetString("DemoSearchFilesCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The index field to use in the search. If not supplied, defaults to "contents"..
/// </summary>
public static string DemoSearchFilesCommandFieldDescription {
get {
return ResourceManager.GetString("DemoSearchFilesCommandFieldDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hits per page to display..
/// </summary>
public static string DemoSearchFilesCommandPageSizeDescription {
get {
return ResourceManager.GetString("DemoSearchFilesCommandPageSizeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A file containing the queries to perform..
/// </summary>
public static string DemoSearchFilesCommandQueriesFileDescription {
get {
return ResourceManager.GetString("DemoSearchFilesCommandQueriesFileDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A query to perform..
/// </summary>
public static string DemoSearchFilesCommandQueryDescription {
get {
return ResourceManager.GetString("DemoSearchFilesCommandQueryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Output raw format..
/// </summary>
public static string DemoSearchFilesCommandRawDescription {
get {
return ResourceManager.GetString("DemoSearchFilesCommandRawDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Repeat the search and time as a benchmark..
/// </summary>
public static string DemoSearchFilesCommandRepeatDescription {
get {
return ResourceManager.GetString("DemoSearchFilesCommandRepeatDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Shows simple usage of faceted indexing and search..
/// </summary>
public static string DemoSimpleFacetsCommandDescription {
get {
return ResourceManager.GetString("DemoSimpleFacetsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Shows simple usage of faceted indexing and search using SortedSetDocValuesFacetField and SortedSetDocValuesFacetCounts..
/// </summary>
public static string DemoSimpleSortedSetFacetsCommandDescription {
get {
return ResourceManager.GetString("DemoSimpleSortedSetFacetsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The FSDirectory implementation to use. Defaults to the optimal FSDirectory for your OS platform..
/// </summary>
public static string DirectoryTypeOptionDescription {
get {
return ResourceManager.GetString("DirectoryTypeOptionDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source code exported to '{0}'..
/// </summary>
public static string ExportingSourceCodeCompleteMessage {
get {
return ResourceManager.GetString("ExportingSourceCodeCompleteMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exporting source code....
/// </summary>
public static string ExportingSourceCodeMessage {
get {
return ResourceManager.GetString("ExportingSourceCodeMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred:.
/// </summary>
public static string GeneralExceptionMessage {
get {
return ResourceManager.GetString("GeneralExceptionMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specify --help for a list of available options and commands..
/// </summary>
public static string HelpCommandsMessage {
get {
return ResourceManager.GetString("HelpCommandsMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Checks an index for problematic segments..
/// </summary>
public static string IndexCheckCommandDescription {
get {
return ResourceManager.GetString("IndexCheckCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Basic tool to check the health of an index.
///
///As this tool checks every byte in the index, on a large index it can take quite a long time to run..
/// </summary>
public static string IndexCheckCommandExtendedHelpText {
get {
return ResourceManager.GetString("IndexCheckCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only check the specified segment(s). This can be specified multiple times, to check more than one segment, eg --segment _2 --segment _a..
/// </summary>
public static string IndexCheckCommandSegmentsDescription {
get {
return ResourceManager.GetString("IndexCheckCommandSegmentsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Utilities to analyze or maintain an index..
/// </summary>
public static string IndexCommandDescription {
get {
return ResourceManager.GetString("IndexCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copies segments from one index to another index..
/// </summary>
public static string IndexCopySegmentsCommandDescription {
get {
return ResourceManager.GetString("IndexCopySegmentsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This tool does file-level copying of segments files. This means it's unable to split apart a single segment into multiple segments. For example if your index is a single segment, this tool won't help. Also, it does basic file-level copying (using a simple FileStream) so it will not work with non FSDirectory Directory implementations..
/// </summary>
public static string IndexCopySegmentsCommandExtendedHelpText {
get {
return ResourceManager.GetString("IndexCopySegmentsCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The directory of the index to copy..
/// </summary>
public static string IndexCopySegmentsCommandInputDirectoryDescription {
get {
return ResourceManager.GetString("IndexCopySegmentsCommandInputDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The directory of the destination index..
/// </summary>
public static string IndexCopySegmentsCommandOutputDirectoryDescription {
get {
return ResourceManager.GetString("IndexCopySegmentsCommandOutputDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The segments to copy, separated by a space..
/// </summary>
public static string IndexCopySegmentsCommandSegmentsDescription {
get {
return ResourceManager.GetString("IndexCopySegmentsCommandSegmentsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes segments from an index..
/// </summary>
public static string IndexDeleteSegmentsCommandDescription {
get {
return ResourceManager.GetString("IndexDeleteSegmentsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can easily accidentally remove segments from your index so be careful! Always make a backup of your index first..
/// </summary>
public static string IndexDeleteSegmentsCommandExtendedHelpText {
get {
return ResourceManager.GetString("IndexDeleteSegmentsCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The segments to delete, separated by a space..
/// </summary>
public static string IndexDeleteSegmentsCommandSegmentsDescription {
get {
return ResourceManager.GetString("IndexDeleteSegmentsCommandSegmentsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The directory of the index..
/// </summary>
public static string IndexDirectoryArgumentDescription {
get {
return ResourceManager.GetString("IndexDirectoryArgumentDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If omitted, it defaults to the current working directory..
/// </summary>
public static string IndexDirectoryOptionalArgumentDescription {
get {
return ResourceManager.GetString("IndexDirectoryOptionalArgumentDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The .cfs compound file containing words to parse..
/// </summary>
public static string IndexExtractCfsCommandCFSFileNameDescription {
get {
return ResourceManager.GetString("IndexExtractCfsCommandCFSFileNameDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Extracts sub-files from a .cfs compound file..
/// </summary>
public static string IndexExtractCfsCommandDescription {
get {
return ResourceManager.GetString("IndexExtractCfsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Extracts `.cfs` compound files (that were created using the CompoundFileDirectory from Lucene.Net.Misc) to the current working directory.
///
///In order to make the extracted version of the index work, you have to copy the segments file from the compound index into the directory where the extracted files are stored..
/// </summary>
public static string IndexExtractCfsCommandExtendedHelpText {
get {
return ResourceManager.GetString("IndexExtractCfsCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fixes an index by removing problematic segments..
/// </summary>
public static string IndexFixCommandDescription {
get {
return ResourceManager.GetString("IndexFixCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Doesn't change the index, but reports any actions that would be taken if this option were not supplied..
/// </summary>
public static string IndexFixCommandDryRunDescription {
get {
return ResourceManager.GetString("IndexFixCommandDryRunDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Basic tool to check and fix the health of an index and write a new segments file that removes reference to problematic segments.
///
///As this tool checks every byte in the index, on a large index it can take quite a long time to run.
///
///WARNING: This command should only be used on an emergency basis as it will cause documents (perhaps many) to be permanently removed from the index. Always make a backup copy of your index before running this! Do not run this tool on an index that is actively being written to. [rest of string was truncated]";.
/// </summary>
public static string IndexFixCommandExtendedHelpText {
get {
return ResourceManager.GetString("IndexFixCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The .cfs compound file containing words to parse..
/// </summary>
public static string IndexListCfsCommandCFSFileNameDescription {
get {
return ResourceManager.GetString("IndexListCfsCommandCFSFileNameDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lists sub-files out of a .cfs compound file..
/// </summary>
public static string IndexListCfsCommandDescription {
get {
return ResourceManager.GetString("IndexListCfsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prints the filename and size of each file within a given `.cfs` compound file. The .cfs compound file format is created using the CompoundFileDirectory from Lucene.Net.Misc..
/// </summary>
public static string IndexListCfsCommandExtendedHelpText {
get {
return ResourceManager.GetString("IndexListCfsCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lists the top N most frequent terms by document frequency..
/// </summary>
public static string IndexListHighFreqTermsCommandDescription {
get {
return ResourceManager.GetString("IndexListHighFreqTermsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Extracts the top N most frequent terms (by document frequency) from an index and reports thier document frequency..
/// </summary>
public static string IndexListHighFreqTermsCommandExtendedHelpText {
get {
return ResourceManager.GetString("IndexListHighFreqTermsCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The field to consider. If omitted, considers all fields..
/// </summary>
public static string IndexListHighFreqTermsCommandFieldDescription {
get {
return ResourceManager.GetString("IndexListHighFreqTermsCommandFieldDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The number of terms to consider. If omitted, defaults to 100..
/// </summary>
public static string IndexListHighFreqTermsCommandNumberOfTermsDescription {
get {
return ResourceManager.GetString("IndexListHighFreqTermsCommandNumberOfTermsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specifies that both the document frequency & term frequency are reported, ordered by descending total term frequency..
/// </summary>
public static string IndexListHighFreqTermsCommandTotalTermFrequencyDescription {
get {
return ResourceManager.GetString("IndexListHighFreqTermsCommandTotalTermFrequencyDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lists segments in an index..
/// </summary>
public static string IndexListSegmentsCommandDescription {
get {
return ResourceManager.GetString("IndexListSegmentsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to After running this command to view segments, use copy-segments to copy segments from one index directory to another or delete-segments to remove segments from an index..
/// </summary>
public static string IndexListSegmentsExtendedHelpText {
get {
return ResourceManager.GetString("IndexListSegmentsExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Displays the taxonomy statistical information for a taxonomy index..
/// </summary>
public static string IndexListTaxonomyStatsCommandDescription {
get {
return ResourceManager.GetString("IndexListTaxonomyStatsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prints how many ords are under each dimension..
/// </summary>
public static string IndexListTaxonomyStatsCommandExtendedHelpText {
get {
return ResourceManager.GetString("IndexListTaxonomyStatsCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Recursively lists all descendant nodes..
/// </summary>
public static string IndexListTaxonomyStatsCommandShowTreeDescription {
get {
return ResourceManager.GetString("IndexListTaxonomyStatsCommandShowTreeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Gets document frequency and total number of occurrences of a term..
/// </summary>
public static string IndexListTermInfoCommandDescription {
get {
return ResourceManager.GetString("IndexListTermInfoCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Gets document frequency and total number of occurrences (sum of the term frequency for each document) of a term..
/// </summary>
public static string IndexListTermInfoCommandExtendedHelpText {
get {
return ResourceManager.GetString("IndexListTermInfoCommandExtendedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The field to consider..
/// </summary>
public static string IndexListTermInfoCommandFieldDescription {
get {
return ResourceManager.GetString("IndexListTermInfoCommandFieldDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The directory of the index..
/// </summary>
public static string IndexListTermInfoCommandIndexDirectoryDescription {
get {
return ResourceManager.GetString("IndexListTermInfoCommandIndexDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The term to consider..
/// </summary>
public static string IndexListTermInfoCommandTermDescription {
get {
return ResourceManager.GetString("IndexListTermInfoCommandTermDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Merges multiple indexes into a single index..
/// </summary>
public static string IndexMergeCommandDescription {
get {
return ResourceManager.GetString("IndexMergeCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Two or more source index directories separated by a space..
/// </summary>
public static string IndexMergeCommandInputDirectoryDescription {
get {
return ResourceManager.GetString("IndexMergeCommandInputDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The output directory to merge the input indexes into..
/// </summary>
public static string IndexMergeCommandOutputDirectoryDescription {
get {
return ResourceManager.GetString("IndexMergeCommandOutputDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Splits an index into multiple parts..
/// </summary>
public static string IndexSplitCommandDescription {
get {
return ResourceManager.GetString("IndexSplitCommandDescription", resourceCulture);
}
}
/// <summary>