File: instantsearchstrings.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (139 lines) | stat: -rw-r--r-- 6,822 bytes parent folder | download
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
unit instantsearchstrings;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils;

Resourcestring
  lrsInstantSearch = 'Instant search';
  lrsInstantSearchMenu = 'Instant search';
  lrsCurrentProject = 'Active project';
  lrsErrorMinLengthIs2 = 'There should be at least two characters to search.';
  lrsConfigNeeded = 'Configuration needed';
  lrsConfigNeededReason = 'Instant search is not yet configured:'+LineEnding+'%s';
  lrsNotConfigured = 'User did not configure anything.';
  lrsCancelSearch = 'Cancel search';
  lrsConfigure = 'Configure Instant Search';
  lrsNoSearchTrees = 'No source trees were defined.';
  lrsNoServerTrees = 'Source trees were not yet indexed.';
  lrsNoTransport = 'No transport protocol was selected.';
  lrsNoMysqlVersion = 'No MySQL Client library version was selected for MySQL transport.';
  lrsConnectionTestOK = 'Connection test succeeded!';
  lrsConnectionTestFailed = 'Connection test failed, reason:'+LineEnding+'%s';
  lrsCreateIndexFailed = 'Creation of index %s failed, reason:'+LineEnding+'%s';
  lrsDeleteIndexFailed = 'Deletion of index %s failed, reason:'+LineEnding+'%s';
  lrsSearchTextHint = 'Enter search text, at least %d characters';
  lrsIndexAlreadyExists = 'Index table "%s" already exists.';
  lrsCannotDeleteIndexWhileIndexing = 'Cannot delete an index while an indexing operation is in progress.';
  lrsDeleteIndex = 'Delete index';
  lrsCreateIndex2 = 'Create index';
  lrsDeleteIndexHint = 'Prompt for index name and delete the index.';
  lrsIndexToDelete = 'Enter the name of the index to delete. This operation cannot be undone.';
  lrsNoSuchIndex = 'No such index exists: %s';
  lrsIndexDeleted = 'Index %s successfully deleted.';
  lrsCreateIndexWithName = 'Create index with name %s?';
  lrsYesCreateIndex = 'Yes, create the index';
  lrsDoNotCreateIndex = 'No, do not create the index';

  lrsTreeName        = 'Name';
  lrsTreeNameHint    = 'Unique name for this tree';
  lrsTreeBaseDir     = 'Path';
  lrsTreeBaseDirHint = 'Directory with source files';
  lrsTreeRecurse     = 'Recurse';
  lrsTreeAllFiles    = 'All files';
  lrsTreeExtensions  = 'Extensions';
  lrsTreeExtensionsHint = 'Comma-separated list of extensions of files';
  lrsErrorDuplicateName = 'Duplicate tree name: %s.'+LineEnding+'Please choose another name.';
  lrsErrNameCannotBeEmpty = 'Source tree name cannot be empty.';
  lrsErrPathDoesNotExist = 'Directory "%s" does not exist.'+LineEnding+'Please select an existing directory.';
  lrsErrorConnecting = 'Error "%s" attempting to connect to Manticore server.';
  lrsErrorSearching  = 'Error "%s" when searching using Manticore server.';

  lrsTreeEnabled = 'Enabled';
  lrsTreeNotFoundResfresh = 'Source tree %s not found.'+LineEnding+'Please refresh search results.';
  lrsAllTreesNeedindexing = 'All source trees must be indexed.';
  lrsTheseTreesNeedIndexing = 'The following source trees need to be indexed:'+LineEnding+'%s';
  lrsIndexNow = 'Would you like to start indexing them now?';
  lrsThisNeedsSavingSettings = 'This operation runs in the background, and will cause the settings to be saved now.';

  lrsNeedIndexing = 'Source trees must be indexed';
  lrsSaveAndIndex = 'Yes, index needed source trees';
  lrsSaveAndIndexAll = 'Yes, index all source trees';
  lrsIndexLater = 'No, do not index now';

  lrsNewTree = 'New source tree %d';
  lrsConfirm = 'Confirmation';
  lrsConfirmDeleteTree = 'Delete tree "%s", are you sure?'+LineEnding+'This action cannot be undone.';

  lrsTestConnection = 'Test connection';
  lrsSourceTreeAdd  = 'Add';
  lrsSourceTreeAddHint  = 'Add a new source tree definition.';
  lrsSourceTreeDelete = 'Delete';
  lrsSourceTreeDeleteHint  = 'Delete the highlighted source tree definition.';
  lrsSourceTreeIndex = 'Index';
  lrsSourceTreeEdit = 'Edit';
  lrsSourceTreeEditHint = 'Edit the highlighted source tree definition.';
  lrsSourceTreeClear = 'Clear';
  lrsSourceTreeClearHint = 'Remove all words in the highlighted source tree definition.';
  lrsSourceTreeClearAll = 'Clear all';
  lrsSourceTreeClearAllHint = 'Remove all words in all source tree definitions.';

  lrsManticoreOptions = 'Manticore server';
  lrsIndexingOptions = 'Indexing and searching';
  lrsMinSearchLength = 'Min. searchterm length';
  lrsMaxClipbrdSearchTermLength = 'Max. clipboard length';
  lrsResultsLimit = 'Max. result count';
  lrsProtocol = 'Protocol';
  lrsPort = 'Port';
  lrsHost = 'Hostname';
  lrsEnterHostnameLeaveEmptyForLocalhost = 'Enter hostname, leave empty for '
    +'localhost';
  lrsMysqlversion = 'MySQL client version';
  lrsIdleDisconnectTime = 'Idle disconnect time';
  lrsSearchEngine = 'Search engine';
  lrsSourceTrees = 'Source trees';
  lrsIndexName = 'Index name';

  lrsCannotConnectToManticore = 'Error "%s" trying to connect to Manticore server: %s';
  lrsNoIndex = 'Search index table not found';
  lrsIndexNotFoundCreate = 'Search index table "%s" was not found.'+LineEnding+'Create it?';
  lrsCreateIndex = 'Create index table';
  lrsAbortOperation = 'No, abort operation';
  lrsSaveNeeded = 'Save settings required.';
  lrsIndexNeedsSave = 'In order to index a source tree, the settings must be saved.'+LineEnding+'Save settings?';
  lrsSave = 'Yes, save settings';
  lrsIndexOperationFailed = 'Failed to start index operation.';
  lrsCannotIndexIndexInProgress = 'Cannot start an index operation while another one is in progress.';
  lrsFinishedIndexingTree = 'Finished indexing tree "%s". Processed %d files in %d minutes.';
  lrsStartIndexingTree = 'Start indexing tree "%s", directory: "%s"';
  lrsIndexingTreeFileCount = 'Tree "%s", indexed file count: %d';
  lrsFinishedIndexingProject = 'Finished indexing project "%s". Processed %d files.';
  lrsIndexingProjectTerminated = 'Indexing project "%s" was terminated. Processed %d files.';
  lrsStartIndexingProject = 'Start indexing project "%s", directory: "%s"';
  lrsIndexingOperationFinished = 'Finished indexing operation.';
  lrsMarkingIndexable = 'Marking project "%s" as indexable.';
  lrsTestButtonHint = 'Test the connection parameters.';
  lrsCreateIndexButtonHint = 'Create the index table. You need to test the connection first.';
  lrsNotProperlyConfigured = 'Instant search is not properly configured to connect to Manticore server: %s';

  lrsOnOpen = 'Project is opened';
  lrsManual = 'Manual only';
  lrsOnFirstSave = 'Project is first saved';
  lrsAllProjects = 'All projects';
  lrsTimed = 'Delayed after project open';

  lrsIndexProjectStrategy = 'Mark project indexable';
  lrsAutomation = 'Automation';
  lrsIndexProjectMoment = 'Index project when';
  lrsIndexProjectDelay1 = 'in';
  lrsIndexProjectDelay2 = 'minutes after open';
  lrsMarkProjectIndexable = 'Mark project indexable for Instant Search';
  lrsIndexProject = 'Index project for Instant Search';

implementation

end.