Addresses ##726, Localize remaining hard-coded strings

More strings
This commit is contained in:
Dan Stillman 2007-08-22 23:32:27 +00:00
parent c48807bf6e
commit fe528a4ded
5 changed files with 13 additions and 8 deletions

View File

@ -12,7 +12,7 @@
<window
id="zotero-advanced-search-dialog"
title="Advanced Search"
title="&zotero.search.advancedSearch;"
orient="vertical"
persist="screenX screenY width height"
onload="ZoteroAdvancedSearch.onLoad()"

View File

@ -48,17 +48,15 @@ function onLoad()
if(ref.isNote())
{
noteEditor.note = ref;
document.title = "Edit Note";
document.title = Zotero.getString('noteEditor.editNote');
}
else
{
noteEditor.item = ref;
document.title = "Add Note";
}
}
else
{
document.title = "Add Note";
if(collectionID && collectionID != '' && collectionID != 'undefined')
noteEditor.collection = Zotero.Collections.get(collectionID);
}

View File

@ -228,19 +228,19 @@ To add a new preference:
<rows>
<row id="fulltext-stats-indexed">
<label value="Indexed:"/>
<label value="&zotero.preferences.search.indexStats.indexed;"/>
<label/>
</row>
<row id="fulltext-stats-partial">
<label value="Partial:"/>
<label value="&zotero.preferences.search.indexStats.partial;"/>
<label/>
</row>
<row id="fulltext-stats-unindexed">
<label value="Unindexed:"/>
<label value="&zotero.preferences.search.indexStats.unindexed;"/>
<label/>
</row>
<row id="fulltext-stats-words">
<label value="Words:"/>
<label value="&zotero.preferences.search.indexStats.words;"/>
<label/>
</row>
</rows>

View File

@ -37,6 +37,11 @@
<!ENTITY zotero.preferences.search.pdfIndexing "PDF Indexing">
<!ENTITY zotero.preferences.search.indexStats "Index Statistics">
<!ENTITY zotero.preferences.search.indexStats.indexed "Indexed:">
<!ENTITY zotero.preferences.search.indexStats.partial "Partial:">
<!ENTITY zotero.preferences.search.indexStats.unindexed "Unindexed:">
<!ENTITY zotero.preferences.search.indexStats.words "Words:">
<!ENTITY zotero.preferences.fulltext.textMaxLength "Maximum characters to index per file:">
<!ENTITY zotero.preferences.fulltext.pdfMaxPages "Maximum pages to index per file:">

View File

@ -1,3 +1,5 @@
<!ENTITY zotero.search.advancedSearch "Advanced Search">
<!ENTITY zotero.search.name "Name:">
<!ENTITY zotero.search.joinMode.prefix "Match">