diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index d42c7f208..3274e8289 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -478,6 +478,7 @@ This hierarchical structure is made of several parts: - ``Table`` - ``Title`` - ``Tooltip`` + - ``Hidden text`` - ``*`` for strings that are not tied to a specific component The detail part, which is optional and refers to the contents of the string itself, such as: diff --git a/front/src/views/admin/users/Base.vue b/front/src/views/admin/users/Base.vue index 41110fb3c..1c526d112 100644 --- a/front/src/views/admin/users/Base.vue +++ b/front/src/views/admin/users/Base.vue @@ -3,10 +3,10 @@ @@ -17,8 +17,8 @@ export default { computed: { labels() { return { - manageUsers: this.$gettext("Manage users"), - secondaryMenu: this.$gettext("Secondary menu") + manageUsers: this.$pgettext('Head/Admin/Title', 'Manage users'), + secondaryMenu: this.$pgettext('Menu/*/Hidden text','Secondary menu') } } }