Ability to translate the group name into other languages

Change-Id: Ie126ecae16f9944096b3359195c873c0ddfcef28
Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
This commit is contained in:
Ivan Anfimov
2025-08-25 01:55:31 +00:00
parent d1e5c76e50
commit c54eec75ba
2 changed files with 6 additions and 2 deletions

View File

@@ -12,6 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from django.utils.translation import gettext_lazy as _
PANEL_GROUP = 'rating'
PANEL_GROUP_NAME = 'Rating'
PANEL_GROUP_NAME = _('Rating')
PANEL_GROUP_DASHBOARD = 'admin'

View File

@@ -12,6 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from django.utils.translation import gettext_lazy as _
PANEL_GROUP = 'rating'
PANEL_GROUP_NAME = 'Rating'
PANEL_GROUP_NAME = _('Rating')
PANEL_GROUP_DASHBOARD = 'project'