diff --git a/chrome/content/zotero/preferences/preferences_export.jsx b/chrome/content/zotero/preferences/preferences_export.jsx index a6ac8cb581..cb9d73382a 100644 --- a/chrome/content/zotero/preferences/preferences_export.jsx +++ b/chrome/content/zotero/preferences/preferences_export.jsx @@ -206,12 +206,18 @@ Zotero_Preferences.Export = { var markdownOptions = document.getElementById('noteQuickCopy-markdown-options'); var htmlOptions = document.getElementById('noteQuickCopy-html-options'); + var markdownOptionsLabel = document.querySelector('#noteQuickCopy-markdown-options label'); + var htmlOptionsLabel = document.querySelector('#noteQuickCopy-html-options label'); var markdownIncludeAppLinks = document.getElementById("noteQuickCopy-markdown-includeAppLinks"); var htmlIncludeAppLinks = document.getElementById("noteQuickCopy-html-includeAppLinks"); - + + markdownOptionsLabel.value = Zotero.Utilities.Internal.stringWithColon("Markdown"); + htmlOptionsLabel.value = Zotero.Utilities.Internal.stringWithColon( + Zotero.getString('zotero.preferences.export.quickCopy.note.htmlOptions.label') + ); markdownIncludeAppLinks.label = Zotero.getString('exportOptions.includeAppLinks', Zotero.appName); htmlIncludeAppLinks.label = Zotero.getString('exportOptions.includeAppLinks', Zotero.appName); - + if (format.id == Zotero.Translators.TRANSLATOR_ID_MARKDOWN_AND_RICH_TEXT) { markdownOptions.hidden = false; htmlOptions.hidden = false; diff --git a/chrome/content/zotero/preferences/preferences_export.xul b/chrome/content/zotero/preferences/preferences_export.xul index 4c378d9eb2..827c010e86 100644 --- a/chrome/content/zotero/preferences/preferences_export.xul +++ b/chrome/content/zotero/preferences/preferences_export.xul @@ -79,7 +79,7 @@