diff --git a/chrome/content/zotero/about.xul b/chrome/content/zotero/about.xul
index adca886dda..7f06013e23 100644
--- a/chrome/content/zotero/about.xul
+++ b/chrome/content/zotero/about.xul
@@ -51,7 +51,7 @@
-
+
diff --git a/chrome/content/zotero/bindings/attachmentbox.xml b/chrome/content/zotero/bindings/attachmentbox.xml
index a2cedddc70..2d281aa159 100644
--- a/chrome/content/zotero/bindings/attachmentbox.xml
+++ b/chrome/content/zotero/bindings/attachmentbox.xml
@@ -214,7 +214,8 @@
// Access date
if (this.displayAccessed) {
- this._id("accessed-label").value = Zotero.getString('itemFields.accessDate')+":";
+ this._id("accessed-label").value = Zotero.getString('itemFields.accessDate')
+ + Zotero.getString('punctuation.colon');
this._id("accessed").value = Zotero.Date.sqlToDate(
this.item.getField('accessDate'), true
).toLocaleString();
@@ -233,12 +234,11 @@
if (this.item.attachmentLinkMode
!= Zotero.Attachments.LINK_MODE_LINKED_URL
&& this.displayFileName) {
- // TODO: localize
var fileName = this.item.getFilename();
if (fileName) {
- // TODO: localize
- this._id("fileName-label").value = "Filename:";
+ this._id("fileName-label").value = Zotero.getString('pane.item.attachments.filename')
+ + Zotero.getString('punctuation.colon');
this._id("fileName").value = fileName;
fileNameRow.hidden = false;
}
@@ -255,8 +255,8 @@
var pages = Zotero.Fulltext.getPages(this.item.id);
var pages = pages ? pages.total : null;
if (pages) {
- // TODO: localize colon
- this._id("pages-label").value = Zotero.getString('itemFields.pages') + ':';
+ this._id("pages-label").value = Zotero.getString('itemFields.pages')
+ + Zotero.getString('punctuation.colon');
this._id("pages").value = pages;
pagesRow.hidden = false;
}
@@ -269,7 +269,8 @@
}
if (this.displayDateModified) {
- this._id("dateModified-label").value = Zotero.getString('itemFields.dateModified')+':';
+ this._id("dateModified-label").value = Zotero.getString('itemFields.dateModified')
+ + Zotero.getString('punctuation.colon');
var mtime = this.item.attachmentModificationTime;
if (mtime) {
this._id("dateModified").value = new Date(mtime).toLocaleString();
@@ -476,7 +477,8 @@
str = 'general.yes';
break;
}
- this._id("index-status-label").value = Zotero.getString('fulltext.indexState.indexed') + ':';
+ this._id("index-status-label").value = Zotero.getString('fulltext.indexState.indexed')
+ + Zotero.getString('punctuation.colon');
indexStatus.value = Zotero.getString(str);
// Reindex button tooltip (string stored in zotero.properties)
diff --git a/chrome/content/zotero/bindings/merge.xml b/chrome/content/zotero/bindings/merge.xml
index b2dcdb3be1..ccc6af2e70 100644
--- a/chrome/content/zotero/bindings/merge.xml
+++ b/chrome/content/zotero/bindings/merge.xml
@@ -358,7 +358,7 @@
case 'attachment':
case 'note':
case 'storagefile':
- objbox.buttonCaption = 'Choose this version';
+ objbox.buttonCaption = Zotero.getString('sync.conflict.chooseThisVersion');
break;
}
@@ -478,7 +478,7 @@
-
+
diff --git a/chrome/content/zotero/bindings/noteeditor.xml b/chrome/content/zotero/bindings/noteeditor.xml
index b9377ad186..0f03bfc6e8 100644
--- a/chrome/content/zotero/bindings/noteeditor.xml
+++ b/chrome/content/zotero/bindings/noteeditor.xml
@@ -410,14 +410,14 @@
@@ -446,7 +446,8 @@
v = "[" + Zotero.getString('pane.item.noteEditor.clickHere') + "]";
}
- this.id('seeAlsoLabel').value = Zotero.getString('pane.item.related');
+ this.id('seeAlsoLabel').value = Zotero.getString('itemFields.related')
+ + Zotero.getString('punctuation.colon');
this.id('seeAlsoClick').value = v;
]]>