PDF reader: Page label popup tweaks (#2267)

- Change text of context menu option
- Add header line above radio boxes
This commit is contained in:
Dan Stillman 2021-12-28 01:05:04 -05:00 committed by Dan Stillman
parent 2cd756b7ae
commit 4f8fccd598
3 changed files with 5 additions and 4 deletions

View file

@ -489,9 +489,9 @@ class ReaderInstance {
// Separator // Separator
popup.appendChild(this._window.document.createElement('menuseparator')); popup.appendChild(this._window.document.createElement('menuseparator'));
// Change page number // Change page number
if (data.enableChangePageNumber) { if (data.enableEditPageNumber) {
menuitem = this._window.document.createElement('menuitem'); menuitem = this._window.document.createElement('menuitem');
menuitem.setAttribute('label', Zotero.getString('pdfReader.changePageNumber')); menuitem.setAttribute('label', Zotero.getString('pdfReader.editPageNumber'));
menuitem.setAttribute('disabled', data.readOnly); menuitem.setAttribute('disabled', data.readOnly);
menuitem.addEventListener('command', () => { menuitem.addEventListener('command', () => {
this._postMessage({ this._postMessage({

View file

@ -1366,8 +1366,9 @@ pdfReader.promptTransferFromPDF.text = Annotations stored in the PDF file will b
pdfReader.promptTransferToPDF.title = Store Annotations in File pdfReader.promptTransferToPDF.title = Store Annotations in File
pdfReader.promptTransferToPDF.text = Annotations will be transferred to the PDF file and will no longer be editable in %S. pdfReader.promptTransferToPDF.text = Annotations will be transferred to the PDF file and will no longer be editable in %S.
pdfReader.promptPasswordProtected = The operation is not supported for password-protected PDF files. pdfReader.promptPasswordProtected = The operation is not supported for password-protected PDF files.
pdfReader.changePageNumber = Change Page Number… pdfReader.editPageNumber = Edit Page Number…
pdfReader.editHighlightedText = Edit Highlighted Text pdfReader.editHighlightedText = Edit Highlighted Text
pdfReader.pageNumberPopupHeader = Change page number for:
pdfReader.thisAnnotation = This annotation pdfReader.thisAnnotation = This annotation
pdfReader.selectedAnnotations = Selected annotations pdfReader.selectedAnnotations = Selected annotations
pdfReader.thisPage = This page pdfReader.thisPage = This page

@ -1 +1 @@
Subproject commit ad19758c589219ee1ee643c74ec895e11e3296be Subproject commit fcd6b5573ab5fcd60da7477661f935b5cfbd6b3e