Rename 'Edit Object..' context menu back to 'Properties...'. #4734

This commit is contained in:
Aditya Toshniwal 2023-04-03 13:10:24 +05:30 committed by GitHub
parent 6c7116a20c
commit 6710969143
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -45,4 +45,4 @@ communicate. For detailed information about a specific error message, please see
the :ref:`Connection Error <connect_error>` help page.
To review or modify connection details, right-click on the name of the server,
and select *Edit Object...* from the context menu.
and select *Properties...* from the context menu.

View File

@ -64,7 +64,7 @@ following options (in alphabetical order):
+-----------------------------+--------------------------------------------------------------------------------------------------------------------------+
| *Drop Cascade* | Click to delete the currently selected object and all dependent objects from the server. |
+-----------------------------+--------------------------------------------------------------------------------------------------------------------------+
| *Edit Object...* | Click to review or modify the currently selected object's properties. |
| *Properties...* | Click to review or modify the currently selected object's properties. |
+-----------------------------+--------------------------------------------------------------------------------------------------------------------------+
| *Refresh* | Click to refresh the currently selected object. |
+-----------------------------+--------------------------------------------------------------------------------------------------------------------------+

View File

@ -63,7 +63,7 @@ following selections (options appear in alphabetical order):
+---------------------------+---------------------------------------------------------------------------------------------------------------------------+
| *Maintenance...* | Click to open the :ref:`Maintenance... <maintenance_dialog>` dialog to VACUUM, ANALYZE, REINDEX, or CLUSTER. |
+---------------------------+---------------------------------------------------------------------------------------------------------------------------+
| *Edit Object...* | Click to review or modify the currently selected object's properties. |
| *Properties...* | Click to review or modify the currently selected object's properties. |
+---------------------------+---------------------------------------------------------------------------------------------------------------------------+
| *Refresh...* | Click to refresh the currently selected object. |
+---------------------------+---------------------------------------------------------------------------------------------------------------------------+

View File

@ -123,7 +123,7 @@ define('pgadmin.browser.node', [
applies: ['object', 'context'],
callback: 'show_obj_properties',
priority: 999,
label: gettext('Edit Object...'),
label: gettext('Properties...'),
data: {
'action': 'edit',
},

View File

@ -40,7 +40,7 @@ class NavMenuLocators:
object_menu_css = "button[data-label='Object']"
edit_obj_css = "li[data-label='Edit Object...']"
edit_obj_css = "li[data-label='Properties...']"
backup_obj_css = "li[data-label='Backup...']"