source: main/trunk/gli/classes/dictionary.properties@ 36256

Last change on this file since 36256 was 36256, checked in by kjdon, 23 months ago

strings for none/rank sort fields, and add all buttons for search/sort/facet

  • Property svn:keywords set to Author Date Id Revision
File size: 80.0 KB
Line 
1#*******************
2#** Language Orientation Property
3Component.Orientation:LTR
4
5#*******************
6#
7#***** AboutDialog *****
8AboutDialog.Acknowledgement:Acknowledgements for proprietary programs, packages or classes...
9AboutDialog.Date:(November 2009)
10AboutDialog.Item0:'Xerces Java 1' from The Apache Software Foundation (http://www.apache.org/)
11AboutDialog.Item2:'WGet' from Free Software Foundation, Inc. (http://www.gnu.org/software/wget/wget.html)
12AboutDialog.Item3:'qfslib' from Quality First Software GmbH. (http://www.qfs.de/en/qflib/index.html)
13AboutDialog.Item4:'ExtensionFileFilter.class' by Bruno Dumon and contributors (http://pollo.sourceforge.net/)
14AboutDialog.Item5:'How to disable file renaming in file chooser' - vladi21 (http://www.experts-exchange.com/)
15AboutDialog.Item6:'Autoscrolling' - Java Swing by Robert Eckstein, Marc Loy & Dave Wood (http://www.oreilly.com/catalog/jswing/chapter/dnd.beta.pdf)
16AboutDialog.Item7:'Add ghosted drag images to your JTrees' - By Andrew J. Armstrong (http://www.javaworld.com/javaworld/javatips/jw-javatip114.html)
17AboutDialog.Item8:'Stop annoying java.prefs error when you don't have superuser access' - Thanks to Walter Schatz
18AboutDialog.Item9:'New folder', 'delete' and 'help' icons from the Dropline Neu! icon set by Silvestre Herrera, available from http://art.gnome.org/
19AboutDialog.Java_Req:Java is a trademark of Sun Microsystems Inc. The JRE is redistributed as per the Supplemental License Terms, found at http://java.sun.com/j2se/1.4.1/j2re-1_4_1_02-license.html
20AboutDialog.Java_Req_One:This product includes code licensed from RSA Security, Inc.
21AboutDialog.Java_Req_Two:Some portions licensed from IBM are available at http\://oss.software.ibm.com/icu4j/
22AboutDialog.Thanks:Also thanks to those who posted helpful java information on the web...
23AboutDialog.Title:About...
24AboutDialog.Title_One:Greenstone Librarian Interface
25AboutDialog.Title_Two:Greenstone Digital Library, University of Waikato
26AboutDialog.Copyright:Copyright (C) 2003-2009 New Zealand Digital Library Project
27AboutDialog.Copyright_Two:Published under the GPL. See LICENSE.txt for details.
28#***********************
29#
30#***** Audit Table *****
31AuditTable.File:Filename
32#***********************
33#
34#***** Auto Filter *****
35Autofilter.AND:AND
36Autofilter.Ascending:Ascending
37Autofilter.Case_Sensitive:Match Case
38Autofilter.Custom_Filter:Advanced
39Autofilter.Descending:Descending
40Autofilter.Filter_By_Value:Simple
41Autofilter.Name:Column Name
42Autofilter.None:None
43Autofilter.Operator:Condition
44Autofilter.OR:OR
45Autofilter.Order:Ordering
46Autofilter.Order_Tooltip:Sort the matching items in this order
47Autofilter.Remove:Remove Filter
48Autofilter.Remove_Tooltip:Remove this filter from the table column
49Autofilter.Set:Set Filter
50Autofilter.Set_Tooltip:Add this filter to the table column
51Autofilter.Table_Header_Tooltip:Filter by {0}
52Autofilter.Title:Autofilter Metadata
53Autofilter.eqeq:equal to
54Autofilter.!eq:does not equal
55Autofilter.<:is less than
56Autofilter.<eq:is less than or equal to
57Autofilter.>:is greater than
58Autofilter.>eq:is greater than or equal to
59Autofilter.^:starts with
60Autofilter.!^:does not start with
61Autofilter.$:ends with
62Autofilter.!$:does not end with
63Autofilter.?:contains
64Autofilter.!?:does not contain
65#
66# ********************************************************
67# *************** Collection Design Module ***************
68# ********************************************************
69# * The dictionary phrases used in the creation of the *
70# * Colection Design Module. Note that we still have *
71# * access to the format arguments (argument 32+) for *
72# * html formatting. *
73# ********************************************************
74CDM.ArgumentConfiguration.Bad_Integer:<html>The argument '{0}' requires an integer value,<br>but no integer can be parsed from {1}.</html>
75CDM.ArgumentConfiguration.Error_Title:Error In Arguments
76CDM.ArgumentConfiguration.Header:<HTML><STRONG><FONT FACE={FONT} COLOR=Black SIZE=5><CENTER>Please configure the arguments for {0}.</CENTER></FONT></STRONG></HTML>
77CDM.ArgumentConfiguration.No_Value:The argument '{0}' requires a value, but no value is specified.
78CDM.ArgumentConfiguration.Required_Argument:The argument '{0}' must be given a value.
79CDM.ArgumentConfiguration.Title:Configuring Arguments
80CDM.BuildTypeManager.Title:Select the Indexer
81CDM.BuildTypeManager.mg:MG
82CDM.BuildTypeManager.mg_Description:This is the original indexer used by Greenstone, developed mainly by Alistair Moffat and described in the classic book Managing Gigabytes. It does section level indexing, and searches can be boolean or ranked (not both at once). For each index specified in the collection, a separate index file is created. For phrase searching, Greenstone does an "AND" search on all the terms, then scans the resulting hits to see if the phrase is present. It has been extensively tested on very large collections (many GB of text).
83CDM.BuildTypeManager.mgpp:MGPP
84CDM.BuildTypeManager.mgpp_Description:This new version of MG (MG plus plus) was developed by the New Zealand Digital Library Project. It does word level indexing, which allows fielded, phrase and proximity searching to be handled by the indexer. Boolean searches can be ranked. Only a single index file is created for a Greenstone collection: document/section levels and text/metadata fields are all handled by one index file. For collections with many indexes, this results in a smaller collection size than using MG. For large collections, searching may be a bit slower due to the index being word level rather than section level.
85CDM.BuildTypeManager.lucene:Lucene
86CDM.BuildTypeManager.lucene_Description:Lucene was developed by the Apache Software Foundation. It handles field and proximity searching, but only at a single level (e.g. complete documents or individual sections, but not both). Therefore document and section indexes for a collection require two separate index files. It provides a similar range of search functionality to MGPP with the addition of single-character wildcards, range searching and sorting of search results by metadata fields. It was added to Greenstone to facilitate incremental collection building, which MG and MGPP can't provide.
87CDM.BuildTypeManager.solr:SOLR
88CDM.BuildTypeManager.solr_Description:SOLR is a web server friendly version of the Lucene Indexing tool by Apache. It provides the same set of functionality as Lucene, but is typically quicker to respond to individual queries due to holding key indexing structures in memory and caching results. SOLR provides all the features that Lucene does, such as incremental collection building, field and proximity searching, range searching and sorting of search results. SOLR additionally provides faceted browsing of search results - i.e. filtering the results based on metadata values, and GPS-based proximity search.
89CDM.BuildTypeManager.Current_Type:Indexer in use: {0}
90CDM.BuildTypeManager.Change:Change...
91CDM.BuildTypeManager.Change_Tooltip:Change the indexer used by this collection
92CDM.ClassifierManager.Add:Add Classifier...
93CDM.ClassifierManager.Add_Tooltip:Use the specified classifier with this collection
94CDM.ClassifierManager.Assigned:Assigned Classifiers
95CDM.ClassifierManager.Classifier:Select classifier to add
96CDM.ClassifierManager.Classifier_Str:classifier
97CDM.ClassifierManager.Classifier_List_XML_Parse_Failed:Unable to get the list of classifiers using classinfo.pl -listall.
98CDM.ClassifierManager.Classifier_XML_Parse_Failed:Unable to determine the arguments for the {0}\nclassifier. Please ensure that the classifier in question\nprovides the -xml flag by running the classinfo.pl script\nsimilar to the description of the pluginfo.pl script in\nsection 2.1 of the Greenstone Developers Guide.
99CDM.ClassifierManager.Configure:Configure Classifier...
100CDM.ClassifierManager.Configure_Tooltip:Change the options of the selected classifier
101CDM.ClassifierManager.Remove:Remove Classifier
102CDM.ClassifierManager.Remove_Tooltip:Remove the selected classifier from the list
103CDM.DatabaseTypeManager.Change:Change...
104CDM.DatabaseTypeManager.Change_Tooltip:Change the type of database used by this collection
105CDM.DatabaseTypeManager.Current_Type:Database in use: {0}
106CDM.DatabaseTypeManager.Title:Select the Database
107CDM.DatabaseTypeManager.gdbm:GDBM
108CDM.DatabaseTypeManager.gdbm_Description: GDBM (or GNU Database Manager) is a simple flat-file database engine which Greenstone uses as the default database for new collections.
109CDM.DatabaseTypeManager.jdbm:JDBM
110CDM.DatabaseTypeManager.jdbm_Description: JDBM (or Java Database Manager) is essentially a Java implementation of GDBM. Consider using this database engine combined with a Lucene or SOLR indexer if you are wanting to create a pure Java run-time.
111CDM.DatabaseTypeManager.sqlite:SQLITE
112CDM.DatabaseTypeManager.sqlite_Description: SQLite is a simple relational database engine. It can be used in Greenstone to provide experimental advanced searching features that are not possible with the other database engines. To enable these features add "sqlform" to the list of SearchTypes in the Format Features section of the Format tab.
113CDM.FormatManager.Add:Add Format
114CDM.FormatManager.Add_Tooltip:Add the specified format command
115CDM.FormatManager.AllFeatures:All Features
116CDM.FormatManager.AllParts:All Components
117CDM.FormatManager.Default_Warning:Are you sure you want to reset the format statement to its default?
118CDM.FormatManager.Default:Reset to Default
119CDM.FormatManager.Default_Tooltip:Reset the selected format command to its default value
120CDM.FormatManager.Editor:HTML Format String
121CDM.FormatManager.Editor_Tooltip:Enter or edit the format command
122CDM.FormatManager.Editor_Disabled_Tooltip:Click 'Add Format' to add this format command to your collection.
123CDM.FormatManager.Enabled:Enabled
124CDM.FormatManager.Feature:Choose Feature
125CDM.FormatManager.Feature_Tooltip:The feature to format
126CDM.FormatManager.Insert:Insert
127CDM.FormatManager.Insert_Tooltip:Insert the selected variable into the format command
128CDM.FormatManager.Default:Reset to Default
129CDM.FormatManager.Default_Tooltip:Reset the selected variable to its default
130CDM.FormatManager.Insert_Variable:Insert Variable...
131CDM.FormatManager.Part:Affected Component
132CDM.FormatManager.Part_Tooltip:The aspect of the selected feature to format
133CDM.FormatManager.Remove:Remove Format
134CDM.FormatManager.Remove_Tooltip:Remove the selected format command
135CDM.FormatManager.Variable_Tooltip:Insert one of the predefined variables into the selected format command
136CDM.FormatManager.MessageBox:XML Validation
137CDM.FormatManager.MessageBox_Tooltip:XML Template validation Message
138CDM.General.Access:This collection should be publicly accessible
139CDM.General.Browser_Title:Select An Image
140CDM.General.Collection_Extra:Collection description:
141CDM.General.Collection_Extra_Tooltip:A description of the purpose and content of the collection
142CDM.General.Collection_Name:Collection title:
143CDM.General.Collection_Name_Tooltip:Name of the collection
144CDM.General.Email.Creator:Creator's email
145CDM.General.Email.Creator_Tooltip:E-mail address of the collection's creator
146CDM.General.Email.Maintainer:Maintainer's email
147CDM.General.Email.Maintainer_Tooltip:E-mail address of the collection's maintainer
148CDM.General.Icon_Collection:URL to 'about page' image:
149CDM.General.Icon_Collection_Tooltip:The URL of the image to display on the collection's about page
150CDM.General.Icon_Collection_Small:URL to 'home page' image:
151CDM.General.Icon_Collection_Small_Tooltip:The URL of the image to display on the library's home page for this collection
152CDM.General.Image_Copy_Failed:An error has occurred which prevents the image you selected being copied.\nPlease try manually copying the image:\n{0}\n to the images folder of your collection:\n{1}
153CDM.General.Image_Filter:Images (gifs, jpgs and pngs)
154CDM.GUI.Classifiers:Browsing Classifiers
155CDM.GUI.Formats:Format Features
156CDM.GUI.General:General
157CDM.GUI.Indexes:Search Indexes
158CDM.GUI.Macros:Collection Specific Macros
159CDM.GUI.Plugins:Document Plugins
160CDM.GUI.Root:CDM_ROOT
161CDM.GUI.SearchMetadata:Search
162CDM.GUI.Subcollections:Partition Indexes
163CDM.GUI.SuperCollection:Cross-Collection Search
164CDM.GUI.Translation:Translate Text
165CDM.GUI.DepositorMetadata:Depositor Metadata
166CDM.HelpButton:Help for this screen
167CDM.HelpButton_Tooltip:Open up the GLI help for this screen
168CDM.IndexManager.AddAll:Add All
169CDM.IndexManager.AddAll_Tooltip:Add each selected field as a separate index
170CDM.IndexManager.Add_Index:Add Index
171CDM.IndexManager.Add_Index_Tooltip:Add a single search index on the combined selected fields
172CDM.IndexManager.Allfields_Index:Add combined searching over all assigned indexes (allfields)
173CDM.IndexManager.Default_Index_Indicator:[Default Index]
174CDM.IndexManager.Index_Exists:That index has already been assigned for this collection.
175CDM.IndexManager.Indexes:Assigned Indexes
176CDM.IndexManager.Level:Indexing level:
177CDM.IndexManager.Level_Tooltip:Textual unit on which index is based
178CDM.IndexManager.Edit:Edit
179CDM.IndexManager.Edit_Index:Edit Index
180CDM.IndexManager.Edit_Button_Tooltip:Modify the selected index
181CDM.IndexManager.New:New
182CDM.IndexManager.New_Index:New Index
183CDM.IndexManager.New_Button_Tooltip:Add a new search index
184CDM.IndexManager.Remove:Remove
185#CDM.IndexManager.Remove_Index:Remove Index
186CDM.IndexManager.Remove_Button_Tooltip:Remove the selected index
187CDM.IndexManager.Replace_Index:Replace Index
188CDM.IndexManager.Replace_Index_Tooltip:Update the selected index with the selected fields
189CDM.IndexManager.Select_All:Select All
190CDM.IndexManager.Select_All_Tooltip:Select all index sources
191CDM.IndexManager.Select_None:Select None
192CDM.IndexManager.Select_None_Tooltip:Deselect all index sources
193CDM.IndexManager.Set_Default:Set Default
194CDM.IndexManager.Set_Default_Tooltip:Make the selected index the default index
195CDM.IndexManager.Source:Include in index:
196CDM.IndexManager.Source_Tooltip:The metadata elements to build the index on
197CDM.IndexManager.Text_Source:Full text
198CDM.IndexManager.Text_Source_Tooltip:Include the full text of the documents in the index
199CDM.SortFieldManager.Title:Assigned Sort Fields
200CDM.SortFieldManager.Add:Add Sort Field
201CDM.SortFieldManager.Add_Tooltip:Add the selected fields as a single combined sort field - used for sorting search results
202CDM.SortFieldManager.AddAll_Tooltip:Add each selected field as an individual sort field
203CDM.SortFieldManager.Replace:Replace Sort Field
204CDM.SortFieldManager.Replace_Tooltip:Replace the selected sort field with the new specification
205CDM.SortFieldManager.Field_None:none (no sorting)
206CDM.SortFieldManager.Field_None_Tooltip:search results are not sorted, and returned in build order
207CDM.SortFieldManager.Field_Rank:rank (sort by search rank)
208CDM.SortFieldManager.Field_Rank_Tooltip:Results are ordered by rank returned from the search indexer, i.e. relevance to the query
209CDM.SortFieldManager.New:New Sort Field
210CDM.SortFieldManager.Edit:Edit Sort Field
211CDM.SortFieldManager.Source:Include in sort field
212CDM.SortFieldManager.Source_Tooltip:The metadata elements to sort search results by
213CDM.SortFieldManager.New_Button_Tooltip:Add a new field for sorting search results
214CDM.SortFieldManager.Edit_Button_Tooltip:Modify the selected sort field
215CDM.SortFieldManager.Remove_Button_Tooltip:Remove the selected sort field
216CDM.SortFieldManager.Default_Sort_Indicator:[Default sort field]
217CDM.SortFieldManager.Set_Default_Tooltip:Make the selected sortfield the default field for sorting search results
218CDM.FacetManager.Title:Assigned Facets
219CDM.FacetManager.Add:Add Facet
220CDM.FacetManager.Add_Tooltip:Add the (combined) specified fields as a single facet for filtering search results
221CDM.FacetManager.AddAll_Tooltip:Add each selected field as an individual facet for filtering search results
222CDM.FacetManager.Replace:Replace Facet
223CDM.FacetManager.Replace_Tooltip: Replace the selected facet with the specified fields
224CDM.FacetManager.New:New Facet
225CDM.FacetManager.Edit:Edit Facet
226CDM.FacetManager.Source:Include in facet
227CDM.FacetManager.Source_Tooltip:The metadata elements to filter search results by
228CDM.FacetManager.New_Button_Tooltip:Add a new metadata field, or 'facet', to filter search results
229CDM.FacetManager.Edit_Button_Tooltip:Modify the selected facet
230CDM.FacetManager.Remove_Button_Tooltip:Remove the selected facet
231CDM.IndexingManager.Accent_fold:Accent fold
232CDM.IndexingManager.Accent_fold_Tooltip:Generate an accent-folded index, which enables searching for words ignoring accents.
233CDM.IndexingManager.Casefold:Casefold
234CDM.IndexingManager.Casefold_Tooltip:Generate a case-folded index, which enables case-insensitive searching.
235CDM.IndexingManager.Options:Indexing options:
236CDM.IndexingManager.Separate_cjk:CJK Text Segmentation
237CDM.IndexingManager.Separate_cjk_Tooltip:<html>Segment CJK (Chinese, Japanese, Korean) text. Currently involves inserting a space between each CJK character.<br> This is necessary for searching in CJK text unless the text has been segmented into words already.</html>
238CDM.IndexingManager.Stem:Stem
239CDM.IndexingManager.Stem_Tooltip:<html>Generate a stemmed index, which enables searching on word stems. <br>For example, searching for "farm" will also match "farms" "farming" "farmers" (useful for English and French only).</html>
240CDM.LanguageManager.Add_Tooltip:Add an index partition based on the specified languages
241CDM.LanguageManager.Assigned_Languages:Assigned Language Partitions
242CDM.LanguageManager.Default_Language:Default Language
243CDM.LanguageManager.LanguageMetadata:Language Metadata:
244CDM.LanguageManager.LanguageMetadata_Tooltip:The metadata element to use to determine a document's language
245CDM.LanguageManager.Remove_Tooltip:Remove the selected language partition from the list
246CDM.LanguageManager.Replace_Tooltip:Replace the selected partition with a new one based on the ticked languages
247CDM.LanguageManager.Selector:Languages to add:
248CDM.LanguageManager.Selector_Tooltip:The languages to build an index partition on
249CDM.LanguageManager.Set_Default:Set Default
250CDM.LanguageManager.Set_Default_Tooltip:Make the selected language partition the default
251CDM.LevelManager.Document:document
252CDM.LevelManager.Section:section
253CDM.LevelManager.Paragraph:paragraph
254CDM.LevelManager.Level_Title:Indexing Levels
255CDM.LevelManager.Default:Default
256CDM.LevelManager.Default_Tooltip:Default level in reader's interface
257CDM.MacrosManager.Editor_Tooltip:Edit macros here
258CDM.Move.At_Bottom:Cannot move the {0} {1} lower as it is already at the bottom of the list.
259CDM.Move.At_Top:Cannot move the {0} {1} higher as it is already at the top of the list.
260CDM.Move.Cannot:Cannot move the plugin {0} any lower as RecPlug and ArcPlug must be at the bottom of the list.
261CDM.Move.Fixed:<html>RecPlug and ArcPlug are generally required to be last and so are fixed in place.<br>If you really must move them please hand edit the collect.cfg file.</html>
262CDM.Move.Move_Down:Move Down
263CDM.Move.Move_Down_Tooltip:Move the selected item down the list
264CDM.Move.Move_Up:Move Up
265CDM.Move.Move_Up_Tooltip:Move the selected item up the list
266CDM.Move.Title:Error - Cannot Move
267CDM.PlugInManager.Add:Add Plugin...
268CDM.PlugInManager.QuickAdd:Add Plugin
269CDM.PlugInManager.Add_Tooltip:Use the specified plugin with this collection
270CDM.PlugInManager.Assigned:Assigned Plugins
271CDM.PlugInManager.Configure:Configure Plugin...
272CDM.PlugInManager.Configure_Tooltip:Change the options of the selected plugin
273CDM.PlugInManager.Ignore:Don't Add Plugin
274CDM.PlugInManager.Ignore_Tooltip:Don't add any plugins to this collection.
275CDM.PlugInManager.PlugIn:Select plugin to add:
276CDM.PlugInManager.PlugIn_Tooltip:The plugins available for use in the collection
277CDM.PlugInManager.PlugIn_Str:plugin
278CDM.PlugInManager.PlugIn_XML_Parse_Failed:Unable to determine the arguments for the {0}\nplugin. Please ensure that the plugin in question provides\nthe -xml flag by running the pluginfo.pl script described\nin section 2.1 of the Greenstone Developers Guide.
279CDM.PluginManager.Plugin_List_XML_Parse_Failed:Unable to get the list of plugins using pluginfo.pl -listall.
280CDM.PluginManager.Plugin_Suggestion_Prompt:None of the plugins in this collection are expected to process the file "{0}" directly. (However, it may be included in the collection if it belongs to another file, for example, an image in a web page.) The following plugins may be able to process this file. You can add one to your collection now by selecting it and pressing the Add button. (Note that you can change the list of plugins at any time by going to "Document Plugins" on the Design Pane.)
281CDM.PlugInManager.Remove:Remove Plugin
282CDM.PlugInManager.Remove_Tooltip:Remove the selected plugin from the list
283CDM.PluginManager.SuggestedPluginListTitle:Suggested plugins for file
284CDM.SearchMetadataManager.Component:Item in search menu
285CDM.SearchMetadataManager.Component_Name:Display text
286CDM.SearchMetadataManager.Type_index:Index
287CDM.SearchMetadataManager.Type_level:Level
288CDM.SearchMetadataManager.Type_sort:Sort Field
289CDM.SearchMetadataManager.Type_facet:Facet
290CDM.SearchMetadataManager.Type_search:Search
291CDM.SearchMetadataManager.Type_partition:Partition
292CDM.SearchMetadataManager.Type_language:Language Partition
293CDM.SubcollectionManager.Add:Add Filter
294CDM.SubcollectionManager.Add_Tooltip:Add the specified filter to the collection
295CDM.SubcollectionManager.Assigned:Defined Subcollection Filters
296CDM.SubcollectionManager.Exclude:Exclude
297CDM.SubcollectionManager.Flags:Flags to set when matching
298CDM.SubcollectionManager.Flags_Tooltip:Regular expression flags to use when matching (eg. "i" for case-insensitive matching)
299CDM.SubcollectionManager.Include:Include
300CDM.SubcollectionManager.Inclusive:What do we do with files that match?
301CDM.SubcollectionManager.Language_Controls:Assign Languages
302CDM.SubcollectionManager.Match:Regular expression to match with:
303CDM.SubcollectionManager.Match_Tooltip:A regular expression defining the documents in the subcollection
304CDM.SubcollectionManager.Name:Subcollection filter name:
305CDM.SubcollectionManager.Name_Tooltip:The name of the new subcollection filter
306CDM.SubcollectionManager.Remove:Remove Filter
307CDM.SubcollectionManager.Remove_Tooltip:Remove the selected filter from the list
308CDM.SubcollectionManager.Replace:Replace Filter
309CDM.SubcollectionManager.Replace_Tooltip:Update the details of the selected filter
310CDM.SubcollectionManager.Source:Document attribute to match against:
311CDM.SubcollectionManager.Source_Tooltip:The document attribute to filter on
312CDM.SubcollectionManager.Subcollection_Controls:Define Filters
313CDM.SubcollectionManager.Subindex_Controls:Assign Partitions
314CDM.SubcollectionIndexManager.Add_Subindex:Add Partition
315CDM.SubcollectionIndexManager.Add_Subindex_Tooltip:Add the specified partition to this collection
316CDM.SubcollectionIndexManager.Default_Partition_Indicator:[Default Partition]
317CDM.SubcollectionIndexManager.Remove_Subindex:Remove Partition
318CDM.SubcollectionIndexManager.Remove_Subindex_Tooltip:Remove the selected partition from this collection
319CDM.SubcollectionIndexManager.Replace_Subindex:Replace Partition
320CDM.SubcollectionIndexManager.Replace_Subindex_Tooltip:Update the selected partition
321CDM.SubcollectionIndexManager.Set_Default_Subindex:Set Default
322CDM.SubcollectionIndexManager.Set_Default_Subindex_Tooltip:Make the selected partition the default
323CDM.SubcollectionIndexManager.Source:Build partition on:
324CDM.SubcollectionIndexManager.Source_Tooltip:The subcollection filters to build the partition on
325CDM.SubcollectionIndexManager.Subindexes:Assigned Subcollection Partitions
326CDM.TranslationManager.Add:Add Translation
327CDM.TranslationManager.Add_Tooltip:Add the specified translation to the collection
328CDM.TranslationManager.Affected_Features:Features
329CDM.TranslationManager.Assigned_Fragments:Assigned Translations
330CDM.TranslationManager.Default_Text:Initial Text Fragment
331CDM.TranslationManager.Fragment_Column:Text Fragment
332CDM.TranslationManager.Language:Language of translation:
333CDM.TranslationManager.Language_Column:Language
334CDM.TranslationManager.Language_Tooltip:The language being translated into
335CDM.TranslationManager.Remove:Remove Translation
336CDM.TranslationManager.Remove_Tooltip:Remove the selected translation from the collection
337CDM.TranslationManager.Replace:Replace Translation
338CDM.TranslationManager.Replace_Tooltip:Update the selected translation
339CDM.TranslationManager.Translation:Translated Text
340CDM.TranslationManager.Translation_Tooltip:Enter the translation of the string here
341CDM.TranslationManager.Type_general:General
342CDM.DepositorMetadataManager.Warning:At least one metadata element should be selected.
343#*******************
344#
345#***** Collection *****
346Collection.Collection:<HTML><STRONG><FONT FACE={FONT} COLOR=Black>Collection</FONT></STRONG></HTML>
347Collection.Delete_Tooltip:Delete selected files and folders
348Collection.Filter_Tooltip:Restrict the files shown in the file tree
349Collection.New_Folder_Tooltip:Create a new folder
350Collection.No_Collection:No Collection
351Collection.No_Collection_Loaded:No collection loaded
352Collection.Stop:Stop
353Collection.Stop_Tooltip:Stop copying files
354Collection.Workspace:<HTML><STRONG><FONT FACE={FONT} COLOR=Black>Workspace</FONT></STRONG></HTML>
355#**********************
356#
357#***** CollectionBuilt *****
358CollectionBuilt.Message:The collection has been built and is ready for previewing.
359CollectionBuilt.Title:Collection Creation Result
360#***************************
361#
362#******ScheduldBuilt******
363ScheduleBuilt.Message:The scheduling of this collection has been altered.
364ScheduleBuilt.Title:Collection Scheduling Result
365#***************************
366#
367#***** CollectionManager *****
368CollectionManager.Schedule_Failed:An error has occurred and the collection could not be scheduled for periodic building.
369CollectionManager.Build_Cancelled:Building the collection has been cancelled.
370CollectionManager.Cannot_Create_Collection:An error has occurred and the collection could not be created.
371CollectionManager.Cannot_Create_Collection_With_Reason:The collection could not be created because:\n{0-Error message}
372CollectionManager.Cannot_Delete_Index:This collection cannot be rebuilt because the old index files cannot be deleted.\nPlease make sure that Greenstone or some other program is not using these files,\n and try again.
373CollectionManager.Cannot_Delete_Index_Log:Old index files unable to be deleted so importing stopped.
374CollectionManager.Cannot_Open:The collection at:\n{0-Collection file path}\ncannot be opened.
375CollectionManager.Cannot_Open_With_Reason:The collection at:\n{0-Collection file path}\ncannot be opened because:\n{1-Error message}
376CollectionManager.Creating_Collection:Creating collection
377CollectionManager.Creating_Collection_Please_Wait:Creating collection, please wait...
378CollectionManager.Loading_Collection:Loading collection
379CollectionManager.Loading_Collection_Please_Wait:Loading collection, please wait...
380CollectionManager.Loading_Successful:Loaded collection {0}.
381CollectionManager.Missing_Config:This collection does not have a valid collect.cfg file
382CollectionManager.Not_Col_File:'{0}' is not a Librarian Interface Collection File (.col)
383CollectionManager.No_Config_File:The collect.cfg file has not been created by mkcol.pl.
384CollectionManager.Preview_Ready_Failed:An error has occurred which will prevent the collection being previewed.
385CollectionManager.Preview_Ready_Title:Collection Preview State.
386CollectionManager.Schedule_Ready_Title:Scheduling State.
387CollectionManager.Build_Not_Moved:The building directory could not be moved. Try building again, or exit GLI and the server, and then restart GLI and try building again - this should fix the problem.
388CollectionManager.Index_Not_Deleted:The index directory could not be deleted. Try exiting GLI and the server, and then restart GLI and try building again - this should fix the problem.
389CollectionManager.Install_Exception:Exception detected during collection install:\n{0}\nMost likely caused by Windows or Local Library holding locks on files.\nPlease make sure that none of the collection source files\nare opened in external applications, then rebuild.
390#*****************************
391#
392#***** CollectionPopupMenu *****
393CollectionPopupMenu.Delete:Delete
394CollectionPopupMenu.New_Dummy_Doc:New dummy document
395CollectionPopupMenu.New_Folder:New folder
396CollectionPopupMenu.Refresh:Refresh folder view
397CollectionPopupMenu.Rename:Rename
398CollectionPopupMenu.Replace:Replace...
399#*******************************
400#
401#***** CreatePane *****
402CreatePane.Schedule_Progress:Schedule Progress
403CreatePane.Schedule:Schedule Options
404CreatePane.Schedule_Tooltip:Options for the scheduling of automatic collection formation
405CreatePane.Schedule_Build:Schedule Action
406CreatePane.Schedule_Build_Tooltip:Schedule automatic collection formation
407CreatePane.Build:Build Options
408CreatePane.Build_Tooltip:Options for the indexing and classification stage of collection formation
409CreatePane.Build_Collection:Build Collection
410CreatePane.Build_Collection_Tooltip:Start the collection formation process
411CreatePane.Build_Progress:Build Progress
412CreatePane.Cancel_Build:Cancel Build
413CreatePane.Cancel_Build_Tooltip:Stop the collection formation process
414CreatePane.Full_Build:Complete Rebuild
415CreatePane.Full_Build_Tooltip:Completely rebuild the collection from scratch
416CreatePane.Import:Import Options
417CreatePane.Import_Tooltip:Options for the file conversion and metadata assignment stage of collection formation
418CreatePane.Import_Progress:Import Progress
419CreatePane.Minimal_Build:Minimal Rebuild
420CreatePane.Minimal_Build_Tooltip:Faster, as only the parts of the collection building process that are necessary are performed
421CreatePane.Minimal_Build_Not_Required:Rebuilding is not required because you have not added any files to the collection,\nedited metadata, or changed options in the Design pane.\n(To force a rebuild, choose "Complete Rebuild" and press the "Build Collection" button.)
422CreatePane.Log:Message Log
423CreatePane.Log_Tooltip:View output from previous collection formation attempts
424CreatePane.Mode_All:all
425CreatePane.Options:Option Groups
426CreatePane.Options_Title:Collection Import, Build, and Scheduling Options
427CreatePane.Preview_Collection:Preview Collection
428CreatePane.Preview_Collection_Tooltip:Preview the collection
429#**********************
430#
431#***** Dates *****
432Dates.Mon:Monday
433Dates.Tue:Tuesday
434Dates.Wed:Wednesday
435Dates.Thu:Thursday
436Dates.Fri:Friday
437Dates.Sat:Saturday
438Dates.Sun:Sunday
439Dates.Jan:January
440Dates.Feb:February
441Dates.Mar:March
442Dates.Apr:April
443Dates.May:May
444Dates.Jun:June
445Dates.Jul:July
446Dates.Aug:August
447Dates.Sep:September
448Dates.Oct:October
449Dates.Nov:November
450Dates.Dec:December
451#**********************
452#
453#***** Delete Collection Prompt *****
454DeleteCollectionPrompt.Collection_Details:Selected collection's details
455DeleteCollectionPrompt.Collection_List:Available collections
456DeleteCollectionPrompt.Confirm_Delete:Please tick the box to confirm collection deletion.
457DeleteCollectionPrompt.Delete:Delete
458DeleteCollectionPrompt.Delete_Tooltip:Delete the selected collection
459DeleteCollectionPrompt.Details:Creator - {0}\nMaintainer - {1}\nDescription\n{2}
460DeleteCollectionPrompt.Failed_Delete:Collection could not be completely deleted.
461DeleteCollectionPrompt.Failed_Fedora_Delete:Error trying to purge collection from Fedora.
462DeleteCollectionPrompt.Failed_Title:Deletion Failed!
463DeleteCollectionPrompt.No_Collection:No collection selected.
464DeleteCollectionPrompt.Successful_Delete:Collection has been deleted.
465DeleteCollectionPrompt.Successful_Title:Deletion Complete!
466DeleteCollectionPrompt.Title:Collection Deletion
467DeleteCollectionPrompt.Cannot_Delete_Open_Collection_Tooltip:Cannot delete collection {0}, since it is currently open
468#**********************
469#
470#***** DirectoryLevelMetadata *****
471DirectoryLevelMetadata.Message:You are about to assign 'folder level' metadata to the selected folder (or folders). Such metadata will be automatically inherited by all files and folders in this folder. Furthermore this metadata cannot be removed from specific children, only replaced. To continue with this action click 'OK'.
472DirectoryLevelMetadata.Title:About to add folder level metadata
473
474#*******************
475#
476#***** Download *****
477DOWNLOAD.MODE.Root:Download_Root
478DOWNLOAD.MODE.WebDownload:Web
479DOWNLOAD.MODE.MediaWikiDownload:MediaWiki
480DOWNLOAD.MODE.OAIDownload:OAI
481DOWNLOAD.MODE.ZDownload:Z39.50
482DOWNLOAD.MODE.SRWDownload:SRU
483
484Download.ServerInformation:Server Information
485Download.ServerInformation_Tooltip:Download some information about the server, and check that a connection can be made
486
487#********************
488#
489#***** EnrichPane *****
490EnrichPane.AutoMessage:This element, {0}, belongs to the Greenstone metadata set. This set represents metadata that can usually be extracted automatically. To check what {0} metadata can be extracted create the collection using the 'Create' tab.
491EnrichPane.ExistingValues:Existing values for {0}
492EnrichPane.InheritedMetadataSelected:This piece of metadata is inherited from a folder above it, and cannot be edited. You can visit the actual folder containing the metadata by clicking on the folder icon at the start of the row.
493EnrichPane.InheritedMetadata_Tooltip:Click this icon to visit the folder where this inherited piece of metadata was assigned
494EnrichPane.ManageMetadataSets:Manage Metadata Sets...
495EnrichPane.ManageMetadataSets_Tooltip:Change the metadata sets used by the collection
496EnrichPane.No_File:No File Selected
497EnrichPane.No_Metadata:No Metadata Available
498EnrichPane.No_Metadata_Element:<HTML><STRONG><FONT FACE={FONT} COLOR=Black>No Metadata Element Selected</FONT></STRONG></HTML>
499EnrichPane.NotOneFileOnlyMetadataSelected:This piece of metadata does not apply only to this file, and cannot be edited.
500EnrichPane.Value_Field_Tooltip:Value to assign to the selected metadata element
501EnrichPane.Value_Field_Tooltip_Uneditable:Value assigned to the selected metadata element
502#***********************
503#
504#****** ExplodeMetadataPrompt *******
505ExplodeMetadataPrompt.Explode:Explode
506ExplodeMetadataPrompt.Explode_Tooltip:Explode the metadata file
507ExplodeMetadataPrompt.Instructions:Exploding this metadata file will produce individual records with editable metadata. This is an irreversible process and the original metadata file will be removed from the collection.
508ExplodeMetadataPrompt.Failed_Title:Exploding Failed.
509ExplodeMetadataPrompt.Failed_Explode:The database {0} could not be exploded.
510ExplodeMetadataPrompt.NotExplodable:This file is not explodable.
511ExplodeMetadataPrompt.Successful_Explode:Database {0} successfully exploded.
512ExplodeMetadataPrompt.Successful_Title:Exploding Complete.
513ExplodeMetadataPrompt.Title:Explode Metadata Database
514ExplodeMetadataPrompt.Plugin:Plugin to use for exploding
515#***********************
516#
517#****** ReplaceSrcWithHTMLPrompt *******
518ReplaceSrcWithHTMLPrompt.ReplaceSrc:Replace with HTML version
519ReplaceSrcWithHTMLPrompt.ReplaceSrc_Tooltip:Replace this source document with the HTML version Greenstone generates.
520ReplaceSrcWithHTMLPrompt.Instructions:Replacing a document with its generated HTML version will allow you to edit the HTML file and rebuild the collection in future with these edits intact. This is an irreversible process and the original document(s) thus replaced will be removed from the collection.
521ReplaceSrcWithHTMLPrompt.Failed_Title:Replacing with HTML Failed.
522ReplaceSrcWithHTMLPrompt.Failed_ReplaceSrc:The document(s) {0} could not be replaced with an HTML version.
523ReplaceSrcWithHTMLPrompt.NotSrcReplaceable:This file-type can not be replaced with an HTML version.
524ReplaceSrcWithHTMLPrompt.Successful_ReplaceSrc:All selected documents successfully replaced with their HTML versions.
525ReplaceSrcWithHTMLPrompt.Successful_Title:Replacing with Generated HTML Versions Complete.
526ReplaceSrcWithHTMLPrompt.Title:Replace Source Documents with HTML Files
527ReplaceSrcWithHTMLPrompt.Plugin:Plugin to use for exploding
528#***********************
529#
530#****** WriteCDImagePrompt *******
531WriteCDImagePrompt.CD_Name:CD/DVD name
532WriteCDImagePrompt.Export:Write CD/DVD image
533WriteCDImagePrompt.Export_Tooltip:Write the selected collections as a Windows CD/DVD Image
534WriteCDImagePrompt.Failed_Export:The collections ({0}) could not be exported.
535WriteCDImagePrompt.Failed_Title:Export Failed
536WriteCDImagePrompt.Install:CD/DVD will install some files when used (faster)
537WriteCDImagePrompt.Install_Tooltip:Produces a self-installing CD-ROM that installs the library server (and optionally all the collection files) onto the host machine.
538WriteCDImagePrompt.NoInstall:CD/DVD will not install any files when used
539WriteCDImagePrompt.NoInstall_Tooltip:Produces a CD-ROM that runs the library directly from the CD-ROM without installing anything on the host machine.
540WriteCDImagePrompt.Instructions:Export one or more collections to a self-installing Windows CD/DVD image (although this works on any platform, the CD/DVD image that is created only runs under Windows).
541WriteCDImagePrompt.Progress_Label:Copying Files. This could take some time...
542WriteCDImagePrompt.Size_Label:Estimated size:
543WriteCDImagePrompt.Successful_Export:The collections ({0}) have been exported.
544WriteCDImagePrompt.Successful_Title:Export Complete
545WriteCDImagePrompt.Title:Export Collection to CD/DVD
546#************************
547#
548#****** ExportAsPrompt *******
549ExportAsPrompt.Export_Name:Folder name
550ExportAsPrompt.Export_Name_Tooltip:The name of the folder in the Greenstone tmp directory where the exported collection will be saved.
551ExportAsPrompt.Export:Export collection
552ExportAsPrompt.Export_Tooltip:Export the selected collection in the chosen file format into the designated directory
553ExportAsPrompt.Failed_ExportOne:The collection {0} could not be exported.
554ExportAsPrompt.Failed_Details:See {1} for details
555ExportAsPrompt.Failed_Title:Export Failed
556ExportAsPrompt.Instructions:Export files in a collection into another format.
557ExportAsPrompt.Progress_Label:Exporting Files. This could take some time...
558ExportAsPrompt.Successful_ExportOne:The collection {0} has been exported.
559ExportAsPrompt.Successful_Details:Files exported to: {1}
560ExportAsPrompt.Successful_Title:Export Complete
561ExportAsPrompt.Title:Export Collection
562ExportAsPrompt.SaveAs:Export to
563ExportAsPrompt.SaveAs_Tooltip:Select the format you want to export to
564ExportAsPrompt.Cancel:Cancel
565ExportAsPrompt.Cancel_Tooltip:Cancel the exporting process
566ExportAsPrompt.Browse:Browse
567ExportAsPrompt.Browse_Tooltip:Choose a xsl file
568ExportAsPrompt.ApplyXSL:Apply XSL file to {0}
569ExportAsPrompt.ApplyXSL_Tooltip:Use a xsl file to convert the exported files.
570ExportAsPrompt.MARCXMLGroup:Group marc records
571ExportAsPrompt.MARCXMLGroup_Tooltip:Export all marc records to a single file.
572ExportAsPrompt.MappingXML:Apply the mapping file
573ExportAsPrompt.MappingXML_Tooltip:Use a mapping file for converting the exported files.
574#
575#***** Export/Convert Metadata to CSV *****
576MetaToCSV.Choose:Choose
577MetaToCSV.ExportAction:Export
578MetaToCSV.ConvertAction:Convert
579MetaToCSV.CSVFileExtensionType:CSV spreadsheet file (*.csv)
580MetaToCSV.ChooseMetaCSVFile:{0} metadata from GLI to a new CSV file or add to existing
581MetaToCSV.ConvertMetaXMLToCSV_Warning_Message:Warning, this will remove all metadata from GLI (metadata.xml files) after exporting to CSV.\nThis means you will no longer be able to edit this metadata from within GLI.\nProceed?
582MetaToCSV.ConvertMetaXMLToCSV_Failed_Message:Failed to export contents of collection metadata.xml files to CSV properly. Will not remove metadata.xml files.
583#
584#***** Inherited Metadata *****
585ExtractedMetadata.Message:The selected file or folder contains extracted metadata, but it is currently hidden. To view extracted metadata go to the "File" menu and select "Preferences". In the "General" properties sheet select "View Extracted Metadata", then click "Ok".
586ExtractedMetadata.Title:This File/Folder Has Hidden Extracted Metadata
587#
588#***** FileActions *****
589FileActions.Calculating_Size:Calculating total size of selected files
590FileActions.ChooseDestinationDirectory:Choose destination directory
591FileActions.Copying:Copying {0}
592FileActions.Could_Not_Delete:Could not delete {0}
593FileActions.Cyclic_Path:Cannot copy {0}: the destination folder is a subfolder of the source folder.
594FileActions.Deleting:Deleting {0}
595FileActions.Directories_Selected:{0} folders selected
596FileActions.Directory_Selected:1 folder selected
597FileActions.File_Already_Exists_No_Create:The file '{0}' already exists.
598FileActions.File_And_Directories_Selected:1 file and {0} folders selected
599FileActions.File_And_Directory_Selected:1 file and 1 folder selected
600FileActions.File_Create_Error:The file {0} could not be created.
601FileActions.Folder_Create_Error:The folder {0} could not be created.
602FileActions.Folder_Does_Not_Exist:This folder no longer exists, it may have been renamed or deleted
603FileActions.File_Exists:{0} already exists in the destination folder. Overwrite it?
604FileActions.File_Move_Error_Message:Could not move {0} to\n{1}.
605FileActions.File_Not_Deleted_Message:{0}\nThe file named above can not be deleted. \nPlease check that you don't have the file open\nin an external program, then try again.
606FileActions.File_Not_Found_Message:{0}\nThe file named above can not be found. Once file view\nhas refreshed, please check the file still exists.
607FileActions.File_Selected:1 file selected
608FileActions.Files_And_Directory_Selected:{0} files and 1 folder selected
609FileActions.Files_Selected:{0} files selected
610FileActions.Folder_Already_Exists:The folder name '{0}' is already in use. Cannot create folder.
611FileActions.Insufficient_Space_Message:The file action has failed because of insufficient disk\nspace. For the file to copy successfully you require a\nfurther: {0}
612FileActions.Moving:Moving {0}
613FileActions.No_Activity:No action requested
614FileActions.Read_Not_Permitted_Message:Could not read {0}.
615FileActions.Read_Only:Files from the workspace are read only and cannot be deleted.
616FileActions.Replacing:Replacing {0}
617FileActions.Selected:{0} files and {1} folders selected
618FileActions.Unknown_File_Error_Message:Although no error message was reported during the file\naction, a final check has shown that the destination\ncopy is not the same as the source file. The reason\nfor this is unknown. Please check your media and update\nyour installed JVM.
619FileActions.Write_Not_Permitted_Message:The Librarian Interface does not have permission to write to\n{0}\nPlease check file permissions.
620FileActions.Write_Not_Permitted_Title:Error - Incorrect File Permissions
621FileActions.Yes_To_All:Yes to All
622FileActions.File_Permission_Detail:\n\nNote: In general, the Greenstone Librarian Interface needs write permission for the Greenstone home folder, \nwhich is {0}.\nPlease grant 'Full Control' for this folder (and all subfolders) to the current user ({1}) and try again.\n\n(Alternatively, re-install Greenstone into a location where you have "Full Control" already,\n such as a your home folder or "My Documents".)
623
624#************************
625#
626#******* File Associations dialog **********
627FileAssociationDialog.Add:Add
628FileAssociationDialog.Add_Tooltip:Use this application to view files of this type
629FileAssociationDialog.Batch_File:Batch files
630FileAssociationDialog.Browse:Browse
631FileAssociationDialog.Browse_Tooltip:Choose the application to use from your filespace
632FileAssociationDialog.Browse_Tooltip_Mac:Browsing for your application is currently disabled for MacOS
633FileAssociationDialog.Browse_Title:Choose Application
634FileAssociationDialog.Close:Close
635FileAssociationDialog.Close_Tooltip:Close this dialog and return to the main window
636FileAssociationDialog.Command:Launch command:
637FileAssociationDialog.Command_File:Command files
638FileAssociationDialog.Command_Tooltip:Enter the command to launch the application to use
639FileAssociationDialog.Details:New File Association Details
640FileAssociationDialog.Executable_File:Executable files
641FileAssociationDialog.Extension:For files ending:
642FileAssociationDialog.Extension_Tooltip:The file extension of the files to view
643FileAssociationDialog.Instructions:Use this dialog to set what external programs are used to view a certain file-type, and what command is sent to launch this program.\nTo add a new file-type, type its extension in 'For files ending'. To add or modify a launch command, type the new command in 'Launch command' or click 'Browse' to search the file system for an appropriate program. Use the special string '%1' to indicate where the name of the file to be opened should be inserted, e.g. "C:\\Windows\\System\\MSPaint.exe %1". '%1' will be appended to the end of a command if not otherwise specified.\nMacOS users should always try the mac specific command "open [-a <application_name>] %1" first.
644FileAssociationDialog.Table.Command:Command
645FileAssociationDialog.Table.Extension:Extension
646FileAssociationDialog.Title:Edit File Associations
647FileAssociationDialog.Remove:Remove
648FileAssociationDialog.Remove_Tooltip:Remove the selected association from the existing associations
649FileAssociationDialog.Replace:Replace
650FileAssociationDialog.Replace_Tooltip:Replace the selected association with the new association details
651#*******************
652#
653#******Filter***************
654Filter.0:HTM & HTML
655Filter.1:XML
656Filter.2:Text Files
657Filter.3:Images
658Filter.4:PDF
659Filter.5:Office Documents
660Filter.All_Files:All Files
661Filter.Filter_Tree:Show Files
662Filter.Invalid_Pattern:<HTML><FONT FACE={FONT} COLOR=Black>The pattern you have entered for filtering files is invalid.<BR>Please try again using regular expression syntax and with<BR>* for the wildcard character.</FONT></HTML>
663#***********************
664#
665#***** GAuthenticator *****
666GAuthenticator.Password:Password:
667GAuthenticator.Password_Tooltip:Enter your password here
668GAuthenticator.Title:Password Required.
669GAuthenticator.Username:User Name:
670GAuthenticator.Username_Tooltip:Enter your username here
671#**************************
672#
673#***** General Messages *****
674# 0 - A String representing the name and method of the class in question.
675General.Apply:Apply
676General.Apply_Tooltip:Apply the current settings but do not exit the dialog
677General.Browse:Browse...
678General.Cancel:Cancel
679General.Cancel_Tooltip:Cancel the changes (will not undo any that have been applied already)
680General.CD:Change Dir...
681General.CD_Tooltip:Browse to a different collect directory
682General.ChooseCollectDirectory:Choose your collect directory...
683General.Close:Close
684General.Close_Tooltip:Close this dialog box
685General.Edit:Edit Value
686General.Error:Error
687General.LLS_Not_Started:You've launched the Greenstone server, but not pressed its Enter Library button yet.\nOnce you've done this, press Preview Collection in the Librarian Interface again to view the collection.
688General.LLS_Not_Started_Title:Local Library Server not started yet.
689General.No:No
690General.NotSunJava:The Librarian Interface has been developed and tested using Oracle's Java distribution and OpenJDK.\nDetected Java vendor: {0}
691General.OK:OK
692General.OK_Tooltip:Accept the current settings and exit the dialog
693General.Outstanding_Processes:<html>The Librarian Interface cannot close completely until all programs<br>started within The Librarian Interface have also exited.</html>
694General.Outstanding_Processes_Title:Waiting To Exit
695General.Pure_Cancel_Tooltip:Abort this action (no changes will be made)
696General.Reconfigure:Reconfigure your web server manually
697General.Review_Output:Please review output below:
698General.Redo:Redo
699General.Redo_Tooltip:Restore the last undo
700General.Save:Save
701General.Undo:Undo
702General.Undo_Tooltip:Undo the last edit
703General.Usage:Usage: {0} <params>\nAll parameters are optional but the Librarian Interface may fail to work if -gsdl and -library aren't set.\n -gsdl <path> : Force path to gsdl\n -library <path> : Path to cgi-bin\n -mozilla <path> : Enabled mozilla\n -mirror : Enable web-mirroring controls\n -laf [java|windows|motif|mac] : Look and feel\n -debug : Enable debug messages\n -no_load : Don't load previously open collection\n -load <path> : Load the specified collection
704General.View:View Value
705General.Warning:Warning
706General.Yes:Yes
707#****************************
708#
709#***** GShell *****
710GShell.BadArgument:Argument {0} is invalid.
711GShell.BadArgumentValue:Argument {0} has an invalid value.
712GShell.BadPluginOptions:The bad argument occurred in plugin {0}.
713GShell.BadClassifierOptions:The bad argument occurred in classifier {0}.
714GShell.Build.Auxilary:Creating auxiliary files and tidying up...
715GShell.Build.BuildBegun1:************** Build Started **************
716GShell.Build.BuildCancelled:************** Cancelled **************
717GShell.Build.BuildComplete1:************** Build Finished **************
718GShell.Build.CompressText:Compressing text...
719GShell.Build.Index:Creating an index based on {0-index source and level}...
720GShell.Build.InfoDatabase:Creating information database...
721GShell.Build.Phind:Generating a Phind classifier. This may take some time...
722GShell.Schedule.ScheduleBegun1:**************** Schedule Started ***************
723GShell.Schedule.ScheduleComplete1:**************** Schedule Finished *************
724GShell.Schedule.ScheduleDelete:*********** Deleting Existing Scheduling *****
725GShell.Command:Command
726GShell.Failure:Command failed.
727GShell.Import.FileNotProcessed:The file {0-target file path} was recognised but could not be processed by any plugin.
728GShell.Import.FileNotRecognised:The file {0-target file path} was not recognised by any plugin.
729GShell.Import.FileProcessing:The file {0-target file path} is being processed by {1-plugin name}.
730GShell.Import.FileProcessingError:The file {0-target file path} encountered an error during processing.
731GShell.Import.ImportBegun1:************** Import Started **************
732GShell.Import.ImportComplete1:************** Import Finished **************
733GShell.Import.ImportComplete2:{0-number documents considered} documents were considered for processing:
734GShell.Import.ImportComplete2.1:1 document was considered for processing:
735GShell.Import.ImportComplete.Processed:{0-number processed} documents were processed and included in the collection.
736GShell.Import.ImportComplete.Processed.1:1 document was processed and included in the collection.
737GShell.Import.ImportComplete.Blocked:{0-number blocked} were prevented from being added by plugins (such as images in web pages).
738GShell.Import.ImportComplete.Blocked.1:1 was prevented from being added by plugins (such as images in web pages).
739GShell.Import.ImportComplete.Ignored:{0-number ignored} were unrecognised.
740GShell.Import.ImportComplete.Ignored.1:1 was unrecognised.
741GShell.Import.ImportComplete.Failed:{0-number failed} were rejected.
742GShell.Import.ImportComplete.Failed.1:1 was rejected.
743GShell.Import.ImportComplete3:\n
744GShell.Import.SegmentProcessing:Processing segment {0-segment number}.
745GShell.Import.SegmentProcessingError:Error processing segment {0-segment number}.
746GShell.Import.Warning:{0-plugin name} Warning:
747GShell.Parsing_Metadata_Complete:Archived metadata extraction complete.
748GShell.Parsing_Metadata_Start:Extracting new metadata from archive files.
749GShell.Success:Command complete.
750#*********************
751#
752#***** GUI *****
753# Currently Enabled and Disabled display the same text but in different
754# colours. If necessary this can be changed.
755GUI.Create:Create
756GUI.Create_Tooltip:Build your collection using Greenstone
757GUI.Design:Design
758GUI.Design_Tooltip:Design the functionality of your collection
759GUI.Download:Download
760GUI.Download_Tooltip:Download resources from the internet for your collection
761GUI.Enrich:Enrich
762GUI.Enrich_Tooltip:Assign metadata to the files in your collection
763GUI.Format:Format
764GUI.Format_Tooltip:Design the appearance of your collection
765GUI.Gather:Gather
766GUI.Gather_Tooltip:Select the files to include in your collection
767GUI.CollectHome.title:The collect directory has changed
768GUI.CollectHome.message:The collect directory value has been changed from:
769GUI.CollectHome.to:to:
770GUI.CollectHome.dir:{0}
771GUI.CollectHome.gli:Do you want the Librarian Interface to remember the new collect directory?
772GUI.CollectHome.server:Do you want the Greenstone Server to remember the new collect directory?
773GUI.CollectHome.resetToDefault:No, reset to default
774GUI.CollectHome.leaveAtDefault:No, leave at default
775GUI.CollectHome.reset:Reset to default
776
777#***************
778#
779#***** HELP *****
780Help.Contents:Contents
781Help.Title:Librarian Interface Help Pages
782#****************************
783#
784#***** Invalid Metadata ******
785InvalidMetadata.Message:This metadata element is restricted to the pre-defined set of values. Please choose one from the existing values.
786InvalidMetadata.Title:Invalid Metadata
787#***************************
788#
789#***** LegacyCollection
790LegacyCollection.Message:You are about to load a collection that has not been created by the GLI. Existing metadata will be imported into the Dublin Core metadata set. Original metadata files will be saved in a folder called import.bak.
791LegacyCollection.Title:Loading External Collection
792#***************************
793#
794#***** LockFileDialog *****
795LockFileDialog.Cancel_Tooltip:Do not steal control of the lock file (collection will not open)
796LockFileDialog.Date:Date
797LockFileDialog.Error:error
798LockFileDialog.Lockfile_Message_One:The presence of a lock file suggests this collection is already open.
799LockFileDialog.Lockfile_Message_Two:Do you wish to 'steal' control of this lock file?
800LockFileDialog.Machine:Where
801LockFileDialog.Name:Name
802LockFileDialog.OK_Tooltip:Steal control of the lock file
803LockFileDialog.Title:Lock File Detected
804LockFileDialog.User:Who
805#********************
806#
807#*****MappingPrompt **********
808MappingPrompt.File:Folder
809MappingPrompt.Map:Create Shortcut
810MappingPrompt.Name:Name
811MappingPrompt.Title:Set Folder Shortcut
812MappingPrompt.Unmap:Remove Shortcut
813#*******************
814#
815#***** Menu Options *****
816Menu.Collapse:Close Folder
817Menu.Copy_Collection:Copy this collection to...
818Menu.Edit:Edit
819Menu.Edit_Copy:Copy ({0}-c)
820Menu.Edit_Cut:Cut ({0}-x)
821Menu.Edit_Paste:Paste ({0}-v)
822Menu.Edit_Config:Edit collectionConfig.xml
823Menu.Expand:Open Folder
824Menu.Explode_Metadata_Database:Explode metadata database
825Menu.Replace_SrcDoc_With_HTML:Replace with HTML version
826Menu.File:File
827Menu.File_Associations:File Associations...
828Menu.File_CDimage:Write CD/DVD image...
829Menu.File_Close:Close
830Menu.File_Delete:Delete...
831Menu.File_Exit:Exit
832Menu.File_ExportAs:Export...
833Menu.File_ExportMeta:Export metadata to CSV...
834Menu.File_ConvertMetaToCSV:Convert metadata to CSV...
835Menu.File_New:New...
836Menu.File_Open:Open...
837Menu.File_Options:Preferences...
838Menu.File_Save:Save
839Menu.Help:Help
840Menu.Help_About:About...
841Menu.Metadata_View:Assigned Metadata for the {0}
842Menu.Move_Collection:Move this collection to...
843Menu.Open_Externally:Open in external program
844#********************
845#
846#***** MetaAudit *****
847MetaAudit.Close:Close
848MetaAudit.Close_Tooltip:Close this dialog box
849MetaAudit.Title:All Metadata
850#*********************
851#
852#***** Metadata *****
853Metadata.Element:Element
854Metadata.Value:Value
855MetadataSet.Files:Metadata Set Files
856#**********************************
857#
858#***** MetadataSetDialog**********
859MetadataSetDialog.Title:Manage Metadata Sets
860MetadataSetDialog.Add_Title:Add Metadata Set
861MetadataSetDialog.Current_Sets:Assigned Metadata Sets
862MetadataSetDialog.Available_Sets:Available Metadata Sets
863MetadataSetDialog.Add:Add...
864MetadataSetDialog.Add_Tooltip:Add a new metadata set to the collection
865MetadataSetDialog.New_Set:New...
866MetadataSetDialog.New_Set_Tooltip:Create a new metadata set
867MetadataSetDialog.Add_Set:Add
868MetadataSetDialog.Add_Set_Tooltip:Add the selected metadata set to the collection
869MetadataSetDialog.Browse:Browse...
870MetadataSetDialog.Browse_Tooltip:Add a new metadata set to the collection
871MetadataSetDialog.Edit:Edit...
872MetadataSetDialog.Edit_Tooltip:Edit the selected metadata set
873MetadataSetDialog.Remove:Remove
874MetadataSetDialog.Remove_Tooltip:Remove the selected metadata set from the collection
875MetadataSetDialog.Elements:Elements in selected Metadata Set
876
877#****************************************
878#
879#***** MetadataSetNamespaceClash warning***
880MetadataSetNamespaceClash.Title:Metadata Set Namespace Clash
881MetadataSetNamespaceClash.Message:The metadata set you have chosen to add ({0}) has the same namespace as one already in the collection ({1}). If you add this new set, the old one will be deleted and the new one added in its place. Any assigned metadata values will be transferred to the new set if it contains the appropriate elements.
882#*********************************************
883#
884#******** MetadataImportMappingPrompt *********
885MIMP.Add:Add
886MIMP.Add_Tooltip:Add the metadata element to the selected set
887MIMP.Ignore:Ignore
888MIMP.Ignore_Tooltip:Ignore this metadata element
889MIMP.Instructions:The metadata element {0} cannot be automatically imported into the collection. Select a metadata set and either:\n(1) press 'Add' to add the metadata to that set (only if there is not already {0} metadata in the set), or\n(2) choose an element and press 'Merge' to import {0} metadata to this element, or\n(3) ignore this metadata element.
890MIMP.Merge:Merge
891MIMP.Merge_Tooltip:Map the metadata element to the specified element in the selected set
892MIMP.Source_Element:Source metadata element:
893MIMP.Target_Element:Target metadata element:
894MIMP.Target_Set:Target metadata set:
895MIMP.Title:Merging Action Required.
896#*****************************
897#
898#***** Mirroring *****
899Mirroring.ClearCache:Clear Cache
900Mirroring.ClearCache_Tooltip:Delete all downloaded files
901Mirroring.Download:Download
902Mirroring.Download_Tooltip:Start a new download job
903Mirroring.DownloadJob.Close:Close
904Mirroring.DownloadJob.Close_Tooltip:Remove this job from the list, stopping it if it is currently running
905Mirroring.DownloadJob.Downloading:Downloading {0}
906Mirroring.DownloadJob.Download_Complete:Download complete
907Mirroring.DownloadJob.Download_Stopped:Download halted
908Mirroring.DownloadJob.Download_Progress:Downloading in progress
909Mirroring.DownloadJob.Log:View Log
910Mirroring.DownloadJob.Log_Tooltip:View details about this download
911Mirroring.DownloadJob.Log_Title:Download Log
912Mirroring.DownloadJob.Pause:Pause
913Mirroring.DownloadJob.Pause_Tooltip:Pause this download
914Mirroring.DownloadJob.Stop:Stop
915Mirroring.DownloadJob.Stop_Tooltip:Stop this download job if it is currently running
916Mirroring.DownloadJob.Stopped:Stopped
917Mirroring.DownloadJob.Stopped_Tooltip:This download has been stopped
918Mirroring.DownloadJob.Resume:Resume
919Mirroring.DownloadJob.Resume_Tooltip:Resume this download
920Mirroring.DownloadJob.Status:Downloaded {0} of {1} files ({2} warnings, {3} errors)
921Mirroring.DownloadJob.Warning_No_Valid_Certificate:WARNING: Can't download from a site that doesn't have a (valid) security certificate.
922Mirroring.DownloadJob.Enable_NoCheckCertificate:Enable 'No certificate checking' in Preferences > Connection to download insecurely from 'https' URLs.
923Mirroring.DownloadJob.Waiting:Waiting to start
924Mirroring.DownloadJob.Waiting_User:Waiting for user action
925Mirroring.Invalid_URL:The URL entered is not valid. Please correct.
926Mirroring.Invalid_URL_Title:Invalid URL
927Mirroring.Preferences:Configure Proxy...
928Mirroring.Preferences_Tooltip:Enable proxy and/or edit proxy settings
929#*********************
930#
931#***** Missing EXEC *****
932MissingEXEC.Message:Warning! You will not be able to view your new collections within the Librarian Interface unless you specify the path to the Greenstone Library Webserver. You can enter this now in the text field below, or later by going to Preferences and choosing the Connection tab. Remember that a valid url must start with the protocol "http://", and will probably end with the executable name ("gsdl" for Greenstone Windows Local Library Server, "library.cgi" for other web servers).
933MissingEXEC.Title:Missing Greenstone Library Address
934#***** Missing EXEC_GS3 *****
935MissingEXEC_GS3.Message:Please enter the Greenstone 3 library URL. You will not be able to view your new collections within the Librarian Interface unless you specify the path to the Greenstone context in the locally running Tomcat Webserver. You can enter this now in the text field below, or later by going to Preferences and choosing the Connection tab. Remember that a valid URL must start with the protocol "http://".
936MissingEXEC_GS3.Title:Greenstone 3 Library URL
937#***** Missing GLIServer *****
938MissingGLIServer.Message:Enter the address of the remote Greenstone "gliserver.pl" script in the text field below. Remember that a valid URL must start with the protocol "http://" and end with "gliserver.pl".
939MissingGLIServer.Title:Specify GLI Server Address
940#***** Missing GSDL *****
941MissingGSDL.Message:Warning! You will not be able to access all of the Librarian Interface's features without a local copy of Greenstone Digital Library also installed. If you believe you are receiving this message in error please check your installation, and the paths specified in Librarian Interface batch or script file.
942MissingGSDL.Title:Missing Greenstone Path
943#***** Missing PERL *****
944MissingPERL.Message:Warning! You will not be able to create new collections, nor build existing ones, without PERL installed, and the Librarian Interface was unable to find PERL on your system. If you believe you are receiving this message in error please check your installation, and the paths specified in Librarian Interface batch or script file.
945MissingPERL.Title:Missing PERL Path
946#******* MissingImageMagick ********
947MissingImageMagick.Message:Warning! The Librarian Interface failed to locate an appropriate version of ImageMagick. Images can be included in collections but no image processing functionality will be available, such as converting images to a different type, or generating thumbnails.
948MissingImageMagick.Title:Missing ImageMagick
949#******* MissingPDFBox ********
950MissingPDFBox.Message:To process PDF documents version 1.5 and above, download the PDFBox extension from \nhttps://svn.greenstone.org/{0}gs2-extensions/pdf-box/trunk/pdf-box-java.{1}\nInstall it by unzipping it into your {2} folder. Then configure your PDFPlugin with pdfbox_conversion turned on.
951MissingPDFBox.Title:Missing PDFBox extension
952#******** Multiple filename encodings not supported *******
953NoEncodingSupport.Message:Your locale seems to be in UTF-8. Non-UTF-8 filenames are not supported by your setup.
954NoEncodingSupport.Title:No Filename Encoding Support
955#******** Non-standard collect home *******
956NonStandardCollectHome.Message:Your current collect home {0} is located outside of your Greenstone installation and is not its default collect directory at {1}. To work with the collect directory of your choice, go to File > Preferences > Connection and set the Collect Directory field to a folder.
957NonStandardCollectHome.Title:Non-standard collect home
958#*****************************
959#
960#***** New Session *****
961NewCollectionPrompt.Base_Collection:Base this collection on:
962NewCollectionPrompt.Base_Collection_Tooltip:Select an existing collection to base the new collection on
963NewCollectionPrompt.ChooseACollection:Choose a collection
964NewCollectionPrompt.Collection_Description:Description of content:
965NewCollectionPrompt.Collection_Name:Collection folder:
966NewCollectionPrompt.Collection_Scope_Personal:This is a personal collection
967NewCollectionPrompt.Collection_Scope_Personal_Tooltip:The collection can be edited by the person who created it and users in the "all-collections-editor" group.
968NewCollectionPrompt.Collection_Scope_Shared:This is not a personal collection
969NewCollectionPrompt.Collection_Scope_Shared_Tooltip:The collection can be edited by users in the "all-collections-editor" group.
970NewCollectionPrompt.Error:Error in new collection.
971NewCollectionPrompt.Instructions:To create a new collection fill out the fields below.
972NewCollectionPrompt.NewCollection:-- New Collection --
973NewCollectionPrompt.OtherCollections:-- Other Collections... --
974NewCollectionPrompt.Select:Select
975NewCollectionPrompt.Title:Create a new Collection.
976NewCollectionPrompt.Title_Clash:The title you have chosen for your collection is already in use. Continue?
977NewCollectionPrompt.Title_Error:The title field must be filled out. Please correct.
978#***** New Folder OrFilePrompt *****
979NewFolderOrFilePrompt.Default_File_Name:dummy
980NewFolderOrFilePrompt.Default_Folder_Name:new folder
981NewFolderOrFilePrompt.Destination_Name:Destination Folder
982NewFolderOrFilePrompt.File_Name:File Name
983NewFolderOrFilePrompt.File_Name_Tooltip:Enter a name for the new file
984NewFolderOrFilePrompt.Folder_Name:Folder Name
985NewFolderOrFilePrompt.Folder_Name_Tooltip:Enter a name for the new folder
986NewFolderOrFilePrompt.Title_Folder:Create a new folder
987NewFolderOrFilePrompt.Title_File:Create a new dummy document
988#**********************
989#
990#******* OldWGET *******
991NoPluginExpectedToProcessFile.Message:None of Greenstone's plugins are expected to process the file "{0}" directly. (However, it may be included in the collection if it belongs to another file, for example, an image in a web page.) Check that the file has the correct extension. If it is correct then you may have to use UnknownPlug to process this file.
992NoPluginExpectedToProcessFile.Title:No plugin expected to process file
993#***********************
994#
995#***** OpenCollectionDialog *****
996OpenCollectionDialog.Available_Collections:Available Collections
997OpenCollectionDialog.Description:Collection Description
998OpenCollectionDialog.Open:Open
999OpenCollectionDialog.Open_Tooltip:Load the selected collection into the Librarian Interface
1000OpenCollectionDialog.Title:Open Greenstone Collection
1001#**********************
1002#
1003#***** FormatConversionDialog *****
1004FormatConversionDialog.Accept_All:Accept All
1005FormatConversionDialog.Accept_All_Tooltip:Closes this dialog, accepting the default Greenstone3 format statements that have been automatically produced for the current and any subsequent Greenstone2 format statements.
1006FormatConversionDialog.Cancel_Or_Accept_All:One or more Greenstone3 format statements contains invalid XML.\nEither press Cancel to correct the XML.\nOr press OK to store the Greenstone3 format statements as-is, albeit inactive.\nYou can later use the Format tab to revisit the format statements if you want to update their syntax.
1007FormatConversionDialog.Cancel_Or_Continue_Next:Either press Cancel to go back and re-edit the XML.\nOr press OK to store the current XML as-is, albeit inactive, and continue on to the next statement.\nYou can later use the Format tab to revisit this format statement if you want to update its syntax.
1008FormatConversionDialog.Cancel_Tooltip:Cancels out of opening the collection and closes this dialog, discarding any changes made in the dialog.
1009FormatConversionDialog.Error_GS3_Format:Error in Greenstone3 format statement.
1010FormatConversionDialog.GS2_Text_Tooltip:Greenstone2 format statement.
1011FormatConversionDialog.GS3_Text_Tooltip:Greenstone3 format statement, must be XML to be active in Greenstone.
1012FormatConversionDialog.Invalid_XML:Invalid XML.
1013FormatConversionDialog.Invalid_XML_Warning_Title:Cancel or Continue?
1014FormatConversionDialog.Next:Next
1015FormatConversionDialog.Next_Tooltip:Inspect the next Greenstone3 format statement that has been automatically converted from a Greenstone2 format statement.
1016FormatConversionDialog.Reconvert:Reconvert
1017FormatConversionDialog.Reconvert_Tooltip:Converts the text that is currently in the Greenstone2 format text area into a Greenstone3 format statement.
1018FormatConversionDialog.Tidy_Done:Tidy done.
1019FormatConversionDialog.Tidy_Failed:Tidy failed.
1020FormatConversionDialog.Title:Convert Greenstone2 format statements to Greenstone3
1021FormatConversionDialog.XHTML_Tidy:XHTML Tidy
1022FormatConversionDialog.XHTML_Tidy_Tooltip:Will run HTML Tidy over the Greenstone3 format statement to try to fix up obvious XHTML errors.
1023FormatConversionDialog.XML_Still_Invalid:XML is still invalid.
1024
1025#***** ConfigFileEditor *****
1026ConfigFileEditor.Save_Tooltip:Save changes and close.
1027ConfigFileEditor.Cancel_Tooltip:Close without saving.
1028ConfigFileEditor.Add_Element_Label:Add element to:
1029ConfigFileEditor.Add_Label:Add
1030ConfigFileEditor.Add_Element_Tooltip:Select the (security related) element to add to the collection configuration file then edit the newly added element accordingly.
1031ConfigFileEditor.Hide_Collection:Hide the collection
1032ConfigFileEditor.Secure_Collection:Secure the collection
1033ConfigFileEditor.Secure_All_Documents:Secure all documents in this collection
1034ConfigFileEditor.Secure_Certain_Documents:Secure certain documents in this collection
1035ConfigFileEditor.Add_Another_DocumentSet:Add another documentSet element
1036ConfigFileEditor.Add_Another_Exception:Add another exception element
1037ConfigFileEditor.Press_Undo_Once_More_First:Cannot add to the collection configuration as it is currently empty. Try pressing Undo (once more) first to get any earlier configuration contents back before trying to add further elements to it.
1038ConfigFileEditor.Need_Security_Element_To_Add:Since there is no <security> element in collectionConfig.xml yet, cannot add further elements to it. Try one of the Secure... options first before trying this option again.
1039ConfigFileEditor.Config_Already_Has_Security_Element:The collectionConfig.xml file already contains a <security> element, cannot add more to it. Remove the existing element in entirety first before attempting to add a new one.
1040
1041#**********************
1042#
1043#***** Options Pane inside CreatePane *****
1044OptionsPane.Cancelled: - cancelled
1045OptionsPane.LogHistory:Log history
1046OptionsPane.Successful: - successful
1047OptionsPane.Scheduled: - scheduled
1048OptionsPane.Unknown: - unknown
1049OptionsPane.Unsuccessful: - unsuccessful
1050#*******************
1051#
1052#***** Preferences *****
1053Preferences:Preferences
1054Preferences.Connection:Connection
1055Preferences.Connection_Tooltip:Set the URL to the greenstone library and configure a proxy connection if appropriate
1056Preferences.Connection.GLIServer_URL:Greenstone gliserver URL:
1057Preferences.Connection.GLIServer_URL_Tooltip:The URL of the Greenstone "gliserver" CGI script
1058Preferences.Connection.Library_Path:Library Path:
1059Preferences.Connection.Library_Path_GS3:Greenstone Web Path:
1060Preferences.Connection.Library_Path_Tooltip:The URL of the Greenstone web-server
1061Preferences.Connection.Library_Path_Tooltip_GS3:The URL of the Greenstone web-server
1062Preferences.Connection.Library_Path_Connection_Failure:Failed to connect. Check that the Greenstone server at {0} is running.
1063Preferences.Connection.CollectDirectory:Collect Directory:
1064Preferences.Connection.CollectDirectory_Tooltip:The path to the collect directory you want to work with.
1065Preferences.Connection.ProgramCommand:Preview Command:
1066Preferences.Connection.ProgramCommand_Tooltip:The launch command for the program used to view the collection preview. Remember to use %1 as the placeholder for the collection address, and to use speechmarks where necessary.
1067Preferences.Connection.No_Check_Certificate: No certificate checking for HTTPS downloads
1068Preferences.Connection.No_Check_Certificate_Tooltip:Tick to download even from 'https' URLs that don't have a (valid) security certificate.
1069Preferences.Connection.HTTP_Proxy_Host:HTTP Proxy Host:
1070Preferences.Connection.HTTP_Proxy_Host_Tooltip:The address of your HTTP proxy server
1071Preferences.Connection.HTTP_Proxy_Port_Tooltip:The port number of your HTTP proxy server
1072Preferences.Connection.HTTPS_Proxy_Host:HTTPS Proxy Host:
1073Preferences.Connection.HTTPS_Proxy_Host_Tooltip:The address of your HTTPS proxy server
1074Preferences.Connection.HTTPS_Proxy_Port_Tooltip:The port number of your HTTPS proxy server
1075Preferences.Connection.FTP_Proxy_Host:FTP Proxy Host:
1076Preferences.Connection.FTP_Proxy_Host_Tooltip:The address of your FTP proxy server
1077Preferences.Connection.FTP_Proxy_Port_Tooltip:The port number of your FTP proxy server
1078Preferences.Connection.Proxy_Host_Missing:Enter a value for at least one proxy host or turn off Use Proxy Connection in the Connection tab.
1079Preferences.Connection.Proxy_Port:Port:
1080Preferences.Connection.Servlet:Servlet:
1081Preferences.Connection.Servlet_Tooltip:The servlet to use to view your site
1082Preferences.Connection.Servlet_Tooltip2:There is no servlet specified for this site, you can still build collections, but you wont be able to view them
1083Preferences.Connection.Site:Site:
1084Preferences.Connection.Site_Tooltip:The site you want to work in
1085Preferences.Connection.Use_Proxy:Use proxy connection?
1086Preferences.General:General
1087Preferences.General_Tooltip:Set some general preferences
1088Preferences.General.Email:User's Email:
1089Preferences.General.Email_Tooltip:The email address automatically used for any collection created with the GLI
1090Preferences.General.Font:Font:
1091Preferences.General.Font_Tooltip:The font used for the GLI interface.
1092Preferences.General.Interface_Language:Interface Language:
1093Preferences.General.Interface_Language_Tooltip:Select the language you wish the interface and its controls to be displayed in.
1094Preferences.General.Restart_Required:GLI will now restart in order to complete loading a new interface language.
1095Preferences.General.Manual_Restart_Required:Please restart the GLI client to take the changed connection settings into account.
1096Preferences.General.Show_File_Size:Show file sizes
1097Preferences.General.Show_File_Size_Tooltip:Show file sizes next to entries in the Workspace and Collection file trees.
1098Preferences.General.View_Extracted_Metadata:View Extracted Metadata
1099Preferences.General.View_Extracted_Metadata_Tooltip:Display metadata extracted by the greenstone plugins in the metadata list in the Enrich view.
1100Preferences.Mode:Mode
1101Preferences.Mode_Tooltip:Click on an entry to select a suitable level of operation
1102Preferences.Mode.Assistant:Library Assistant
1103Preferences.Mode.Assistant_Description:Use this setting to gain access to the basic features of the Greenstone Librarian Interface: adding documents and metadata to collections, creating new collections whose structure mirrors existing ones, and building collections.
1104Preferences.Mode.Librarian:Librarian
1105Preferences.Mode.Librarian_Description:This setting gives normal use of the Greenstone Librarian Interface: creating and designing new collections, adding documents and metadata to collections, and building collections.
1106Preferences.Mode.Expert:Expert
1107Preferences.Mode.Expert_Description:This setting enables expert use of the Greenstone Librarian Interface. It is recommended for users who are experienced with Greenstone, and are able to perform troubleshooting tasks that involve interpreting debugging output from PERL scripts. All features of the Greenstone Librarian Interface are enabled.
1108Preferences.Warnings:Warnings
1109Preferences.Warnings_Tooltip:Enable or disable various warning dialogs
1110Preferences.Workflow:Workflow
1111Preferences.Workflow_Tooltip:Design the interface workflow: set which views should be enabled
1112Preferences.Workflow.Predefined.Label:Predefined Workflows
1113Preferences.Workflow.Title:Check box to enable view
1114#**********************
1115#
1116#**** PreviewCommandDialog *******
1117PreviewCommandDialog.Instructions:Enter the command for opening the program to view collection preview. Remember to use %1 as the placeholder for the collection address, and to use speechmarks where necessary.
1118PreviewCommandDialog.Title:Preview Command
1119
1120ShowPreviousCollection.Title:Preview the collection previously built
1121ShowPreviousCollection.Message:An error has occurred and the collection could not be created.You are previewing the collection that was built previously.
1122#**********************
1123#
1124#***** Remote Greenstone Server *****
1125RemoteGreenstoneServer.Authentication_Message:Please enter your Greenstone username and password:
1126RemoteGreenstoneServer.Authentication_Message_gs3:Please enter your Greenstone username and password at site:
1127RemoteGreenstoneServer.Error:An error has occurred on the remote Greenstone server while performing this operation:\n{0-Error message}
1128RemoteGreenstoneServer.Error_Title:Remote Greenstone Server Error
1129RemoteGreenstoneServer.Progress:Remote Greenstone Server Progress:
1130RemoteGreenstoneServer.Steal_Lock_Message:This collection is currently locked by user '{0-User name}'.\nDo you want to steal control of this lock file (not recommended, as work may be lost)?
1131#**********************
1132#
1133#***** Rename Prompt *****
1134RenamePrompt.Name:Name:
1135RenamePrompt.Title:Rename file/folder
1136#**********************
1137#
1138#***** Replace Prompt *****
1139ReplacePrompt.Title:Replace file with ...
1140#**********************
1141#
1142#***** Save Collection Box *****
1143SaveCollectionBox.File_Name:File Name:
1144SaveCollectionBox.Files_Of_Type:Files of Type:
1145SaveCollectionBox.Look_In:Look In:
1146#**********************
1147#
1148#***** Save Progress Box *******
1149SaveProgressDialog.Title:Saving Collection
1150#*******************************
1151#
1152Server.QuitManual:The Librarian Interface was unable to close the local\nlibrary server automatically. Please exit the server\nmanually by clicking on the cross icon in its top\nright-hand corner, then click OK on this dialog.
1153Server.QuitTimeOut:The greenstone local library has not responded to the\nautomatic close command for {0} seconds. Do you\nwish to wait for another {0} seconds?
1154Server.StartUpTimeOut:The greenstone local library has not responded to the\nstart command for {0} seconds. Do you\nwish to wait for another {0} seconds?
1155Server.Reconfigure:You just changed collecthome.\nAs GLI didn't start your webserver, it can't reconfigure this automatically.\nPlease reconfigure your server manually to work with the change to collecthome.
1156#
1157#***** Sources *****
1158Source.General:General
1159#**********************
1160#
1161#***** Trees *****
1162Tree.DownloadedFiles:Downloaded Files
1163Tree.Files:files
1164Tree.Home:Home Folder ({0})
1165Tree.Root:Local Filespace
1166Tree.World:Documents in Greenstone Collections
1167#***********************
1168#
1169#***** Warning Dialog *****
1170WarningDialog.Dont_Show_Again:Do not show this warning again
1171WarningDialog.Dont_Show_Again_Message:Do not show this message again
1172WarningDialog.Invalid_Value:The value you have entered in the value field\nis not valid for the specified property.
1173WarningDialog.Value:Enter value:
1174#
1175#****** WGet *****
1176WGet.Prompt:WGet Mirroring Client
1177#
1178#****** Workflows *****
1179Workflow.AllPanels:All panels
1180Workflow.LocalSourceCollectionBuilding:Local source collection building
1181Workflow.DocumentEnriching:Document enriching
1182
1183
1184#********GEMS******
1185
1186GEMS.Title:Greenstone Editor for Metadata Sets
1187GEMS.OpenMetadataSetPrompt.Title:Open Metadata Set
1188GEMS.OpenMetadataSetPrompt.Open_Tooltip:Open the selected metadata set
1189GEMS.Set_Description:Metadata set description
1190GEMS.OpenMetadataSetPrompt.Open:Open
1191GEMS.OpenMetadataSetPrompt.Available_Sets:Available metadata sets
1192GEMS.DeleteMetadataSetPrompt.Title:Delete Metadata Set
1193GEMS.DeleteMetadataSetPrompt.Delete_Tooltip:Delete the selected metadata set
1194GEMS.DeleteMetadataSetPrompt.Delete:Delete
1195GEMS.DeleteMetadataSetPrompt.Available_Sets:Available metadata sets
1196GEMS.DeleteMetadataSetPrompt.Confirm_Delete:Please tick the box to confirm metadata set deletion.
1197GEMS.DeleteMetadataSetPrompt.No_Set:No metadata set selected
1198GEMS.Confirm_Removal:Are you sure you wish to remove this {0}?
1199GEMS.Confirm_Removal_Title:Confirm Removal
1200GEMS.Attribute:Attribute
1201GEMS.Popup.AddElement:Add Element
1202GEMS.Popup.DeleteElement:Delete Element
1203GEMS.Popup.AddSubElement:Add Subelement
1204GEMS.Popup.DeleteSubElement:Delete Subelement
1205GEMS.NewMetadataSetPrompt.Title:New Metadata Set
1206GEMS.NewMetadataSetPrompt.Instructions:To create a new metadata set fill out the fields below:
1207GEMS.NewMetadataSetPrompt.Base_MetadataSet:Base this metadata set on:
1208GEMS.NewMetadataSetPrompt.Metadata_Title:Metadata set title:
1209GEMS.NewMetadataSetPrompt.Metadata_Namespace:Metadata set namespace:
1210GEMS.NewMetadataSetPrompt.New_Metadata:-- New Metadata Set --
1211GEMS.NewMetadataSetPrompt.Title_Error_Message:A new metadata set must have a Title
1212GEMS.NewMetadataSetPrompt.Title_Error:No Title Specified
1213GEMS.NewMetadataSetPrompt.Namespace_Error_Message:A new metadata set must have a namespace
1214GEMS.NewMetadataSetPrompt.Namespace_Error:No Namespace Specified
1215GEMS.SelectedLanguage:Add attributes for language:
1216GEMS.Language:--Choose Language--
1217GEMS.LanguageDependent:Language dependent attributes
1218GEMS.Attribute_Table:Attributes
1219GEMS.Attribute_Deletion_Error:Attribute Deletion Error
1220GEMS.Attribute_Deletion_Error_Message:This attribute is required and cannot be deleted
1221GEMS.Add_Lang_Depend_Attr_Error:Attribute Addition Error
1222GEMS.Add_Lang_Depend_Attr_Error_Message:No "language-dependent" attribute is provided, please add this attribute.
1223GEMS.Attribute_Edition_Error:Attribute Edition Error
1224GEMS.Attribute_Edition_Error_Message:This attribute is required and cannot be empty
1225GEMS.Confirm_Save:This metadata set has been changed, would you like to save it?
1226GEMS.Confirm_Save_Title:Save Metadata Set
1227GEMS.Confirm_DeleteElement:Are you sure you wish to delete element {0}?
1228GEMS.Confirm_DeleteElement_Title:Delete Element
1229GEMS.File_Deletion_Error_Message:This file cannot be deleted
1230GEMS.File_Deletion_Error:File Deletion Error
1231GEMS.Namespace_Conflict_Message:Warning: this namespace has been used by another metadata set. Continue?
1232GEMS.Namespace_Conflict:Namespace Conflict
1233GEMS.Move_Up:Move Up
1234GEMS.Move_Down:Move Down
1235GEMS.Cannot_Undo:(this action cannot be undone)
1236
1237GEMS.AttributeTable.Name:Name
1238GEMS.AttributeTable.Language:Language
1239GEMS.AttributeTable.Value:Value
1240GEMS.NewMetadataElementNamePrompt.Title:New Element
1241GEMS.NewMetadataElementNamePrompt.Name:Please enter a name for the new element
1242GEMS.NewMetadataElementNamePrompt.SubTitle:New Subelement
1243GEMS.NewMetadataElementNamePrompt.SubName:Please enter a name for the new subelement
1244GEMS.NewMetadataElementNamePrompt.Name_Error_Message:An element with this name already exists.
1245GEMS.NewMetadataElementNamePrompt.Name_Error:Element Name Error
1246GEMS.NewMetadataElementNamePrompt.EmptyName_Error_Message:A new element must have a name.
1247
1248
1249GEMS.No_Set_Loaded:No metadata set is loaded. Please use File->New to create a new set, or File->Open to open an existing set.
Note: See TracBrowser for help on using the repository browser.