1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-11 14:13:56 +00:00
seahub/group/error_msg.py

25 lines
666 B
Python
Raw Normal View History

2012-09-07 08:14:36 +00:00
"""
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")
2012-10-19 02:33:54 +00:00
# group_remove_member rpc
msg = _("Only group staff can remove member")
msg = _("Group not exists")
msg = _("Can not remove myself")