mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-30 08:53:49 +00:00
19 lines
531 B
Python
19 lines
531 B
Python
"""
|
|
This file contains error messages from ccnet or seafile that will be translated.
|
|
"""
|
|
from django.utils.translation import ugettext as _
|
|
|
|
# create_group rpc
|
|
msg = _("The group has already created")
|
|
msg = _("Failed to create group")
|
|
|
|
# create_org_group rpc
|
|
msg = _("The group has already created in this org.")
|
|
msg = _("Failed to create org group.")
|
|
|
|
# group_add_member rpc
|
|
msg = _("Permission error: only group staff can add member")
|
|
msg = _("Group not exists")
|
|
msg = _("Group is full")
|
|
msg = _("Failed to add member to group")
|