Skip to content

Commit e17bb8f

Browse files
committed
fix: Locales
1 parent 8dbef83 commit e17bb8f

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

apps/locales/en_US/LC_MESSAGES/django.po

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8760,4 +8760,7 @@ msgid "Tag key already exists"
87608760
msgstr ""
87618761

87628762
msgid "Tag value already exists"
8763+
msgstr ""
8764+
8765+
msgid "Non-existent id"
87638766
msgstr ""

apps/locales/zh_CN/LC_MESSAGES/django.po

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8887,3 +8887,6 @@ msgstr "标签已存在"
88878887

88888888
msgid "Tag value already exists"
88898889
msgstr "标签值已存在"
8890+
8891+
msgid "Non-existent id"
8892+
msgstr "不存在的ID"

apps/locales/zh_Hant/LC_MESSAGES/django.po

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8887,3 +8887,6 @@ msgstr "標籤已存在"
88878887

88888888
msgid "Tag value already exists"
88898889
msgstr "標籤值已存在"
8890+
8891+
msgid "Non-existent id"
8892+
msgstr "不存在的ID"

apps/system_manage/serializers/user_resource_permission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def is_valid(self, *, auth_target_type=None, workspace_id=None, raise_exception=
7878
workspace_id, workspace_id, workspace_id])
7979
if illegal_target_id_list is not None and len(illegal_target_id_list) > 0:
8080
raise AppApiException(500,
81-
_('Non-existent id[') + str(illegal_target_id_list) + ']')
81+
_('Non-existent id')+'[' + str(illegal_target_id_list) + ']')
8282

8383

8484
m_map = {

0 commit comments

Comments
 (0)