diff --git a/fabfile/locale.py b/fabfile/locale.py index 576a9adfcf..97c1129d63 100644 --- a/fabfile/locale.py +++ b/fabfile/locale.py @@ -5,17 +5,17 @@ from fabric.api import local, task from fabric.colors import red, green @task -def make(default=True): +def make(default=True, lang='en'): """Update source language. """ - local('django-admin.py makemessages -l en -e py,html -i "thirdpart*" -i "docs*"') + local('django-admin.py makemessages -l %s -e py,html -i "thirdpart*" -i "docs*"' % lang) # some version of makemessages will produce "%%" in the string, replace that # to "%". - _inplace_change('locale/en/LC_MESSAGES/django.po', '%%s', '%s') - _inplace_change('locale/en/LC_MESSAGES/django.po', '%%(', '%(') + _inplace_change('locale/%s/LC_MESSAGES/django.po' % lang, '%%s', '%s') + _inplace_change('locale/%s/LC_MESSAGES/django.po' % lang, '%%(', '%(') - local('django-admin.py makemessages -l en -d djangojs -i "thirdpart" -i "node_modules" -i "media" -i "static/scripts/dist" -i "static/scripts/lib" -i "tests" -i "tools" -i "tagging" -i "static/scripts/i18n" --verbosity 2') + local('django-admin.py makemessages -l %s -d djangojs -i "thirdpart" -i "node_modules" -i "media" -i "static/scripts/dist" -i "static/scripts/lib" -i "tests" -i "tools" -i "tagging" -i "static/scripts/i18n" --verbosity 2' % lang) @task def push(): diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po index 78316841cf..99e296529d 100644 --- a/locale/en/LC_MESSAGES/django.po +++ b/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-21 11:36+0800\n" +"POT-Creation-Date: 2016-03-21 11:17+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,245 +17,79 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: seahub/forms.py:26 -msgid "A user with this email already exists." -msgstr "" - -#: seahub/forms.py:40 -msgid "The two passwords didn't match." -msgstr "" - -#: seahub/forms.py:49 seahub/group/forms.py:57 seahub/wiki/forms.py:16 -msgid "Name can't be empty" -msgstr "" - -#: seahub/forms.py:50 seahub/group/forms.py:58 seahub/wiki/forms.py:17 -msgid "Name is too long (maximum is 255 characters)" -msgstr "" - -#: seahub/forms.py:53 seahub/group/forms.py:61 seahub/wiki/forms.py:20 -msgid "Description can't be empty" -msgstr "" - -#: seahub/forms.py:54 seahub/group/forms.py:62 seahub/wiki/forms.py:21 -msgid "Description is too long (maximum is 100 characters)" -msgstr "" - -#: seahub/forms.py:64 seahub/forms.py:181 +#: seahub/api2/endpoints/group_members.py:91 #, python-format -msgid "Name %s is not valid" +msgid "User %s is already group member." msgstr "" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:812 -#: seahub/share/views.py:840 seahub/views/__init__.py:1321 -#: seahub/views/ajax.py:374 seahub/views/ajax.py:525 seahub/views/ajax.py:612 -#: seahub/views/ajax.py:773 seahub/views/ajax.py:990 seahub/views/ajax.py:1132 -#: seahub/views/ajax.py:1161 seahub/views/ajax.py:1322 -#: seahub/views/ajax.py:1405 seahub/views/ajax.py:1409 -#: seahub/views/ajax.py:1413 seahub/views/ajax.py:1779 -#: seahub/views/ajax.py:1803 seahub/views/ajax.py:1903 -#: seahub/views/ajax.py:2268 seahub/views/ajax.py:2325 -#: seahub/views/ajax.py:2466 seahub/views/ajax.py:2682 -#: seahub/views/file.py:1608 seahub/views/sysadmin.py:1784 -#: seahub/views/sysadmin.py:1802 -msgid "Argument missing" -msgstr "" - -#: seahub/forms.py:92 -msgid "Oldname is required" -msgstr "" - -#: seahub/forms.py:95 seahub/forms.py:116 -msgid "It's too long." -msgstr "" - -#: seahub/forms.py:96 seahub/forms.py:117 -msgid "It's required." -msgstr "" - -#: seahub/forms.py:103 seahub/forms.py:124 +#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 #, python-format -msgid "Name \"%s\" is not valid" +msgid "User %s is already a group member." msgstr "" -#: seahub/forms.py:135 -msgid "Repo id is required" +#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1276 +#: seahub/views/ajax.py:2527 +#, python-format +msgid "User %s not found in organization." msgstr "" -#: seahub/forms.py:136 -msgid "Username is required" -msgstr "" - -#: seahub/forms.py:137 seahub/share/models.py:69 -msgid "Password can't be empty" -msgstr "" - -#: seahub/forms.py:148 -msgid "Bad url format" -msgstr "" - -#: seahub/forms.py:153 seahub/templates/repo.html:659 -msgid "Wrong password" -msgstr "" - -#: seahub/forms.py:155 seahub/views/__init__.py:670 -#: seahub/views/__init__.py:1327 seahub/views/ajax.py:831 -#: seahub/views/ajax.py:865 seahub/views/ajax.py:908 seahub/views/ajax.py:951 -#: seahub/views/ajax.py:2725 seahub/views/sysadmin.py:2187 -msgid "Internal server error" -msgstr "" - -#: seahub/forms.py:157 -msgid "Decrypt library error" -msgstr "" - -#: seahub/forms.py:163 seahub/share/forms.py:19 seahub/share/forms.py:32 -msgid "Email is required" -msgstr "" - -#: seahub/forms.py:165 -msgid "Space quota can't be empty" -msgstr "" - -#: seahub/forms.py:166 -msgid "Space quota is too low (minimum value is 0)" -msgstr "" - -#: seahub/forms.py:168 -msgid "Share quota is too low (minimum value is 0)" -msgstr "" - -#: seahub/forms.py:174 -msgid "Library name is required" -msgstr "" - -#: seahub/forms.py:176 -msgid "Please enter a number" -msgstr "" - -#: seahub/settings.py:142 -msgid "català" -msgstr "" - -#: seahub/settings.py:143 -msgid "Deutsch" -msgstr "" - -#: seahub/settings.py:144 -msgid "English" -msgstr "" - -#: seahub/settings.py:145 -msgid "Español" -msgstr "" - -#: seahub/settings.py:146 -msgid "Español de Argentina" -msgstr "" - -#: seahub/settings.py:147 -msgid "Español de México" -msgstr "" - -#: seahub/settings.py:148 -msgid "français" -msgstr "" - -#: seahub/settings.py:149 -msgid "עברית" -msgstr "" - -#: seahub/settings.py:150 -msgid "Magyar" -msgstr "" - -#: seahub/settings.py:151 -msgid "Íslenska" -msgstr "" - -#: seahub/settings.py:152 -msgid "Italiano" -msgstr "" - -#: seahub/settings.py:153 -msgid "日本語" -msgstr "" - -#: seahub/settings.py:154 -msgid "한국어" -msgstr "" - -#: seahub/settings.py:155 -msgid "Latvian" -msgstr "" - -#: seahub/settings.py:156 -msgid "Nederlands" -msgstr "" - -#: seahub/settings.py:157 -msgid "Polski" -msgstr "" - -#: seahub/settings.py:158 -msgid "Portuguese, Brazil" -msgstr "" - -#: seahub/settings.py:159 -msgid "Русский" -msgstr "" - -#: seahub/settings.py:160 -msgid "Slovak" -msgstr "" - -#: seahub/settings.py:161 -msgid "Slovenian" -msgstr "" - -#: seahub/settings.py:162 -msgid "Svenska" -msgstr "" - -#: seahub/settings.py:163 -msgid "ไทย" -msgstr "" - -#: seahub/settings.py:164 -msgid "Türkçe" -msgstr "" - -#: seahub/settings.py:165 -msgid "українська мова" -msgstr "" - -#: seahub/settings.py:166 -msgid "简体中文" -msgstr "" - -#: seahub/settings.py:167 -msgid "繁體中文" -msgstr "" - -#: seahub/api2/endpoints/groups.py:123 seahub/group/views.py:166 -msgid "You do not have permission to create group." -msgstr "" - -#: seahub/api2/endpoints/groups.py:132 seahub/group/forms.py:37 +#: seahub/api2/endpoints/groups.py:148 seahub/api2/endpoints/groups.py:224 +#: seahub/group/forms.py:37 msgid "" "Group name can only contain letters, numbers, blank, hyphen or underscore" msgstr "" -#: seahub/api2/endpoints/groups.py:137 seahub/group/views.py:195 -#: seahub/group/views.py:316 +#: seahub/api2/endpoints/groups.py:153 seahub/api2/endpoints/groups.py:229 +#: seahub/group/views.py:195 msgid "There is already a group with that name." msgstr "" -#: seahub/api2/endpoints/groups.py:152 seahub/group/views.py:779 -#: seahub/templates/view_file_base.html:166 seahub/views/ajax.py:1542 -#: seahub/views/ajax.py:2577 seahub/views/sysadmin.py:354 -#: seahub/views/sysadmin.py:372 seahub/views/sysadmin.py:395 -msgid "Failed" +#: seahub/api2/endpoints/groups.py:254 +#, python-format +msgid "User %s is already group owner." +msgstr "" + +#: seahub/api2/endpoints/send_share_link_email.py:30 +#: seahub/api2/endpoints/send_upload_link_email.py:29 +#: seahub/share/views.py:742 +msgid "" +"Sending shared link failed. Email service is not properly configured, please " +"contact administrator." +msgstr "" + +#: seahub/api2/endpoints/send_share_link_email.py:95 seahub/share/views.py:788 +msgid "file" +msgstr "" + +#: seahub/api2/endpoints/send_share_link_email.py:96 seahub/share/views.py:789 +#, python-format +msgid "A file is shared to you on %s" +msgstr "" + +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:795 +msgid "directory" +msgstr "" + +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:796 +#, python-format +msgid "A directory is shared to you on %s" +msgstr "" + +#: seahub/api2/endpoints/send_upload_link_email.py:89 +#: seahub/share/views.py:1013 +#, python-format +msgid "An upload link is shared to you on %s" +msgstr "" + +#: seahub/api2/endpoints/share_links.py:165 +msgid "Password is too short." +msgstr "" + +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:1074 +#: seahub/share/views.py:1157 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/templates/snippets/shared_link_js.html:257 +#: seahub/templates/snippets/shared_link_js.html:433 +msgid "Password is too short" msgstr "" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 @@ -264,11 +98,7 @@ msgid "File Collaboration Team Organization" msgstr "" #: seahub/api2/templates/api2/discussion.html:6 -#: seahub/group/templates/group/group_base.html:24 -#: seahub/group/templates/group/group_info.html:40 -#: seahub/templates/base.html:190 seahub/templates/repo.html:222 -#: seahub/templates/js/templates.html:109 -#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:718 msgid "Discussion" msgstr "" @@ -276,8 +106,6 @@ msgstr "" #: seahub/api2/templates/api2/discussion.html:42 #: seahub/api2/templates/api2/discussion_posted.html:19 #: seahub/api2/templates/api2/discussion_posted.html:35 -#: seahub/api2/templates/api2/discussions_body.html:21 -#: seahub/api2/templates/api2/discussions_body.html:37 #: seahub/api2/templates/api2/new_msg_reply.html:27 #: seahub/api2/templates/api2/new_msg_reply.html:43 #: seahub/api2/templates/api2/user_msg_body.html:20 @@ -287,45 +115,34 @@ msgstr "" #: seahub/message/templates/message/user_msg.html:17 #: seahub/message/templates/message/user_msg_list.html:64 #: seahub/share/templates/share/links.html:29 -#: seahub/share/templates/share/priv_shared_files.html:68 +#: seahub/templates/js/templates.html:1206 #: seahub/templates/repo_history_view.html:73 -#: seahub/templates/repo_shared_link.html:78 -#: seahub/templates/view_shared_dir.html:72 -#: seahub/templates/view_shared_dir.html:74 -#: seahub/templates/view_shared_dir.html:77 -#: seahub/templates/snippets/group_recommend_form.html:28 -#: seahub/templates/snippets/repo_dir_trash_tr.html:27 -#: seahub/templates/snippets/repo_dirents.html:59 -#: seahub/templates/sysadmin/admin_repo_view.html:58 -#: seahub/templates/sysadmin/userinfo.html:174 +#: seahub/templates/snippets/repo_dir_trash_tr.html:21 +#: seahub/templates/sysadmin/admin_repo_view.html:75 +#: seahub/templates/sysadmin/userinfo.html:170 +#: seahub/templates/view_shared_dir.html:80 +#: seahub/templates/view_shared_dir.html:82 +#: seahub/templates/view_shared_dir.html:85 msgid "File" msgstr "" #: seahub/api2/templates/api2/discussion.html:36 #: seahub/api2/templates/api2/discussion_posted.html:29 -#: seahub/api2/templates/api2/discussions_body.html:31 #: seahub/api2/templates/api2/new_msg_reply.html:37 #: seahub/group/templates/group/group_discuss.html:68 #: seahub/group/templates/group/new_msg_reply.html:30 #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/share/templates/share/priv_shared_files.html:71 -#: seahub/templates/repo_shared_link.html:47 -#: seahub/templates/repo_shared_link.html:74 -#: seahub/templates/view_shared_dir.html:52 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:216 -#: seahub/templates/snippets/group_recommend_form.html:22 -#: seahub/templates/snippets/repo_dirents.html:9 -#: seahub/templates/snippets/repo_dirents.html:11 -#: seahub/templates/sysadmin/admin_repo_view.html:42 -#: seahub/templates/sysadmin/userinfo.html:178 -#: seahub/templates/sysadmin/userinfo.html:188 +#: seahub/templates/js/templates.html:193 +#: seahub/templates/js/templates.html:1203 +#: seahub/templates/sysadmin/admin_repo_view.html:50 +#: seahub/templates/sysadmin/userinfo.html:174 +#: seahub/templates/sysadmin/userinfo.html:184 +#: seahub/templates/view_shared_dir.html:60 msgid "Directory icon" msgstr "" #: seahub/api2/templates/api2/discussion_posted.html:46 -#: seahub/api2/templates/api2/discussions_body.html:48 #: seahub/group/templates/group/discussion_list.html:17 #: seahub/group/templates/group/group_discuss.html:85 #: seahub/group/templates/group/group_discuss.html:160 @@ -334,55 +151,6 @@ msgstr "" msgid "%(amount)s replies" msgstr "" -#: seahub/api2/templates/api2/discussions.html:24 -msgid "No discussions." -msgstr "" - -#: seahub/api2/templates/api2/discussions.html:29 -#: seahub/api2/templates/api2/events.html:13 -#: seahub/api2/templates/api2/user_msg_list.html:25 -#: seahub/group/templates/group/group_info.html:96 -#: seahub/templates/activities.html:13 -#: seahub/templates/view_shared_dir.html:163 -msgid "Loading..." -msgstr "" - -#: seahub/api2/templates/api2/discussions.html:75 -#: seahub/api2/templates/api2/events_js.html:34 -#: seahub/api2/templates/api2/user_msg_list.html:72 -#: seahub/contacts/templates/contacts/contact_list.html:101 -#: seahub/contacts/templates/contacts/contact_list.html:146 -#: seahub/group/templates/group/group_discuss.html:254 -#: seahub/group/templates/group/group_manage.html:225 -#: seahub/group/templates/group/msg_js.html:155 -#: seahub/message/templates/message/all_msg_list.html:202 -#: seahub/message/templates/message/user_msg_list.html:179 -#: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:155 seahub/templates/file_edit.html:441 -#: seahub/templates/repo.html:600 seahub/templates/repo.html.py:1009 -#: seahub/templates/repo.html:1067 seahub/templates/repo.html.py:1891 -#: seahub/templates/repo.html:2115 seahub/templates/repo.html.py:2140 -#: seahub/templates/repo.html:2185 seahub/templates/repo.html.py:2290 -#: seahub/templates/repo.html:2363 seahub/templates/repo_basic_info.html:101 -#: seahub/templates/repo_change_password.html:101 -#: seahub/templates/repo_dir_recycle_view.html:121 -#: seahub/templates/repo_transfer_owner.html:86 -#: seahub/templates/snippets/add_file_js.html:23 -#: seahub/templates/snippets/bottom_bar.html:135 -#: seahub/templates/snippets/events_js.html:56 -#: seahub/templates/snippets/office_convert_js.html:96 -#: seahub/templates/snippets/repo_decrypt_js.html:35 -#: seahub/templates/snippets/shared_link_js.html:224 -#: seahub/templates/snippets/shared_link_js.html:404 -#: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/settings.html:182 -#: seahub/templates/sysadmin/sys_org_admin.html:126 -#: seahub/templates/sysadmin/sys_org_set_quota_js.html:35 -#: seahub/templates/sysadmin/sys_useradmin.html:194 -#: seahub/templates/sysadmin/userinfo.html:301 -msgid "Failed. Please check the network." -msgstr "" - #: seahub/api2/templates/api2/event_details.html:8 #: seahub/api2/templates/api2/event_details.html:40 #, python-format @@ -405,22 +173,50 @@ msgstr "" msgid "Modified %(file)s" msgstr "" +#: seahub/api2/templates/api2/events.html:13 +#: seahub/templates/view_shared_dir.html:171 +msgid "Loading..." +msgstr "" + #: seahub/api2/templates/api2/events.html:19 msgid "No activity now or the function is not supported." msgstr "" #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:867 -#: seahub/templates/snippets/events_body.html:29 +#: seahub/templates/js/templates.html:927 msgid "Created library" msgstr "" #: seahub/api2/templates/api2/events_body.html:21 -#: seahub/templates/snippets/events_body.html:33 #, python-format msgid "Deleted library %(library_name)s" msgstr "" +#: seahub/api2/templates/api2/events_js.html:34 +#: seahub/contacts/templates/contacts/contact_list.html:101 +#: seahub/contacts/templates/contacts/contact_list.html:146 +#: seahub/group/templates/group/group_discuss.html:254 +#: seahub/group/templates/group/msg_js.html:155 +#: seahub/message/templates/message/all_msg_list.html:202 +#: seahub/message/templates/message/user_msg_list.html:179 +#: seahub/notifications/templates/notifications/user_notification_list.html:92 +#: seahub/templates/base.html:160 seahub/templates/file_edit.html:441 +#: seahub/templates/repo_dir_recycle_view.html:121 +#: seahub/templates/snippets/add_file_js.html:23 +#: seahub/templates/snippets/office_convert_js.html:96 +#: seahub/templates/snippets/repo_decrypt_js.html:35 +#: seahub/templates/snippets/shared_link_js.html:227 +#: seahub/templates/snippets/shared_link_js.html:407 +#: seahub/templates/snippets/spreadsheet_convert_js.html:39 +#: seahub/templates/sysadmin/admin_repo_view.html:330 +#: seahub/templates/sysadmin/settings.html:188 +#: seahub/templates/sysadmin/sys_org_admin.html:126 +#: seahub/templates/sysadmin/sys_org_set_quota_js.html:35 +#: seahub/templates/sysadmin/sys_useradmin.html:194 +#: seahub/templates/sysadmin/userinfo.html:288 +msgid "Failed. Please check the network." +msgstr "" + #: seahub/api2/templates/api2/events_js.html:83 #: seahub/message/templates/message/all_msg_list.html:118 msgid "Please check the network." @@ -430,23 +226,6 @@ msgstr "" msgid "New Replies" msgstr "" -#: seahub/api2/templates/api2/user_msg_list.html:6 -#: seahub/message/templates/message/all_msg_list.html:4 -#: seahub/message/templates/message/all_msg_list.html:16 -#: seahub/message/templates/message/user_msg_list.html:4 -msgid "Messages" -msgstr "" - -#: seahub/api2/templates/api2/user_msg_list.html:10 -#: seahub/message/templates/message/user_msg_list.html:9 -#, python-format -msgid "Messages with %(name)s" -msgstr "" - -#: seahub/api2/templates/api2/user_msg_list.html:19 -msgid "No messages." -msgstr "" - #: seahub/auth/admin.py:29 msgid "Personal info" msgstr "" @@ -459,17 +238,22 @@ msgstr "" msgid "Important dates" msgstr "" -#: seahub/auth/admin.py:32 seahub/templates/base_for_backbone.html:58 -#: seahub/templates/base_for_backbone.html:62 -#: seahub/templates/myhome_base.html:9 seahub/templates/repo.html:230 +#: seahub/auth/admin.py:32 +#: seahub/institutions/templates/institutions/info.html:23 +#: seahub/institutions/templates/institutions/user_info.html:46 +#: seahub/templates/home_base.html:24 seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:618 +#: seahub/templates/js/templates.html:635 +#: seahub/templates/js/templates.html:638 +#: seahub/templates/js/templates.html:706 #: seahub/templates/snippets/repo_share_form.html:7 #: seahub/templates/sysadmin/base.html:21 #: seahub/templates/sysadmin/sys_info.html:40 #: seahub/templates/sysadmin/sys_org_info_group.html:9 #: seahub/templates/sysadmin/sys_org_info_library.html:9 #: seahub/templates/sysadmin/sys_org_info_setting.html:9 -#: seahub/templates/sysadmin/sys_org_info_user.html:9 -#: seahub/templates/sysadmin/userinfo.html:74 +#: seahub/templates/sysadmin/sys_org_info_user.html:8 +#: seahub/templates/sysadmin/userinfo.html:64 msgid "Groups" msgstr "" @@ -491,10 +275,10 @@ msgid "Email or Username" msgstr "" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:106 +#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:399 -#: seahub/templates/js/templates.html:454 +#: seahub/templates/js/templates.html:443 +#: seahub/templates/js/templates.html:498 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:24 @@ -572,23 +356,23 @@ msgstr "" msgid "Password (again)" msgstr "" -#: seahub/auth/views.py:253 -msgid "Logged out" -msgstr "" - -#: seahub/auth/views.py:301 -msgid "Failed to send email, please contact administrator." -msgstr "" - -#: seahub/auth/views.py:362 -msgid "Can not update password, please contact LDAP admin." -msgstr "" - #: seahub/auth/management/commands/createsuperuser.py:24 #: seahub/base/management/commands/createsuperuser.py:25 msgid "Enter a valid e-mail address." msgstr "" +#: seahub/auth/views.py:264 +msgid "Logged out" +msgstr "" + +#: seahub/auth/views.py:312 +msgid "Failed to send email, please contact administrator." +msgstr "" + +#: seahub/auth/views.py:373 +msgid "Can not update password, please contact LDAP admin." +msgstr "" + #: seahub/avatar/forms.py:34 seahub/avatar/forms.py:57 #, python-format msgid "" @@ -615,22 +399,6 @@ msgstr "" msgid "Avatar for %s" msgstr "" -#: seahub/avatar/views.py:78 -msgid "Successfully uploaded a new avatar." -msgstr "" - -#: seahub/avatar/views.py:128 -msgid "Successfully uploaded a new group avatar." -msgstr "" - -#: seahub/avatar/views.py:166 -msgid "Successfully updated your avatar." -msgstr "" - -#: seahub/avatar/views.py:208 -msgid "Successfully deleted the requested avatars." -msgstr "" - #: seahub/avatar/templates/avatar/add.html:6 msgid "Upload Avatar" msgstr "" @@ -677,17 +445,10 @@ msgstr "" #: seahub/contacts/templates/contacts/contact_list.html:49 #: seahub/contacts/templates/contacts/contact_list.html:58 #: seahub/group/templates/group/discussion_list.html:42 -#: seahub/group/templates/group/group_base.html:63 #: seahub/group/templates/group/group_discuss.html:17 #: seahub/group/templates/group/group_discuss.html:29 #: seahub/group/templates/group/group_discuss.html:112 #: seahub/group/templates/group/group_discuss.html:168 -#: seahub/group/templates/group/group_info.html:22 -#: seahub/group/templates/group/group_manage.html:108 -#: seahub/group/templates/group/group_manage.html:115 -#: seahub/group/templates/group/group_manage.html:122 -#: seahub/group/templates/group/group_manage.html:129 -#: seahub/group/templates/group/group_manage.html:136 #: seahub/group/templates/group/group_wiki.html:51 #: seahub/group/templates/group/group_wiki.html:61 #: seahub/group/templates/group/group_wiki.html:94 @@ -699,56 +460,57 @@ msgstr "" #: seahub/message/templates/message/user_msg_list.html:33 #: seahub/notifications/templates/notifications/notification_list.html:14 #: seahub/options/templates/options/set_user_options.html:14 -#: seahub/profile/templates/profile/set_profile.html:80 -#: seahub/profile/templates/profile/set_profile.html:107 -#: seahub/profile/templates/profile/set_profile.html:119 -#: seahub/profile/templates/profile/set_profile.html:152 -#: seahub/templates/activities.html:25 +#: seahub/profile/templates/profile/set_profile.html:74 +#: seahub/profile/templates/profile/set_profile.html:101 +#: seahub/profile/templates/profile/set_profile.html:113 +#: seahub/profile/templates/profile/set_profile.html:146 #: seahub/templates/decrypt_repo_form.html:13 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 -#: seahub/templates/file_edit.html:326 seahub/templates/home_base.html:54 -#: seahub/templates/libraries.html:155 seahub/templates/libraries.html:233 -#: seahub/templates/repo.html:69 seahub/templates/repo.html.py:103 -#: seahub/templates/repo.html:136 seahub/templates/repo.html.py:160 -#: seahub/templates/repo.html:181 seahub/templates/repo.html.py:197 -#: seahub/templates/repo.html:212 seahub/templates/repo_basic_info.html:44 -#: seahub/templates/repo_change_password.html:40 -#: seahub/templates/repo_dir_recycle_view.html:62 -#: seahub/templates/repo_folder_perm.html:64 -#: seahub/templates/repo_folder_perm.html:119 -#: seahub/templates/repo_folder_perm.html:154 -#: seahub/templates/repo_share_manage.html:128 -#: seahub/templates/repo_transfer_owner.html:40 -#: seahub/templates/share_access_validation.html:14 -#: seahub/templates/shared_file_view.html:62 +#: seahub/templates/file_edit.html:326 seahub/templates/home_base.html:84 #: seahub/templates/js/lib-op-popups.html:9 #: seahub/templates/js/lib-op-popups.html:29 #: seahub/templates/js/lib-op-popups.html:37 -#: seahub/templates/js/lib-op-popups.html:65 -#: seahub/templates/js/lib-op-popups.html:107 +#: seahub/templates/js/lib-op-popups.html:47 +#: seahub/templates/js/lib-op-popups.html:76 +#: seahub/templates/js/lib-op-popups.html:118 +#: seahub/templates/js/lib-op-popups.html:145 #: seahub/templates/js/templates.html:28 -#: seahub/templates/js/templates.html:436 -#: seahub/templates/js/templates.html:476 -#: seahub/templates/js/templates.html:506 -#: seahub/templates/js/templates.html:529 -#: seahub/templates/js/templates.html:628 -#: seahub/templates/js/templates.html:682 -#: seahub/templates/js/templates.html:745 -#: seahub/templates/js/templates.html:767 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/registration/password_change_form.html:21 +#: seahub/templates/js/templates.html:480 +#: seahub/templates/js/templates.html:520 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:573 +#: seahub/templates/js/templates.html:702 +#: seahub/templates/js/templates.html:741 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:826 +#: seahub/templates/js/templates.html:881 +#: seahub/templates/js/templates.html:1028 +#: seahub/templates/js/templates.html:1037 +#: seahub/templates/js/templates.html:1045 +#: seahub/templates/js/templates.html:1148 +#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1262 +#: seahub/templates/js/templates.html:1275 +#: seahub/templates/js/templates.html:1308 +#: seahub/templates/js/templates.html:1321 +#: seahub/templates/js/templates.html:1372 seahub/templates/libraries.html:207 +#: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 #: seahub/templates/registration/password_reset_form.html:13 +#: seahub/templates/repo_dir_recycle_view.html:62 +#: seahub/templates/share_access_validation.html:14 +#: seahub/templates/shared_file_view.html:62 #: seahub/templates/snippets/file_share_popup.html:54 #: seahub/templates/snippets/file_share_popup.html:90 -#: seahub/templates/snippets/group_recommend_form.html:19 #: seahub/templates/snippets/repo_create_form.html:26 #: seahub/templates/snippets/repo_share_form.html:30 -#: seahub/templates/snippets/search_form.html:57 +#: seahub/templates/snippets/search_form.html:56 #: seahub/templates/snippets/web_settings_form.html:12 +#: seahub/templates/sysadmin/admin_repo_view.html:109 #: seahub/templates/sysadmin/repo_transfer_form.html:8 +#: seahub/templates/sysadmin/sys_inst_admin.html:21 #: seahub/templates/sysadmin/sys_org_admin.html:38 -#: seahub/templates/sysadmin/sys_org_info_base.html:37 +#: seahub/templates/sysadmin/sys_org_info_base.html:36 #: seahub/templates/sysadmin/sys_org_info_setting.html:20 #: seahub/templates/sysadmin/sys_org_info_setting.html:29 #: seahub/templates/sysadmin/sys_org_search.html:12 @@ -757,7 +519,7 @@ msgstr "" #: seahub/templates/sysadmin/sys_useradmin.html:59 #: seahub/templates/sysadmin/sys_useradmin_admins.html:37 #: seahub/templates/sysadmin/user_search.html:11 -#: seahub/templates/sysadmin/userinfo.html:63 +#: seahub/templates/sysadmin/userinfo.html:53 #: seahub/templates/wiki/personal_wiki.html:46 #: seahub/templates/wiki/personal_wiki.html:56 #: seahub/templates/wiki/personal_wiki.html:86 @@ -777,6 +539,22 @@ msgstr "" msgid "You have updated your avatar %(avatar)s." msgstr "" +#: seahub/avatar/views.py:78 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: seahub/avatar/views.py:128 +msgid "Successfully uploaded a new group avatar." +msgstr "" + +#: seahub/avatar/views.py:166 +msgid "Successfully updated your avatar." +msgstr "" + +#: seahub/avatar/views.py:208 +msgid "Successfully deleted the requested avatars." +msgstr "" + #: seahub/base/accounts.py:493 msgid "Email address" msgstr "" @@ -821,201 +599,438 @@ msgstr "" msgid "Files in this library can not be viewed online." msgstr "" -#: seahub/base/templatetags/seahub_tags.py:138 +#: seahub/base/templatetags/seahub_tags.py:140 msgid "Added" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:139 +#: seahub/base/templatetags/seahub_tags.py:141 msgid "Deleted" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:140 +#: seahub/base/templatetags/seahub_tags.py:142 msgid "Removed" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:141 +#: seahub/base/templatetags/seahub_tags.py:143 msgid "Modified" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:142 +#: seahub/base/templatetags/seahub_tags.py:144 msgid "Renamed" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:143 +#: seahub/base/templatetags/seahub_tags.py:145 msgid "Moved" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:144 +#: seahub/base/templatetags/seahub_tags.py:146 msgid "Added directory" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:145 +#: seahub/base/templatetags/seahub_tags.py:147 msgid "Removed directory" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:146 +#: seahub/base/templatetags/seahub_tags.py:148 msgid "Renamed directory" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:147 +#: seahub/base/templatetags/seahub_tags.py:149 msgid "Moved directory" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:148 +#: seahub/base/templatetags/seahub_tags.py:150 msgid "Added or modified" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:163 -#: seahub/base/templatetags/seahub_tags.py:232 +#: seahub/base/templatetags/seahub_tags.py:165 +#: seahub/base/templatetags/seahub_tags.py:234 msgid "Reverted library to status at" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:166 -#: seahub/base/templatetags/seahub_tags.py:235 +#: seahub/base/templatetags/seahub_tags.py:168 +#: seahub/base/templatetags/seahub_tags.py:237 #, python-format msgid "Reverted file \"%(file)s\" to status at %(time)s." msgstr "" -#: seahub/base/templatetags/seahub_tags.py:170 -#: seahub/base/templatetags/seahub_tags.py:239 +#: seahub/base/templatetags/seahub_tags.py:172 +#: seahub/base/templatetags/seahub_tags.py:241 msgid "Recovered deleted directory" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:172 -#: seahub/base/templatetags/seahub_tags.py:241 seahub/views/ajax.py:1916 +#: seahub/base/templatetags/seahub_tags.py:174 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 msgid "Changed library name or description" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 +#: seahub/base/templatetags/seahub_tags.py:176 +#: seahub/base/templatetags/seahub_tags.py:245 msgid "Auto merge by seafile system" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:318 -#: seahub/base/templatetags/seahub_tags.py:354 +#: seahub/base/templatetags/seahub_tags.py:320 +#: seahub/base/templatetags/seahub_tags.py:356 #: seahub/group/templates/group/group_discuss.html:154 -#: seahub/templates/repo.html:268 seahub/templates/repo.html.py:454 -#: seahub/templates/repo.html:472 seahub/templates/repo.html.py:1995 msgid "Just now" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:329 +#: seahub/base/templatetags/seahub_tags.py:331 #, python-format msgid "%(days)d day ago" msgid_plural "%(days)d days ago" msgstr[0] "" msgstr[1] "" -#: seahub/base/templatetags/seahub_tags.py:336 +#: seahub/base/templatetags/seahub_tags.py:338 #, python-format msgid "%(hours)d hour ago" msgid_plural "%(hours)d hours ago" msgstr[0] "" msgstr[1] "" -#: seahub/base/templatetags/seahub_tags.py:343 +#: seahub/base/templatetags/seahub_tags.py:345 #, python-format msgid "%(minutes)d minute ago" msgid_plural "%(minutes)d minutes ago" msgstr[0] "" msgstr[1] "" -#: seahub/base/templatetags/seahub_tags.py:349 +#: seahub/base/templatetags/seahub_tags.py:351 #, python-format msgid "%(seconds)d second ago" msgid_plural "%(seconds)d seconds ago" msgstr[0] "" msgstr[1] "" -#: seahub/base/templatetags/seahub_tags.py:451 -#: seahub/group/templates/group/group_info_for_pub.html:24 -#: seahub/share/views.py:518 seahub/share/views.py:615 +#: seahub/base/templatetags/seahub_tags.py:457 +#: seahub/institutions/templates/institutions/user_info.html:66 #: seahub/share/templates/share/list_priv_shared_folders.html:22 #: seahub/share/templates/share/list_priv_shared_folders.html:35 #: seahub/share/templates/share/repos.html:23 #: seahub/share/templates/share/repos.html:25 -#: seahub/share/templates/share/repos.html:39 -#: seahub/templates/my_group_repos.html:25 -#: seahub/templates/my_group_repos.html:28 -#: seahub/templates/repo_folder_perm.html:59 -#: seahub/templates/repo_folder_perm.html:75 -#: seahub/templates/repo_folder_perm.html:82 -#: seahub/templates/repo_folder_perm.html:114 -#: seahub/templates/repo_folder_perm.html:130 -#: seahub/templates/repo_folder_perm.html:137 -#: seahub/templates/repo_share_manage.html:60 -#: seahub/templates/repo_share_manage.html:67 -#: seahub/templates/repo_share_manage.html:93 -#: seahub/templates/repo_share_manage.html:100 -#: seahub/templates/repo_share_manage.html:124 -#: seahub/templates/js/templates.html:10 seahub/templates/js/templates.html:36 -#: seahub/templates/js/templates.html:59 seahub/templates/js/templates.html:83 -#: seahub/templates/js/templates.html:502 -#: seahub/templates/js/templates.html:525 -#: seahub/templates/js/templates.html:543 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:473 +#: seahub/share/views.py:570 seahub/templates/js/templates.html:10 #: seahub/templates/js/templates.html:546 -#: seahub/templates/js/templates.html:563 -#: seahub/templates/js/templates.html:565 -#: seahub/templates/js/templates.html:699 -#: seahub/templates/js/templates.html:708 -#: seahub/templates/js/templates.html:711 -#: seahub/templates/js/templates.html:741 -#: seahub/templates/js/templates.html:763 -#: seahub/templates/js/templates.html:831 -#: seahub/templates/js/templates.html:838 +#: seahub/templates/js/templates.html:569 +#: seahub/templates/js/templates.html:758 +#: seahub/templates/js/templates.html:767 +#: seahub/templates/js/templates.html:770 +#: seahub/templates/js/templates.html:800 +#: seahub/templates/js/templates.html:822 +#: seahub/templates/js/templates.html:891 +#: seahub/templates/js/templates.html:898 +#: seahub/templates/js/templates.html:1257 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1342 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1352 #: seahub/templates/snippets/repo_create_form.html:11 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 #: seahub/templates/sysadmin/sys_org_info_library.html:29 #: seahub/templates/sysadmin/sys_repo_trash.html:35 -#: seahub/templates/sysadmin/userinfo.html:94 -#: seahub/templates/sysadmin/userinfo.html:139 +#: seahub/templates/sysadmin/userinfo.html:84 +#: seahub/templates/sysadmin/userinfo.html:135 msgid "Read-Write" msgstr "" -#: seahub/base/templatetags/seahub_tags.py:453 -#: seahub/group/templates/group/group_info_for_pub.html:26 -#: seahub/share/views.py:520 seahub/share/views.py:617 +#: seahub/base/templatetags/seahub_tags.py:459 #: seahub/share/templates/share/list_priv_shared_folders.html:33 -#: seahub/share/templates/share/repos.html:37 -#: seahub/templates/my_group_repos.html:30 seahub/templates/repo.html:20 -#: seahub/templates/repo_folder_perm.html:60 -#: seahub/templates/repo_folder_perm.html:77 -#: seahub/templates/repo_folder_perm.html:83 -#: seahub/templates/repo_folder_perm.html:115 -#: seahub/templates/repo_folder_perm.html:132 -#: seahub/templates/repo_folder_perm.html:138 -#: seahub/templates/repo_share_manage.html:62 -#: seahub/templates/repo_share_manage.html:68 -#: seahub/templates/repo_share_manage.html:95 -#: seahub/templates/repo_share_manage.html:101 -#: seahub/templates/repo_share_manage.html:125 -#: seahub/templates/js/templates.html:11 seahub/templates/js/templates.html:61 -#: seahub/templates/js/templates.html:85 -#: seahub/templates/js/templates.html:503 -#: seahub/templates/js/templates.html:526 -#: seahub/templates/js/templates.html:548 -#: seahub/templates/js/templates.html:701 -#: seahub/templates/js/templates.html:709 -#: seahub/templates/js/templates.html:712 -#: seahub/templates/js/templates.html:742 -#: seahub/templates/js/templates.html:764 -#: seahub/templates/js/templates.html:839 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:475 +#: seahub/share/views.py:572 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:547 +#: seahub/templates/js/templates.html:570 +#: seahub/templates/js/templates.html:760 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:801 +#: seahub/templates/js/templates.html:823 +#: seahub/templates/js/templates.html:899 +#: seahub/templates/js/templates.html:1258 +#: seahub/templates/js/templates.html:1304 +#: seahub/templates/js/templates.html:1346 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1353 #: seahub/templates/snippets/repo_create_form.html:12 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 -#: seahub/templates/sysadmin/userinfo.html:137 +#: seahub/templates/sysadmin/userinfo.html:133 msgid "Read-Only" msgstr "" -#: seahub/contacts/models.py:76 +#: seahub/base/templatetags/seahub_tags.py:483 +#: seahub/base/templatetags/seahub_tags.py:495 +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#: seahub/base/templatetags/seahub_tags.py:497 +#, python-format +msgid "%s KB" +msgstr "" + +#: seahub/base/templatetags/seahub_tags.py:499 +#, python-format +msgid "%s MB" +msgstr "" + +#: seahub/base/templatetags/seahub_tags.py:501 +#, python-format +msgid "%s GB" +msgstr "" + +#: seahub/base/templatetags/seahub_tags.py:503 +#, python-format +msgid "%s TB" +msgstr "" + +#: seahub/base/templatetags/seahub_tags.py:505 +#, python-format +msgid "%s PB" +msgstr "" + +#: seahub/contacts/models.py:77 #: seahub/contacts/templates/contacts/contact_list.html:119 msgid "Email is required." msgstr "" -#: seahub/contacts/views.py:67 seahub/group/views.py:986 -#: seahub/group/views.py:1014 +#: seahub/contacts/templates/contacts/contact_list.html:4 +#: seahub/contacts/templates/contacts/contact_list.html:10 +#: seahub/templates/snippets/repo_share_form.html:8 +msgid "Contacts" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:11 +#: seahub/contacts/templates/contacts/contact_list.html:43 +msgid "Add Contacts" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:17 +msgid "Email " +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:18 +#: seahub/group/templates/group/group_wiki.html:46 +#: seahub/group/templates/group/group_wiki.html:91 +#: seahub/group/templates/group/group_wiki_pages.html:30 +#: seahub/institutions/templates/institutions/info.html:10 +#: seahub/institutions/templates/institutions/user_info.html:55 +#: seahub/institutions/templates/institutions/user_info.html:101 +#: seahub/message/templates/message/all_msg_list.html:22 +#: seahub/share/templates/share/links.html:20 +#: seahub/share/templates/share/links.html:66 +#: seahub/share/templates/share/list_priv_shared_folders.html:15 +#: seahub/share/templates/share/repos.html:15 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:176 +#: seahub/templates/js/templates.html:853 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:876 +#: seahub/templates/js/templates.html:965 +#: seahub/templates/js/templates.html:1062 +#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1169 +#: seahub/templates/js/templates.html:1186 +#: seahub/templates/registration/registration_form.html:18 +#: seahub/templates/repo_dir_recycle_view.html:33 +#: seahub/templates/repo_history_view.html:57 +#: seahub/templates/snippets/repo_create_form.html:4 +#: seahub/templates/sysadmin/admin_repo_view.html:43 +#: seahub/templates/sysadmin/org_admin_table.html:4 +#: seahub/templates/sysadmin/repoadmin_table.html:5 +#: seahub/templates/sysadmin/sys_admin_group_info.html:17 +#: seahub/templates/sysadmin/sys_admin_group_info.html:40 +#: seahub/templates/sysadmin/sys_group_admin.html:17 +#: seahub/templates/sysadmin/sys_inst_admin.html:18 +#: seahub/templates/sysadmin/sys_inst_admin.html:27 +#: seahub/templates/sysadmin/sys_list_system.html:17 +#: seahub/templates/sysadmin/sys_org_admin.html:24 +#: seahub/templates/sysadmin/sys_org_info_group.html:18 +#: seahub/templates/sysadmin/sys_org_info_library.html:19 +#: seahub/templates/sysadmin/sys_org_search.html:10 +#: seahub/templates/sysadmin/sys_publink_admin.html:12 +#: seahub/templates/sysadmin/sys_repo_search.html:16 +#: seahub/templates/sysadmin/sys_repo_trash.html:28 +#: seahub/templates/sysadmin/userinfo.html:73 +#: seahub/templates/sysadmin/userinfo.html:122 +#: seahub/templates/sysadmin/userinfo.html:160 +#: seahub/templates/sysadmin/userinfo.html:207 +#: seahub/templates/view_shared_dir.html:50 +#: seahub/templates/wiki/personal_wiki.html:41 +#: seahub/templates/wiki/personal_wiki.html:83 +#: seahub/templates/wiki/personal_wiki_pages.html:28 +#: seahub/views/sysadmin.py:1400 +msgid "Name" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:19 +#: seahub/templates/registration/registration_form.html:41 +msgid "Note" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:20 +#: seahub/institutions/templates/institutions/user_info.html:58 +#: seahub/institutions/templates/institutions/user_info.html:104 +#: seahub/institutions/templates/institutions/useradmin.html:19 +#: seahub/notifications/templates/notifications/notification_list.html:21 +#: seahub/share/templates/share/links.html:69 +#: seahub/templates/file_revisions.html:45 +#: seahub/templates/repo_dir_recycle_view.html:36 +#: seahub/templates/repo_history.html:19 +#: seahub/templates/repo_history_view.html:59 +#: seahub/templates/sysadmin/admin_repo_view.html:46 +#: seahub/templates/sysadmin/org_admin_table.html:8 +#: seahub/templates/sysadmin/repoadmin_table.html:9 +#: seahub/templates/sysadmin/sys_admin_group_info.html:43 +#: seahub/templates/sysadmin/sys_group_admin.html:20 +#: seahub/templates/sysadmin/sys_inst_admin.html:29 +#: seahub/templates/sysadmin/sys_inst_info_user.html:17 +#: seahub/templates/sysadmin/sys_org_info_group.html:21 +#: seahub/templates/sysadmin/sys_org_info_library.html:22 +#: seahub/templates/sysadmin/sys_org_info_user.html:20 +#: seahub/templates/sysadmin/sys_publink_admin.html:16 +#: seahub/templates/sysadmin/sys_repo_trash.html:31 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:30 +#: seahub/templates/sysadmin/sys_virus_scan_records.html:14 +#: seahub/templates/sysadmin/useradmin_table.html:14 +#: seahub/templates/sysadmin/userinfo.html:76 +#: seahub/templates/sysadmin/userinfo.html:164 +#: seahub/templates/sysadmin/userinfo.html:210 +#: seahub/templates/view_shared_dir.html:53 +msgid "Operations" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:29 +#: seahub/group/templates/group/group_wiki.html:22 +#: seahub/share/templates/share/list_priv_shared_folders.html:28 +#: seahub/share/templates/share/repos.html:32 +#: seahub/templates/js/templates.html:763 +#: seahub/templates/js/templates.html:1099 +#: seahub/templates/js/templates.html:1106 +#: seahub/templates/js/templates.html:1343 +#: seahub/templates/js/templates.html:1350 +#: seahub/templates/sysadmin/sys_org_info_user.html:33 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:44 +#: seahub/templates/sysadmin/useradmin_table.html:36 +#: seahub/templates/sysadmin/useradmin_table.html:52 +#: seahub/templates/view_file_markdown.html:13 +#: seahub/templates/view_file_text.html:22 +#: seahub/templates/wiki/personal_wiki.html:21 +msgid "Edit" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:30 +#: seahub/group/templates/group/group_discuss.html:45 +#: seahub/group/templates/group/group_discuss.html:152 +#: seahub/institutions/templates/institutions/useradmin.html:48 +#: seahub/message/templates/message/user_msg.html:8 +#: seahub/message/templates/message/user_msg_list.html:52 +#: seahub/message/templates/message/user_msg_list.html:54 +#: seahub/notifications/templates/notifications/notification_list.html:33 +#: seahub/profile/templates/profile/set_profile.html:132 +#: seahub/profile/templates/profile/set_profile.html:135 +#: seahub/templates/js/templates.html:43 seahub/templates/js/templates.html:99 +#: seahub/templates/js/templates.html:205 +#: seahub/templates/js/templates.html:284 +#: seahub/templates/js/templates.html:363 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 +#: seahub/templates/js/templates.html:776 +#: seahub/templates/js/templates.html:1120 +#: seahub/templates/js/templates.html:1125 +#: seahub/templates/js/templates.html:1358 +#: seahub/templates/snippets/file_share_popup.html:43 +#: seahub/templates/snippets/file_share_popup.html:81 +#: seahub/templates/sysadmin/admin_repo_view.html:63 +#: seahub/templates/sysadmin/admin_repo_view.html:88 +#: seahub/templates/sysadmin/admin_repo_view.html:294 +#: seahub/templates/sysadmin/org_admin_table.html:25 +#: seahub/templates/sysadmin/repoadmin_table.html:35 +#: seahub/templates/sysadmin/sys_admin_group_info.html:65 +#: seahub/templates/sysadmin/sys_group_admin.html:34 +#: seahub/templates/sysadmin/sys_org_info_group.html:28 +#: seahub/templates/sysadmin/sys_org_info_library.html:42 +#: seahub/templates/sysadmin/sys_org_info_user.html:48 +#: seahub/templates/sysadmin/sys_repo_trash.html:40 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:59 +#: seahub/templates/sysadmin/sys_virus_scan_records.html:23 +#: seahub/templates/sysadmin/useradmin_table.html:77 +#: seahub/templates/sysadmin/userinfo.html:103 +#: seahub/templates/sysadmin/userinfo.html:217 +#: seahub/templates/view_shared_upload_link.html:86 +msgid "Delete" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:37 +msgid "You don't have any contacts" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:38 +msgid "" +"Add your contacts so you can quickly share libraries and send file shared " +"link." +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:44 +#: seahub/contacts/templates/contacts/contact_list.html:53 +#: seahub/institutions/templates/institutions/user_info.html:19 +#: seahub/institutions/templates/institutions/useradmin.html:15 +#: seahub/templates/js/templates.html:1063 +#: seahub/templates/js/templates.html:1071 +#: seahub/templates/registration/registration_form.html:22 +#: seahub/templates/sysadmin/sys_inst_info_user.html:13 +#: seahub/templates/sysadmin/sys_org_info_user.html:16 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:26 +#: seahub/templates/sysadmin/sys_useradmin.html:33 +#: seahub/templates/sysadmin/sys_useradmin_ldap.html:24 +#: seahub/templates/sysadmin/user_search.html:10 +#: seahub/templates/sysadmin/useradmin_table.html:5 +#: seahub/templates/sysadmin/useradmin_table.html:9 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:629 +#: seahub/views/sysadmin.py:632 +msgid "Email" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:46 +#: seahub/contacts/templates/contacts/contact_list.html:55 +msgid "Note(optional)" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:52 +msgid "Edit Contact" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:109 +msgid "Delete Contact" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:109 +#: seahub/institutions/templates/institutions/useradmin.html:61 +#: seahub/notifications/templates/notifications/notification_list.html:52 +#: seahub/templates/sysadmin/repoadmin_js.html:44 +#: seahub/templates/sysadmin/sys_admin_group_info.html:99 +#: seahub/templates/sysadmin/sys_group_admin.html:50 +#: seahub/templates/sysadmin/sys_inst_admin.html:67 +#: seahub/templates/sysadmin/sys_org_admin.html:63 +#: seahub/templates/sysadmin/sys_org_info_group.html:44 +#: seahub/templates/sysadmin/sys_org_info_library.html:61 +#: seahub/templates/sysadmin/sys_org_info_user.html:67 +#: seahub/templates/sysadmin/sys_org_search.html:28 +#: seahub/templates/sysadmin/useradmin_js.html:4 +#: seahub/templates/sysadmin/userinfo.html:297 +#, python-format +msgid "Are you sure you want to delete %s ?" +msgstr "" + +#: seahub/contacts/templates/contacts/contact_list.html:123 +msgid "You cannot add yourself." +msgstr "" + +#: seahub/contacts/views.py:67 #, python-format msgid "%s is not a valid email." msgstr "" @@ -1045,237 +1060,114 @@ msgstr "" msgid "Successfully Deleted %s" msgstr "" -#: seahub/contacts/templates/contacts/contact_list.html:4 -#: seahub/contacts/templates/contacts/contact_list.html:10 -#: seahub/templates/snippets/repo_share_form.html:8 -msgid "Contacts" +#: seahub/forms.py:26 +msgid "A user with this email already exists." msgstr "" -#: seahub/contacts/templates/contacts/contact_list.html:11 -#: seahub/contacts/templates/contacts/contact_list.html:43 -msgid "Add Contacts" +#: seahub/forms.py:40 +msgid "The two passwords didn't match." msgstr "" -#: seahub/contacts/templates/contacts/contact_list.html:17 -msgid "Email " +#: seahub/forms.py:49 seahub/group/forms.py:57 seahub/wiki/forms.py:16 +msgid "Name can't be empty" msgstr "" -#: seahub/contacts/templates/contacts/contact_list.html:18 -#: seahub/group/templates/group/group_info.html:79 -#: seahub/group/templates/group/group_info_for_pub.html:13 -#: seahub/group/templates/group/group_wiki.html:46 -#: seahub/group/templates/group/group_wiki.html:91 -#: seahub/group/templates/group/group_wiki_pages.html:30 -#: seahub/message/templates/message/all_msg_list.html:22 -#: seahub/share/templates/share/links.html:20 -#: seahub/share/templates/share/links.html:66 -#: seahub/share/templates/share/list_priv_shared_folders.html:15 -#: seahub/share/templates/share/priv_shared_files.html:22 -#: seahub/share/templates/share/priv_shared_files.html:60 -#: seahub/share/templates/share/repos.html:15 -#: seahub/templates/libraries.html:77 seahub/templates/my_group_repos.html:8 -#: seahub/templates/pubrepo.html:29 seahub/templates/repo_basic_info.html:32 -#: seahub/templates/repo_dir_recycle_view.html:33 -#: seahub/templates/repo_history_view.html:57 -#: seahub/templates/repo_shared_link.html:38 -#: seahub/templates/repo_shared_link.html:64 -#: seahub/templates/view_shared_dir.html:42 -#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:196 -#: seahub/templates/js/templates.html:793 -#: seahub/templates/js/templates.html:802 -#: seahub/templates/js/templates.html:816 -#: seahub/templates/js/templates.html:905 -#: seahub/templates/registration/registration_form.html:18 -#: seahub/templates/snippets/repo_create_form.html:4 -#: seahub/templates/snippets/repo_dir_data.html:64 -#: seahub/templates/sysadmin/admin_repo_view.html:35 -#: seahub/templates/sysadmin/org_admin_table.html:4 -#: seahub/templates/sysadmin/repoadmin_table.html:5 -#: seahub/templates/sysadmin/sys_admin_group_info.html:17 -#: seahub/templates/sysadmin/sys_admin_group_info.html:40 -#: seahub/templates/sysadmin/sys_group_admin.html:17 -#: seahub/templates/sysadmin/sys_list_system.html:23 -#: seahub/templates/sysadmin/sys_org_admin.html:24 -#: seahub/templates/sysadmin/sys_org_info_group.html:18 -#: seahub/templates/sysadmin/sys_org_info_library.html:19 -#: seahub/templates/sysadmin/sys_org_search.html:10 -#: seahub/templates/sysadmin/sys_publink_admin.html:12 -#: seahub/templates/sysadmin/sys_repo_search.html:16 -#: seahub/templates/sysadmin/sys_repo_trash.html:28 -#: seahub/templates/sysadmin/userinfo.html:83 -#: seahub/templates/sysadmin/userinfo.html:126 -#: seahub/templates/sysadmin/userinfo.html:164 -#: seahub/templates/sysadmin/userinfo.html:211 -#: seahub/templates/wiki/personal_wiki.html:41 -#: seahub/templates/wiki/personal_wiki.html:83 -#: seahub/templates/wiki/personal_wiki_pages.html:28 -#: seahub/views/sysadmin.py:1397 -msgid "Name" +#: seahub/forms.py:50 seahub/group/forms.py:58 seahub/wiki/forms.py:17 +msgid "Name is too long (maximum is 255 characters)" msgstr "" -#: seahub/contacts/templates/contacts/contact_list.html:19 -#: seahub/templates/registration/registration_form.html:41 -msgid "Note" +#: seahub/forms.py:53 seahub/group/forms.py:61 seahub/wiki/forms.py:20 +msgid "Description can't be empty" msgstr "" -#: seahub/contacts/templates/contacts/contact_list.html:20 -#: seahub/group/templates/group/group_info_for_pub.html:17 -#: seahub/group/templates/group/group_manage.html:31 -#: seahub/group/templates/group/group_manage.html:55 -#: seahub/group/templates/group/group_manage.html:85 -#: seahub/notifications/templates/notifications/notification_list.html:21 -#: seahub/share/templates/share/links.html:69 -#: seahub/share/templates/share/priv_shared_files.html:25 -#: seahub/share/templates/share/priv_shared_files.html:63 -#: seahub/templates/file_revisions.html:45 -#: seahub/templates/repo_dir_recycle_view.html:36 -#: seahub/templates/repo_history.html:19 -#: seahub/templates/repo_history_view.html:59 -#: seahub/templates/repo_share_manage.html:51 -#: seahub/templates/repo_share_manage.html:84 -#: seahub/templates/repo_shared_link.html:42 -#: seahub/templates/repo_shared_link.html:68 -#: seahub/templates/view_shared_dir.html:45 -#: seahub/templates/snippets/repo_dir_data.html:67 -#: seahub/templates/sysadmin/admin_repo_view.html:38 -#: seahub/templates/sysadmin/org_admin_table.html:8 -#: seahub/templates/sysadmin/repoadmin_table.html:9 -#: seahub/templates/sysadmin/sys_admin_group_info.html:43 -#: seahub/templates/sysadmin/sys_group_admin.html:20 -#: seahub/templates/sysadmin/sys_org_info_group.html:21 -#: seahub/templates/sysadmin/sys_org_info_library.html:22 -#: seahub/templates/sysadmin/sys_org_info_user.html:21 -#: seahub/templates/sysadmin/sys_publink_admin.html:16 -#: seahub/templates/sysadmin/sys_repo_trash.html:31 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:30 -#: seahub/templates/sysadmin/sys_virus_scan_records.html:14 -#: seahub/templates/sysadmin/useradmin_table.html:14 -#: seahub/templates/sysadmin/userinfo.html:86 -#: seahub/templates/sysadmin/userinfo.html:168 -#: seahub/templates/sysadmin/userinfo.html:214 -msgid "Operations" +#: seahub/forms.py:54 seahub/group/forms.py:62 seahub/wiki/forms.py:21 +msgid "Description is too long (maximum is 100 characters)" msgstr "" -#: seahub/contacts/templates/contacts/contact_list.html:29 -#: seahub/group/templates/group/group_wiki.html:22 -#: seahub/share/templates/share/list_priv_shared_folders.html:28 -#: seahub/share/templates/share/repos.html:32 -#: seahub/templates/repo_folder_perm.html:79 -#: seahub/templates/repo_folder_perm.html:134 -#: seahub/templates/repo_share_manage.html:64 -#: seahub/templates/repo_share_manage.html:97 -#: seahub/templates/view_file_markdown.html:13 -#: seahub/templates/view_file_text.html:22 -#: seahub/templates/js/templates.html:704 -#: seahub/templates/sysadmin/sys_org_info_user.html:34 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:44 -#: seahub/templates/sysadmin/useradmin_table.html:36 -#: seahub/templates/sysadmin/useradmin_table.html:52 -#: seahub/templates/wiki/personal_wiki.html:21 -msgid "Edit" -msgstr "" - -#: seahub/contacts/templates/contacts/contact_list.html:30 -#: seahub/group/templates/group/group_discuss.html:45 -#: seahub/group/templates/group/group_discuss.html:152 -#: seahub/group/templates/group/group_manage.html:40 -#: seahub/group/templates/group/group_manage.html:64 -#: seahub/message/templates/message/user_msg.html:8 -#: seahub/message/templates/message/user_msg_list.html:52 -#: seahub/message/templates/message/user_msg_list.html:54 -#: seahub/notifications/templates/notifications/notification_list.html:33 -#: seahub/profile/templates/profile/set_profile.html:138 -#: seahub/profile/templates/profile/set_profile.html:141 -#: seahub/templates/repo.html:51 seahub/templates/repo.html.py:545 -#: seahub/templates/repo_folder_perm.html:87 -#: seahub/templates/repo_folder_perm.html:142 -#: seahub/templates/view_shared_upload_link.html:86 -#: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:121 -#: seahub/templates/js/templates.html:233 -#: seahub/templates/js/templates.html:314 -#: seahub/templates/js/templates.html:429 -#: seahub/templates/js/templates.html:469 -#: seahub/templates/js/templates.html:571 -#: seahub/templates/js/templates.html:717 -#: seahub/templates/snippets/file_share_popup.html:43 -#: seahub/templates/snippets/file_share_popup.html:81 -#: seahub/templates/snippets/repo_dirents.html:36 -#: seahub/templates/snippets/repo_dirents.html:87 -#: seahub/templates/sysadmin/org_admin_table.html:25 -#: seahub/templates/sysadmin/repoadmin_table.html:37 -#: seahub/templates/sysadmin/sys_admin_group_info.html:65 -#: seahub/templates/sysadmin/sys_group_admin.html:34 -#: seahub/templates/sysadmin/sys_org_info_group.html:28 -#: seahub/templates/sysadmin/sys_org_info_library.html:42 -#: seahub/templates/sysadmin/sys_org_info_user.html:53 -#: seahub/templates/sysadmin/sys_repo_trash.html:40 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:64 -#: seahub/templates/sysadmin/sys_virus_scan_records.html:23 -#: seahub/templates/sysadmin/useradmin_table.html:82 -#: seahub/templates/sysadmin/userinfo.html:107 -#: seahub/templates/sysadmin/userinfo.html:221 -msgid "Delete" -msgstr "" - -#: seahub/contacts/templates/contacts/contact_list.html:37 -msgid "You don't have any contacts" -msgstr "" - -#: seahub/contacts/templates/contacts/contact_list.html:38 -msgid "" -"Add your contacts so you can quickly share libraries and send file shared " -"link." -msgstr "" - -#: seahub/contacts/templates/contacts/contact_list.html:44 -#: seahub/contacts/templates/contacts/contact_list.html:53 -#: seahub/group/templates/group/group_manage.html:30 -#: seahub/group/templates/group/group_manage.html:54 -#: seahub/templates/registration/registration_form.html:22 -#: seahub/templates/sysadmin/sys_org_info_user.html:17 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:26 -#: seahub/templates/sysadmin/sys_useradmin.html:33 -#: seahub/templates/sysadmin/sys_useradmin_ldap.html:24 -#: seahub/templates/sysadmin/user_search.html:10 -#: seahub/templates/sysadmin/useradmin_table.html:5 -#: seahub/templates/sysadmin/useradmin_table.html:9 -#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:610 -#: seahub/views/sysadmin.py:613 -msgid "Email" -msgstr "" - -#: seahub/contacts/templates/contacts/contact_list.html:46 -#: seahub/contacts/templates/contacts/contact_list.html:55 -msgid "Note(optional)" -msgstr "" - -#: seahub/contacts/templates/contacts/contact_list.html:52 -msgid "Edit Contact" -msgstr "" - -#: seahub/contacts/templates/contacts/contact_list.html:109 -msgid "Delete Contact" -msgstr "" - -#: seahub/contacts/templates/contacts/contact_list.html:109 -#: seahub/notifications/templates/notifications/notification_list.html:52 -#: seahub/templates/sysadmin/repoadmin_js.html:44 -#: seahub/templates/sysadmin/sys_admin_group_info.html:99 -#: seahub/templates/sysadmin/sys_group_admin.html:50 -#: seahub/templates/sysadmin/sys_org_admin.html:63 -#: seahub/templates/sysadmin/sys_org_info_group.html:44 -#: seahub/templates/sysadmin/sys_org_info_library.html:61 -#: seahub/templates/sysadmin/sys_org_info_user.html:72 -#: seahub/templates/sysadmin/sys_org_search.html:28 -#: seahub/templates/sysadmin/useradmin_js.html:4 -#: seahub/templates/sysadmin/userinfo.html:310 +#: seahub/forms.py:64 seahub/forms.py:176 #, python-format -msgid "Are you sure you want to delete %s ?" +msgid "Name %s is not valid" msgstr "" -#: seahub/contacts/templates/contacts/contact_list.html:123 -msgid "You cannot add yourself." +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:685 +#: seahub/share/views.py:713 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/views/ajax.py:647 seahub/views/ajax.py:864 seahub/views/ajax.py:1006 +#: seahub/views/ajax.py:1035 seahub/views/ajax.py:1196 +#: seahub/views/ajax.py:1280 seahub/views/ajax.py:1284 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1631 +#: seahub/views/ajax.py:1655 seahub/views/ajax.py:1755 +#: seahub/views/ajax.py:1975 seahub/views/ajax.py:2032 +#: seahub/views/ajax.py:2173 seahub/views/ajax.py:2389 +#: seahub/views/file.py:1602 seahub/views/sysadmin.py:1785 +#: seahub/views/sysadmin.py:1803 +msgid "Argument missing" +msgstr "" + +#: seahub/forms.py:92 +msgid "Oldname is required" +msgstr "" + +#: seahub/forms.py:95 seahub/forms.py:116 +msgid "It's too long." +msgstr "" + +#: seahub/forms.py:96 seahub/forms.py:117 +msgid "It's required." +msgstr "" + +#: seahub/forms.py:103 seahub/forms.py:124 +#, python-format +msgid "Name \"%s\" is not valid" +msgstr "" + +#: seahub/forms.py:135 +msgid "Repo id is required" +msgstr "" + +#: seahub/forms.py:136 +msgid "Username is required" +msgstr "" + +#: seahub/forms.py:137 seahub/share/models.py:69 +msgid "Password can't be empty" +msgstr "" + +#: seahub/forms.py:148 +msgid "Bad url format" +msgstr "" + +#: seahub/forms.py:150 +msgid "Wrong password" +msgstr "" + +#: seahub/forms.py:152 seahub/views/__init__.py:539 seahub/views/ajax.py:705 +#: seahub/views/ajax.py:739 seahub/views/ajax.py:782 seahub/views/ajax.py:825 +#: seahub/views/ajax.py:2432 seahub/views/sysadmin.py:2201 +msgid "Internal server error" +msgstr "" + +#: seahub/forms.py:154 +msgid "Decrypt library error" +msgstr "" + +#: seahub/forms.py:160 seahub/share/forms.py:19 seahub/share/forms.py:32 +msgid "Email is required" +msgstr "" + +#: seahub/forms.py:162 +msgid "Space quota can't be empty" +msgstr "" + +#: seahub/forms.py:163 +msgid "Space quota is too low (minimum value is 0)" +msgstr "" + +#: seahub/forms.py:169 +msgid "Library name is required" +msgstr "" + +#: seahub/forms.py:171 +msgid "Please enter a number" msgstr "" #: seahub/group/error_msg.py:7 @@ -1299,7 +1191,7 @@ msgid "Permission error: only group staff can add member" msgstr "" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:319 +#: seahub/share/views.py:274 msgid "Group does not exist" msgstr "" @@ -1340,243 +1232,6 @@ msgstr "" msgid "\"%s\" is not a valid name" msgstr "" -#: seahub/group/views.py:148 seahub/share/views.py:332 -#: seahub/share/views.py:348 seahub/share/views.py:358 -#: seahub/share/views.py:822 seahub/share/views.py:850 -#: seahub/share/views.py:960 seahub/share/views.py:996 -#: seahub/share/views.py:1075 seahub/share/views.py:1228 -#: seahub/views/__init__.py:662 seahub/views/__init__.py:1106 -#: seahub/views/__init__.py:1539 seahub/views/__init__.py:1601 -#: seahub/views/ajax.py:187 seahub/views/ajax.py:532 seahub/views/ajax.py:630 -#: seahub/views/ajax.py:637 seahub/views/ajax.py:687 seahub/views/ajax.py:694 -#: seahub/views/ajax.py:791 seahub/views/ajax.py:816 seahub/views/ajax.py:852 -#: seahub/views/ajax.py:894 seahub/views/ajax.py:929 seahub/views/ajax.py:1009 -#: seahub/views/ajax.py:1815 seahub/views/ajax.py:1883 -#: seahub/views/ajax.py:2312 seahub/views/ajax.py:2338 -#: seahub/views/ajax.py:2454 seahub/views/ajax.py:2480 -#: seahub/views/file.py:1052 seahub/views/file.py:1617 -#: seahub/views/repo.py:174 seahub/views/repo.py:323 -msgid "Permission denied" -msgstr "" - -#: seahub/group/views.py:175 -#, python-format -msgid "" -"You can only create %d groups.Upgrade " -"account." -msgstr "" - -#: seahub/group/views.py:314 -msgid "" -"Failed to rename group, group name can only contain letters, numbers, blank, " -"hyphen or underscore" -msgstr "" - -#: seahub/group/views.py:318 -#, python-format -msgid "Successfully renamed group to \"%s\"." -msgstr "" - -#: seahub/group/views.py:335 -#, python-format -msgid "Email %s is not valid." -msgstr "" - -#: seahub/group/views.py:367 seahub/group/views.py:389 -msgid "Only administrators can make the group public" -msgstr "" - -#: seahub/group/views.py:436 seahub/message/views.py:121 -#: seahub/message/views.py:147 -msgid "The message doesn't exist" -msgstr "" - -#: seahub/group/views.py:446 seahub/message/views.py:133 -#: seahub/message/views.py:159 -msgid "You don't have the permission." -msgstr "" - -#: seahub/group/views.py:622 -#, python-format -msgid "You are invited to join a group on %s" -msgstr "" - -#: seahub/group/views.py:635 seahub/group/views.py:755 -msgid "The group does not exist." -msgstr "" - -#: seahub/group/views.py:663 -#, python-format -msgid "Failed to add, %s is not in current organization." -msgstr "" - -#: seahub/group/views.py:681 seahub/group/views.py:827 -#: seahub/group/views.py:960 -#, python-format -msgid "" -"You can only invite %d members.Upgrade " -"account." -msgstr "" - -#: seahub/group/views.py:719 -#, python-format -msgid "Failed to add, %s is not registerd." -msgstr "" - -#: seahub/group/views.py:734 -#, python-format -msgid "Successfully added. An email has been sent." -msgid_plural "Successfully added. %(count)s emails have been sent." -msgstr[0] "" -msgstr[1] "" - -#: seahub/group/views.py:741 -msgid "Successfully added." -msgstr "" - -#: seahub/group/views.py:766 -msgid "Failed, file is too large" -msgstr "" - -#: seahub/group/views.py:871 -#, python-format -msgid "Failed to add %s to group." -msgstr "" - -#: seahub/group/views.py:931 -#, python-format -msgid "Failed to add, %s is not a valid email." -msgstr "" - -#: seahub/group/views.py:941 -#, python-format -msgid "Failed to add, %s is not registrated." -msgstr "" - -#: seahub/group/views.py:973 seahub/group/views.py:991 -#: seahub/group/views.py:1022 -msgid "Operation succeeded." -msgstr "" - -#: seahub/group/views.py:1024 -#, python-format -msgid "Failed:%s" -msgstr "" - -#: seahub/group/views.py:1054 -msgid "Error: wrong group id" -msgstr "" - -#: seahub/group/views.py:1060 -msgid "Error: the group does not exist." -msgstr "" - -#: seahub/group/views.py:1093 -#, python-format -msgid "Successfully posted to %(groups)s." -msgstr "" - -#: seahub/group/views.py:1096 -#, python-format -msgid "Error: you are not in group %s." -msgstr "" - -#: seahub/group/views.py:1108 -msgid "Error: the library does not exist." -msgstr "" - -#: seahub/group/views.py:1111 -msgid "Error: no path." -msgstr "" - -#: seahub/group/views.py:1149 -msgid "Failed to create: the group does not exist." -msgstr "" - -#: seahub/group/views.py:1154 -msgid "Failed to create: you are not in the group." -msgstr "" - -#: seahub/group/views.py:1182 seahub/group/views.py:1204 -#: seahub/group/views.py:1572 seahub/views/wiki.py:153 -msgid "Failed to create" -msgstr "" - -#: seahub/group/views.py:1189 seahub/group/views.py:1210 -#: seahub/group/views.py:1578 -msgid "Failed to create: internal error." -msgstr "" - -#: seahub/group/views.py:1281 -msgid "Discussion is required." -msgstr "" - -#: seahub/group/views.py:1387 seahub/views/__init__.py:972 -#: seahub/views/ajax.py:1427 seahub/views/file.py:383 seahub/views/file.py:784 -#: seahub/views/file.py:955 seahub/views/file.py:1612 -msgid "File does not exist" -msgstr "" - -#: seahub/group/views.py:1423 -msgid "Successfully enable \"Wiki\"." -msgstr "" - -#: seahub/group/views.py:1428 -msgid "Successfully disable \"Wiki\"." -msgstr "" - -#: seahub/group/views.py:1467 seahub/group/views.py:1640 -#: seahub/views/wiki.py:63 seahub/views/wiki.py:209 -msgid "Failed to create wiki page. Please retry later." -msgstr "" - -#: seahub/group/views.py:1501 seahub/templates/file_revisions.html:66 -#: seahub/templates/repo_history.html:41 -#: seahub/templates/repo_history_view.html:29 -#: seahub/templates/snippets/current_commit.html:11 seahub/views/wiki.py:93 -msgid "Unknown" -msgstr "" - -#: seahub/group/views.py:1523 seahub/views/__init__.py:966 -#: seahub/views/ajax.py:1992 seahub/views/ajax.py:2056 -#: seahub/views/wiki.py:113 -msgid "Internal Server Error" -msgstr "" - -#: seahub/group/views.py:1525 seahub/views/wiki.py:115 -msgid "Wiki does not exists." -msgstr "" - -#: seahub/group/views.py:1585 seahub/group/views.py:1610 -#: seahub/views/wiki.py:160 seahub/views/wiki.py:183 -msgid "Failed to create home page. Please retry later" -msgstr "" - -#: seahub/group/views.py:1601 seahub/views/wiki.py:174 -msgid "Failed to set wiki library." -msgstr "" - -#: seahub/group/views.py:1630 seahub/group/views.py:1656 -#: seahub/group/views.py:1674 seahub/views/wiki.py:199 -#: seahub/views/wiki.py:222 seahub/views/wiki.py:237 -msgid "Wiki is not found." -msgstr "" - -#: seahub/group/views.py:1637 seahub/views/wiki.py:206 -#, python-format -msgid "Page \"%s\" already exists." -msgstr "" - -#: seahub/group/views.py:1679 -#, python-format -msgid "Successfully deleted \"%s\"." -msgstr "" - -#: seahub/group/views.py:1681 -#, python-format -msgid "Failed to delete \"%s\". Please retry later." -msgstr "" - #: seahub/group/templates/group/add_member_email.html:8 msgid "Hi, " msgstr "" @@ -1625,113 +1280,34 @@ msgstr "" #: seahub/message/templates/message/all_msg_list.html:60 #: seahub/message/templates/message/user_msg_list.html:22 #: seahub/message/templates/message/user_msg_list.html:34 -#: seahub/profile/templates/profile/set_profile.html:153 -#: seahub/templates/activities.html:26 seahub/templates/file_edit.html:102 -#: seahub/templates/file_edit.html:135 seahub/templates/file_edit.html:327 -#: seahub/templates/libraries.html:156 seahub/templates/repo.html:137 -#: seahub/templates/repo.html.py:161 seahub/templates/repo.html:182 -#: seahub/templates/repo.html.py:189 seahub/templates/repo.html:198 -#: seahub/templates/repo.html.py:544 -#: seahub/templates/repo_dir_recycle_view.html:63 -#: seahub/templates/repo_folder_perm.html:155 -#: seahub/templates/shared_file_view.html:63 -#: seahub/templates/view_shared_upload_link.html:85 +#: seahub/profile/templates/profile/set_profile.html:147 +#: seahub/templates/file_edit.html:102 seahub/templates/file_edit.html:135 +#: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:10 #: seahub/templates/js/lib-op-popups.html:30 #: seahub/templates/js/lib-op-popups.html:38 -#: seahub/templates/js/lib-op-popups.html:66 -#: seahub/templates/js/lib-op-popups.html:75 -#: seahub/templates/js/lib-op-popups.html:119 -#: seahub/templates/js/templates.html:437 -#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/lib-op-popups.html:48 +#: seahub/templates/js/lib-op-popups.html:77 +#: seahub/templates/js/lib-op-popups.html:86 +#: seahub/templates/js/lib-op-popups.html:130 +#: seahub/templates/js/lib-op-popups.html:146 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:1276 +#: seahub/templates/js/templates.html:1322 +#: seahub/templates/repo_dir_recycle_view.html:63 +#: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:55 #: seahub/templates/snippets/file_share_popup.html:91 #: seahub/templates/snippets/web_settings_form.html:13 +#: seahub/templates/sysadmin/admin_repo_view.html:110 +#: seahub/templates/sysadmin/admin_repo_view.html:293 #: seahub/templates/sysadmin/repo_transfer_form.html:9 +#: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 msgid "Cancel" msgstr "" -#: seahub/group/templates/group/group_base.html:16 -#: seahub/group/templates/group/group_base.html:50 -#: seahub/group/templates/group/group_info.html:9 -#: seahub/group/templates/group/group_info.html:33 -#: seahub/templates/home_base.html:10 seahub/templates/home_base.html.py:41 -#: seahub/templates/js/templates.html:581 -#: seahub/templates/js/templates.html:611 -#: seahub/templates/js/templates.html:637 -#: seahub/templates/js/templates.html:665 -msgid "Enable Modules" -msgstr "" - -#: seahub/group/templates/group/group_base.html:18 -#: seahub/group/templates/group/group_info.html:35 -#: seahub/templates/js/templates.html:640 -msgid "This group is public." -msgstr "" - -#: seahub/group/templates/group/group_base.html:21 -#: seahub/group/templates/group/group_info.html:38 -#: seahub/group/templates/group/group_info.html:67 -#: seahub/group/templates/group/group_info_for_pub.html:8 -#: seahub/share/templates/share/repos.html:10 -#: seahub/templates/home_base.html:14 seahub/templates/home_base.html.py:30 -#: seahub/templates/libraries.html:5 seahub/templates/libraries.html.py:21 -#: seahub/templates/libraries.html:162 seahub/templates/libraries.html:187 -#: seahub/templates/pub_base.html:12 seahub/templates/pubrepo.html:12 -#: seahub/templates/pubrepo.html.py:21 seahub/templates/js/templates.html:170 -#: seahub/templates/js/templates.html:172 -#: seahub/templates/js/templates.html:174 -#: seahub/templates/js/templates.html:176 -#: seahub/templates/js/templates.html:585 -#: seahub/templates/js/templates.html:603 -#: seahub/templates/js/templates.html:644 -#: seahub/templates/sysadmin/base.html:15 -#: seahub/templates/sysadmin/sys_admin_group_info.html:30 -#: seahub/templates/sysadmin/sys_info.html:19 -#: seahub/templates/sysadmin/sys_org_info_group.html:10 -#: seahub/templates/sysadmin/sys_org_info_library.html:10 -#: seahub/templates/sysadmin/sys_org_info_setting.html:10 -#: seahub/templates/sysadmin/sys_org_info_user.html:10 -msgid "Libraries" -msgstr "" - -#: seahub/group/templates/group/group_base.html:29 -#: seahub/group/templates/group/group_base.html:57 -#: seahub/group/templates/group/group_info.html:16 -#: seahub/group/templates/group/group_info.html:44 -#: seahub/templates/js/templates.html:652 -#: seahub/templates/js/templates.html:676 -msgid "Wiki" -msgstr "" - -#: seahub/group/templates/group/group_base.html:34 -#: seahub/group/templates/group/group_info.html:49 -msgid "Files" -msgstr "" - -#: seahub/group/templates/group/group_base.html:38 -#: seahub/group/templates/group/group_info.html:53 -#: seahub/group/templates/group/group_manage.html:15 -#: seahub/group/templates/group/group_members.html:8 -#: seahub/templates/libraries.html:22 seahub/templates/pub_base.html:13 -#: seahub/templates/pubrepo.html:13 seahub/templates/js/templates.html:656 -#: seahub/templates/sysadmin/sys_admin_group_info.html:31 -#: seahub/templates/sysadmin/sys_org_info_group.html:8 -#: seahub/templates/sysadmin/sys_org_info_library.html:8 -#: seahub/templates/sysadmin/sys_org_info_setting.html:8 -#: seahub/templates/sysadmin/sys_org_info_user.html:8 -msgid "Members" -msgstr "" - -#: seahub/group/templates/group/group_base.html:42 -#: seahub/group/templates/group/group_info.html:57 -#: seahub/templates/base.html:91 seahub/templates/base_for_backbone.html:127 -#: seahub/templates/js/templates.html:659 seahub/views/sysadmin.py:611 -#: seahub/views/sysadmin.py:614 seahub/views/sysadmin.py:927 -msgid "Admin" -msgstr "" - #: seahub/group/templates/group/group_discuss.html:12 msgid "Add a discussion..." msgstr "" @@ -1754,8 +1330,7 @@ msgstr "" #: seahub/group/templates/group/group_discuss.html:126 #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:56 seahub/templates/pubuser.html:46 -#: seahub/templates/repo_history.html:59 +#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:59 #: seahub/templates/snippets/admin_paginator.html:3 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 @@ -1764,8 +1339,7 @@ msgstr "" #: seahub/group/templates/group/group_discuss.html:136 #: seahub/message/templates/message/user_msg_list.html:92 -#: seahub/templates/file_access.html:59 seahub/templates/pubuser.html:56 -#: seahub/templates/repo_history.html:62 +#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:62 #: seahub/templates/snippets/admin_paginator.html:6 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 @@ -1786,18 +1360,18 @@ msgstr "" #: seahub/group/templates/group/group_discuss.html:271 #: seahub/message/templates/message/user_msg_list.html:194 #: seahub/message/templates/message/user_msg_list.html:230 -#: seahub/templates/base.html:139 seahub/templates/base_for_backbone.html:153 -#: seahub/templates/devices.html:47 seahub/templates/js/lib-op-popups.html:126 +#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:635 seahub/views/sysadmin.py:636 +#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 msgid "Yes" msgstr "" #: seahub/group/templates/group/group_discuss.html:271 #: seahub/message/templates/message/user_msg_list.html:194 #: seahub/message/templates/message/user_msg_list.html:230 -#: seahub/templates/base.html:140 seahub/templates/base_for_backbone.html:154 -#: seahub/templates/devices.html:48 seahub/templates/js/lib-op-popups.html:127 +#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:135 +#: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 msgid "No" msgstr "" @@ -1817,118 +1391,9 @@ msgstr "" #: seahub/group/templates/group/group_discuss.html:292 #: seahub/message/templates/message/user_msg_list.html:215 #: seahub/message/templates/message/user_msg_list.html:251 -#: seahub/templates/repo.html:1185 seahub/templates/repo.html.py:2104 msgid "Failed." msgstr "" -#: seahub/group/templates/group/group_info.html:70 -#: seahub/templates/libraries.html:53 seahub/templates/libraries.html:164 -#: seahub/templates/pubrepo.html:22 seahub/templates/js/templates.html:4 -#: seahub/templates/snippets/repo_create_form.html:3 -msgid "New Library" -msgstr "" - -#: seahub/group/templates/group/group_info.html:81 -#: seahub/templates/file_revisions.html:44 seahub/templates/pubrepo.html:31 -#: seahub/templates/repo_dir_recycle_view.html:35 -#: seahub/templates/repo_history_view.html:58 -#: seahub/templates/repo_shared_link.html:40 -#: seahub/templates/repo_shared_link.html:66 -#: seahub/templates/view_shared_dir.html:43 -#: seahub/templates/js/templates.html:198 -#: seahub/templates/js/templates.html:795 -#: seahub/templates/js/templates.html:804 -#: seahub/templates/js/templates.html:907 -#: seahub/templates/snippets/repo_dir_data.html:65 -#: seahub/templates/sysadmin/admin_repo_view.html:36 -#: seahub/templates/sysadmin/sys_admin_group_info.html:41 -#: seahub/templates/sysadmin/userinfo.html:84 -#: seahub/templates/sysadmin/userinfo.html:128 -#: seahub/templates/sysadmin/userinfo.html:165 -msgid "Size" -msgstr "" - -#: seahub/group/templates/group/group_info.html:82 -#: seahub/group/templates/group/group_info_for_pub.html:15 -#: seahub/templates/libraries.html:80 seahub/templates/libraries.html:113 -#: seahub/templates/my_group_repos.html:10 seahub/templates/pubrepo.html:32 -#: seahub/templates/starred.html:15 seahub/templates/view_shared_dir.html:44 -#: seahub/templates/js/templates.html:199 -#: seahub/templates/js/templates.html:796 -#: seahub/templates/js/templates.html:805 -#: seahub/templates/js/templates.html:817 -#: seahub/templates/js/templates.html:908 -#: seahub/templates/snippets/repo_dir_data.html:66 -#: seahub/templates/sysadmin/admin_repo_view.html:37 -#: seahub/templates/sysadmin/userinfo.html:85 -#: seahub/templates/sysadmin/userinfo.html:129 -msgid "Last Update" -msgstr "" - -#: seahub/group/templates/group/group_info.html:83 -#: seahub/group/templates/group/group_info_for_pub.html:16 -#: seahub/templates/my_group_repos.html:11 seahub/templates/pubrepo.html:33 -#: seahub/templates/js/templates.html:806 -#: seahub/templates/sysadmin/sys_admin_group_info.html:42 -msgid "Shared By" -msgstr "" - -#: seahub/group/templates/group/group_info.html:90 -msgid "No library is sharing to this group" -msgstr "" - -#: seahub/group/templates/group/group_info.html:91 -#: seahub/templates/libraries.html:176 -msgid "" -"You can share libraries by clicking the \"New Library\" button above or the " -"\"Share\" icon on your libraries list." -msgstr "" - -#: seahub/group/templates/group/group_info.html:92 -#: seahub/templates/libraries.html:177 -msgid "" -"Libraries shared as writable can be downloaded and synced by other group " -"members. Read only libraries can only be downloaded, updates by others will " -"not be uploaded." -msgstr "" - -#: seahub/group/templates/group/group_info_for_pub.html:14 -#: seahub/group/templates/group/group_wiki.html:48 -#: seahub/templates/my_group_repos.html:9 -#: seahub/templates/repo_history.html:16 -#: seahub/templates/snippets/repo_create_form.html:6 -#: seahub/templates/sysadmin/sys_list_system.html:25 -#: seahub/templates/wiki/personal_wiki.html:43 -msgid "Description" -msgstr "" - -#: seahub/group/templates/group/group_info_for_pub.html:24 -#: seahub/group/templates/group/group_info_for_pub.html:26 -#: seahub/share/templates/share/list_priv_shared_folders.html:22 -#: seahub/share/templates/share/repos.html:23 -#: seahub/share/templates/share/repos.html:25 -#: seahub/templates/my_group_repos.html:25 -#: seahub/templates/my_group_repos.html:28 -#: seahub/templates/my_group_repos.html:30 -#: seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:546 -#: seahub/templates/js/templates.html:548 -#: seahub/templates/sysadmin/repoadmin_table.html:14 -#: seahub/templates/sysadmin/repoadmin_table.html:17 -#: seahub/templates/sysadmin/sys_org_info_library.html:27 -#: seahub/templates/sysadmin/sys_org_info_library.html:29 -#: seahub/templates/sysadmin/sys_repo_trash.html:35 -msgid "directory icon" -msgstr "" - -#: seahub/group/templates/group/group_info_for_pub.html:46 -msgid "No public library is in this group" -msgstr "" - -#: seahub/group/templates/group/group_info_for_pub.html:47 -msgid "A library can be made public in its settings page.(Not implemented yet)" -msgstr "" - #: seahub/group/templates/group/group_join_email.html:2 #, python-format msgid "" @@ -1947,196 +1412,6 @@ msgstr "" msgid "The %(site_name)s team" msgstr "" -#: seahub/group/templates/group/group_manage.html:16 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:19 -#: seahub/templates/sysadmin/sys_useradmin.html:19 -#: seahub/templates/sysadmin/sys_useradmin_admins.html:19 -#: seahub/templates/sysadmin/sys_useradmin_ldap.html:18 -#: seahub/templates/sysadmin/sys_useradmin_paid.html:19 -msgid "Admins" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:17 -#: seahub/profile/templates/profile/set_profile.html:5 -#: seahub/profile/templates/profile/set_profile.html:27 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:117 -#: seahub/templates/repo.html:30 seahub/templates/repo_basic_info.html:9 -#: seahub/templates/repo_change_password.html:9 -#: seahub/templates/repo_folder_perm.html:14 -#: seahub/templates/repo_share_manage.html:14 -#: seahub/templates/repo_shared_link.html:9 -#: seahub/templates/repo_transfer_owner.html:14 -#: seahub/templates/js/templates.html:155 -#: seahub/templates/sysadmin/base.html:12 -#: seahub/templates/sysadmin/settings.html:7 -#: seahub/templates/sysadmin/sys_org_info_group.html:11 -#: seahub/templates/sysadmin/sys_org_info_library.html:11 -#: seahub/templates/sysadmin/sys_org_info_setting.html:11 -#: seahub/templates/sysadmin/sys_org_info_user.html:11 -msgid "Settings" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:20 -msgid "Import Members" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:21 -msgid "Add Members" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:22 -msgid "Add Admins" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:75 -msgid "Avatar" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:79 -#: seahub/profile/templates/profile/set_profile.html:34 -msgid "Change" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:87 -#: seahub/templates/js/templates.html:239 -#: seahub/templates/js/templates.html:320 -#: seahub/templates/snippets/repo_dirents.html:37 -#: seahub/templates/snippets/repo_dirents.html:89 -msgid "Rename" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:89 -msgid "Revoke Public" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:92 -msgid "Make Public" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:95 -#: seahub/templates/sysadmin/repoadmin_table.html:38 -#: seahub/templates/sysadmin/userinfo.html:108 -msgid "Transfer" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:96 -msgid "Dismiss" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:104 -msgid "Import group members from a CSV file" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:106 -msgid "File format: user@mail.com" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:107 -#: seahub/templates/sysadmin/sys_useradmin.html:58 -msgid "Please choose a CSV file" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:112 -msgid "Transfer Group To" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:119 -msgid "Rename Group To" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:126 -msgid "Add members" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:133 -msgid "Add administrators" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:174 -msgid "Dismiss Group" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:175 -msgid "Really want to dismiss this group?" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:179 -msgid "Delete Member" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:180 -#, python-format -msgid "Really want to delete %s ?" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:191 -#: seahub/templates/repo_folder_perm.html:188 -#: seahub/templates/repo_share_manage.html:147 -msgid "Search users or enter emails" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:192 -#: seahub/group/templates/group/group_manage.html:243 -#: seahub/templates/repo_folder_perm.html:189 -#: seahub/templates/repo_share_manage.html:149 -#: seahub/templates/repo_transfer_owner.html:53 -#: seahub/templates/sysadmin/repoadmin_js.html:19 -msgid "Please enter 1 or more character" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:193 -#: seahub/group/templates/group/group_manage.html:244 -#: seahub/templates/repo_folder_perm.html:190 -#: seahub/templates/repo_share_manage.html:150 -#: seahub/templates/repo_share_manage.html:159 -#: seahub/templates/repo_transfer_owner.html:54 -#: seahub/templates/sysadmin/repoadmin_js.html:20 -msgid "No matches" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:194 -#: seahub/group/templates/group/group_manage.html:245 -#: seahub/templates/repo_folder_perm.html:191 -#: seahub/templates/repo_share_manage.html:151 -#: seahub/templates/repo_transfer_owner.html:55 -#: seahub/templates/sysadmin/repoadmin_js.html:21 -msgid "Searching..." -msgstr "" - -#: seahub/group/templates/group/group_manage.html:195 -#: seahub/group/templates/group/group_manage.html:246 -#: seahub/templates/repo_folder_perm.html:192 -#: seahub/templates/repo_share_manage.html:152 -#: seahub/templates/repo_transfer_owner.html:56 -#: seahub/templates/sysadmin/repoadmin_js.html:22 -msgid "Loading failed" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:242 -#: seahub/templates/repo_transfer_owner.html:52 -#: seahub/templates/sysadmin/repoadmin_js.html:18 -msgid "Search user or enter email" -msgstr "" - -#: seahub/group/templates/group/group_manage.html:247 -#: seahub/templates/repo_share_manage.html:153 -#: seahub/templates/repo_transfer_owner.html:57 -#: seahub/templates/sysadmin/repoadmin_js.html:23 -msgid "You cannot select any more choices" -msgstr "" - -#: seahub/group/templates/group/group_members.html:10 -msgid "Leave group" -msgstr "" - -#: seahub/group/templates/group/group_members.html:31 -msgid "Quit Group" -msgstr "" - -#: seahub/group/templates/group/group_members.html:32 -msgid "Are you sure you want to quit this group?" -msgstr "" - #: seahub/group/templates/group/group_wiki.html:13 #: seahub/group/templates/group/group_wiki.html:20 #: seahub/templates/wiki/personal_wiki.html:15 @@ -2182,6 +1457,14 @@ msgstr "" msgid "Create Wiki" msgstr "" +#: seahub/group/templates/group/group_wiki.html:48 +#: seahub/templates/repo_history.html:16 +#: seahub/templates/snippets/repo_create_form.html:6 +#: seahub/templates/sysadmin/sys_list_system.html:19 +#: seahub/templates/wiki/personal_wiki.html:43 +msgid "Description" +msgstr "" + #: seahub/group/templates/group/group_wiki.html:49 msgid "Wiki Pages" msgstr "" @@ -2192,7 +1475,7 @@ msgid "Choose a library as wiki:" msgstr "" #: seahub/group/templates/group/group_wiki.html:60 -#: seahub/profile/templates/profile/set_profile.html:151 +#: seahub/profile/templates/profile/set_profile.html:145 #: seahub/templates/wiki/personal_wiki.html:55 msgid "Please click and choose a library." msgstr "" @@ -2258,7 +1541,6 @@ msgid "Are you sure you want to delete this page?" msgstr "" #: seahub/group/templates/group/group_wiki.html:165 -#: seahub/templates/repo_basic_info.html:68 #: seahub/templates/wiki/personal_wiki.html:157 msgid "Name is required." msgstr "" @@ -2277,12 +1559,135 @@ msgid "Group: " msgstr "" #: seahub/group/templates/group/new_msg_reply.html:76 -#: seahub/templates/pubuser.html:62 seahub/templates/repo_history.html:38 -#: seahub/templates/sysadmin/sys_list_system.html:36 +#: seahub/templates/repo_history.html:38 +#: seahub/templates/sysadmin/sys_list_system.html:30 #: seahub/templates/sysadmin/sys_repo_admin.html:30 msgid "None" msgstr "" +#: seahub/group/views.py:148 seahub/share/views.py:287 +#: seahub/share/views.py:303 seahub/share/views.py:313 +#: seahub/share/views.py:695 seahub/share/views.py:723 +#: seahub/share/views.py:833 seahub/share/views.py:869 +#: seahub/share/views.py:948 seahub/share/views.py:1105 +#: seahub/views/__init__.py:531 seahub/views/__init__.py:705 +#: seahub/views/__init__.py:1094 seahub/views/__init__.py:1142 +#: seahub/views/ajax.py:187 seahub/views/ajax.py:406 seahub/views/ajax.py:504 +#: seahub/views/ajax.py:511 seahub/views/ajax.py:561 seahub/views/ajax.py:568 +#: seahub/views/ajax.py:665 seahub/views/ajax.py:690 seahub/views/ajax.py:726 +#: seahub/views/ajax.py:768 seahub/views/ajax.py:803 seahub/views/ajax.py:883 +#: seahub/views/ajax.py:1667 seahub/views/ajax.py:1735 +#: seahub/views/ajax.py:2019 seahub/views/ajax.py:2045 +#: seahub/views/ajax.py:2161 seahub/views/ajax.py:2187 +#: seahub/views/file.py:1047 seahub/views/file.py:1611 +#: seahub/views/repo.py:134 +msgid "Permission denied" +msgstr "" + +#: seahub/group/views.py:166 +msgid "You do not have permission to create group." +msgstr "" + +#: seahub/group/views.py:175 +#, python-format +msgid "" +"You can only create %d groups.Upgrade " +"account." +msgstr "" + +#: seahub/group/views.py:288 seahub/message/views.py:121 +#: seahub/message/views.py:147 +msgid "The message doesn't exist" +msgstr "" + +#: seahub/group/views.py:298 seahub/message/views.py:133 +#: seahub/message/views.py:159 +msgid "You don't have the permission." +msgstr "" + +#: seahub/group/views.py:422 +#, python-format +msgid "You are invited to join a group on %s" +msgstr "" + +#: seahub/group/views.py:438 +msgid "Failed to create: the group does not exist." +msgstr "" + +#: seahub/group/views.py:443 +msgid "Failed to create: you are not in the group." +msgstr "" + +#: seahub/group/views.py:471 seahub/group/views.py:493 +#: seahub/group/views.py:788 seahub/views/wiki.py:153 +msgid "Failed to create" +msgstr "" + +#: seahub/group/views.py:478 seahub/group/views.py:499 +#: seahub/group/views.py:794 +msgid "Failed to create: internal error." +msgstr "" + +#: seahub/group/views.py:523 +msgid "Discussion is required." +msgstr "" + +#: seahub/group/views.py:629 seahub/views/__init__.py:571 +#: seahub/views/ajax.py:1302 seahub/views/file.py:380 seahub/views/file.py:779 +#: seahub/views/file.py:950 seahub/views/file.py:1606 +msgid "File does not exist" +msgstr "" + +#: seahub/group/views.py:685 seahub/group/views.py:856 seahub/views/wiki.py:63 +#: seahub/views/wiki.py:209 +msgid "Failed to create wiki page. Please retry later." +msgstr "" + +#: seahub/group/views.py:717 seahub/templates/file_revisions.html:66 +#: seahub/templates/repo_history.html:41 +#: seahub/templates/repo_history_view.html:29 seahub/views/wiki.py:93 +msgid "Unknown" +msgstr "" + +#: seahub/group/views.py:739 seahub/views/__init__.py:565 +#: seahub/views/wiki.py:113 +msgid "Internal Server Error" +msgstr "" + +#: seahub/group/views.py:741 seahub/views/wiki.py:115 +msgid "Wiki does not exists." +msgstr "" + +#: seahub/group/views.py:801 seahub/group/views.py:826 +#: seahub/views/wiki.py:160 seahub/views/wiki.py:183 +msgid "Failed to create home page. Please retry later" +msgstr "" + +#: seahub/group/views.py:817 seahub/views/wiki.py:174 +msgid "Failed to set wiki library." +msgstr "" + +#: seahub/group/views.py:846 seahub/group/views.py:872 +#: seahub/group/views.py:890 seahub/views/wiki.py:199 seahub/views/wiki.py:222 +#: seahub/views/wiki.py:237 +msgid "Wiki is not found." +msgstr "" + +#: seahub/group/views.py:853 seahub/views/wiki.py:206 +#, python-format +msgid "Page \"%s\" already exists." +msgstr "" + +#: seahub/group/views.py:895 +#, python-format +msgid "Successfully deleted \"%s\"." +msgstr "" + +#: seahub/group/views.py:897 +#, python-format +msgid "Failed to delete \"%s\". Please retry later." +msgstr "" + #: seahub/help/templates/help/help_base.html:7 msgctxt "help" msgid "Client" @@ -2545,23 +1950,274 @@ msgid "" "the library, you'll have to enter password again." msgstr "" -#: seahub/message/views.py:184 -#: seahub/message/templates/message/all_msg_list.html:156 -msgid "message is required" +#: seahub/institutions/templates/institutions/base.html:4 +msgid "Exit" msgstr "" -#: seahub/message/views.py:187 -#: seahub/message/templates/message/all_msg_list.html:160 -msgid "contact is required" +#: seahub/institutions/templates/institutions/base.html:11 +#: seahub/institutions/templates/institutions/useradmin.html:9 +#: seahub/templates/sysadmin/base.html:18 +msgid "Users" msgstr "" -#: seahub/message/views.py:212 -msgid "You can not send message to yourself." +#: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/sysadmin/base.html:9 +#: seahub/templates/sysadmin/sys_info.html:7 +msgid "Info" msgstr "" -#: seahub/message/views.py:216 +#: seahub/institutions/templates/institutions/info.html:13 +#: seahub/share/templates/share/repos.html:10 +#: seahub/templates/home_base.html:60 seahub/templates/js/templates.html:676 +#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 +#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/sysadmin/sys_admin_group_info.html:30 +#: seahub/templates/sysadmin/sys_info.html:19 +#: seahub/templates/sysadmin/sys_org_info_group.html:10 +#: seahub/templates/sysadmin/sys_org_info_library.html:10 +#: seahub/templates/sysadmin/sys_org_info_setting.html:10 +#: seahub/templates/sysadmin/sys_org_info_user.html:9 +msgid "Libraries" +msgstr "" + +#: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/sysadmin/sys_info.html:23 +#: seahub/templates/sysadmin/sys_info.html:32 +msgid "Active Users" +msgstr "" + +#: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/sysadmin/sys_info.html:23 +#: seahub/templates/sysadmin/sys_info.html:32 +msgid "Total Users" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:14 +#: seahub/templates/sysadmin/userinfo.html:15 +msgid "Back to user list" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:16 +#: seahub/profile/templates/profile/set_profile.html:10 +#: seahub/templates/sysadmin/userinfo.html:17 +msgid "Profile" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:23 +#: seahub/templates/sysadmin/userinfo.html:29 +msgctxt "true name" +msgid "Name" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:28 +#: seahub/templates/registration/registration_form.html:31 +#: seahub/templates/sysadmin/userinfo.html:34 +msgid "Department" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:31 +#: seahub/templates/registration/registration_form.html:36 +#: seahub/templates/sysadmin/userinfo.html:37 +msgid "Telephone" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:36 +#: seahub/institutions/templates/institutions/useradmin.html:17 +#: seahub/templates/sysadmin/org_admin_table.html:6 +#: seahub/templates/sysadmin/sys_inst_info_user.html:15 +#: seahub/templates/sysadmin/sys_org_info_base.html:26 +#: seahub/templates/sysadmin/sys_org_info_user.html:18 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:28 +#: seahub/templates/sysadmin/sys_useradmin_ldap.html:26 +#: seahub/templates/sysadmin/useradmin_table.html:12 +#: seahub/templates/sysadmin/userinfo.html:42 +msgid "Space Used" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:37 +#: seahub/templates/sysadmin/userinfo.html:43 +msgid "Used" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:45 +#: seahub/templates/i18n.html:11 seahub/templates/sysadmin/userinfo.html:61 +msgid "Owned Libs" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:56 +#: seahub/templates/file_revisions.html:44 +#: seahub/templates/js/templates.html:178 +#: seahub/templates/js/templates.html:855 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:967 +#: seahub/templates/js/templates.html:1171 +#: seahub/templates/js/templates.html:1188 +#: seahub/templates/repo_dir_recycle_view.html:35 +#: seahub/templates/repo_history_view.html:58 +#: seahub/templates/sysadmin/admin_repo_view.html:44 +#: seahub/templates/sysadmin/sys_admin_group_info.html:41 +#: seahub/templates/sysadmin/userinfo.html:74 +#: seahub/templates/sysadmin/userinfo.html:124 +#: seahub/templates/sysadmin/userinfo.html:161 +#: seahub/templates/view_shared_dir.html:51 +msgid "Size" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:57 +#: seahub/templates/js/templates.html:179 +#: seahub/templates/js/templates.html:856 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:877 +#: seahub/templates/js/templates.html:968 seahub/templates/libraries.html:59 +#: seahub/templates/starred.html:15 +#: seahub/templates/sysadmin/admin_repo_view.html:45 +#: seahub/templates/sysadmin/userinfo.html:75 +#: seahub/templates/sysadmin/userinfo.html:125 +#: seahub/templates/view_shared_dir.html:52 +msgid "Last Update" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:64 +#: seahub/templates/js/templates.html:889 +#: seahub/templates/sysadmin/repoadmin_table.html:14 +#: seahub/templates/sysadmin/sys_admin_group_info.html:49 +#: seahub/templates/sysadmin/sys_org_info_library.html:27 +#: seahub/templates/sysadmin/userinfo.html:82 +#: seahub/templates/sysadmin/userinfo.html:131 +msgid "Encrypted" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:64 +#: seahub/institutions/templates/institutions/user_info.html:66 +#: seahub/templates/sysadmin/sys_admin_group_info.html:49 +#: seahub/templates/sysadmin/sys_admin_group_info.html:51 +#: seahub/templates/sysadmin/sys_admin_group_info.html:53 +#: seahub/templates/sysadmin/userinfo.html:82 +#: seahub/templates/sysadmin/userinfo.html:84 +#: seahub/templates/sysadmin/userinfo.html:131 +#: seahub/templates/sysadmin/userinfo.html:133 +#: seahub/templates/sysadmin/userinfo.html:135 +msgid "library icon" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:92 +#: seahub/templates/sysadmin/userinfo.html:112 +msgid "This user has not created any libraries" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:102 +#: seahub/templates/js/templates.html:1064 +#: seahub/templates/sysadmin/sys_useradmin.html:36 +#: seahub/templates/sysadmin/useradmin_table.html:7 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:629 +msgid "Role" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:103 +#: seahub/templates/sysadmin/sys_group_admin.html:19 +#: seahub/templates/sysadmin/sys_inst_admin.html:28 +#: seahub/templates/sysadmin/sys_org_info_group.html:20 +#: seahub/templates/sysadmin/sys_publink_admin.html:14 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:629 +#: seahub/views/sysadmin.py:632 seahub/views/sysadmin.py:1400 +msgid "Create At" +msgstr "" + +#: seahub/institutions/templates/institutions/user_info.html:117 +#: seahub/templates/sysadmin/userinfo.html:223 +msgid "This user has not created or joined any groups" +msgstr "" + +#: seahub/institutions/templates/institutions/useradmin.html:16 +#: seahub/templates/sysadmin/sys_inst_info_user.html:14 +#: seahub/templates/sysadmin/sys_org_info_user.html:17 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:27 +#: seahub/templates/sysadmin/useradmin_table.html:6 +#: seahub/templates/sysadmin/useradmin_table.html:10 +#: seahub/views/sysadmin.py:629 seahub/views/sysadmin.py:632 +msgid "Status" +msgstr "" + +#: seahub/institutions/templates/institutions/useradmin.html:18 +#: seahub/templates/sysadmin/sys_inst_info_user.html:16 +#: seahub/templates/sysadmin/sys_org_info_user.html:19 +#: seahub/templates/sysadmin/sys_useradmin_ldap.html:25 +#: seahub/templates/sysadmin/useradmin_table.html:13 +msgid "Create At / Last Login" +msgstr "" + +#: seahub/institutions/templates/institutions/useradmin.html:29 +#: seahub/templates/sysadmin/sys_inst_info_user.html:26 +#: seahub/templates/sysadmin/sys_org_info_user.html:29 +#: seahub/templates/sysadmin/sys_org_info_user.html:36 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:40 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:47 +#: seahub/templates/sysadmin/useradmin_table.html:32 +#: seahub/templates/sysadmin/useradmin_table.html:39 +#: seahub/views/sysadmin.py:646 +msgid "Active" +msgstr "" + +#: seahub/institutions/templates/institutions/useradmin.html:31 +#: seahub/templates/sysadmin/sys_inst_info_user.html:28 +#: seahub/templates/sysadmin/sys_org_info_user.html:31 +#: seahub/templates/sysadmin/sys_org_info_user.html:37 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:42 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:48 +#: seahub/templates/sysadmin/useradmin_table.html:34 +#: seahub/templates/sysadmin/useradmin_table.html:40 +#: seahub/views/sysadmin.py:648 +msgid "Inactive" +msgstr "" + +#: seahub/institutions/templates/institutions/useradmin.html:60 +#: seahub/templates/sysadmin/sys_org_info_user.html:66 +#: seahub/templates/sysadmin/useradmin_js.html:3 +msgid "Delete User" +msgstr "" + +#: seahub/institutions/views.py:99 +#: seahub/templates/sysadmin/repoadmin_table.html:8 +#: seahub/templates/sysadmin/sys_org_admin.html:30 +#: seahub/templates/sysadmin/sys_org_info_library.html:21 +#: seahub/templates/sysadmin/sys_publink_admin.html:13 +#: seahub/templates/sysadmin/sys_repo_search.html:17 +#: seahub/templates/sysadmin/sys_repo_trash.html:29 +#: seahub/templates/sysadmin/sys_virus_scan_records.html:12 +#: seahub/views/sysadmin.py:935 +msgid "Owner" +msgstr "" + +#: seahub/institutions/views.py:101 seahub/templates/base.html:91 +#: seahub/templates/base.html.py:96 +#: seahub/templates/base_for_backbone.html:102 +#: seahub/templates/base_for_backbone.html:107 +#: seahub/templates/js/templates.html:1098 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1109 seahub/views/sysadmin.py:630 +#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +msgid "Admin" +msgstr "" + +#: seahub/institutions/views.py:103 seahub/templates/js/templates.html:1101 +#: seahub/templates/js/templates.html:1105 +#: seahub/templates/js/templates.html:1108 seahub/views/sysadmin.py:939 +msgid "Member" +msgstr "" + +#: seahub/institutions/views.py:129 seahub/views/sysadmin.py:1039 #, python-format -msgid "Failed to send message to %s, user not found." +msgid "Successfully deleted %s" +msgstr "" + +#: seahub/institutions/views.py:131 seahub/views/sysadmin.py:1041 +msgid "Failed to delete: the user does not exist" +msgstr "" + +#: seahub/message/templates/message/all_msg_list.html:4 +#: seahub/message/templates/message/all_msg_list.html:16 +#: seahub/message/templates/message/user_msg_list.html:4 +msgid "Messages" msgstr "" #: seahub/message/templates/message/all_msg_list.html:17 @@ -2594,10 +2250,45 @@ msgstr "" msgid "please add contacts at first" msgstr "" +#: seahub/message/templates/message/all_msg_list.html:156 +#: seahub/message/views.py:184 +msgid "message is required" +msgstr "" + +#: seahub/message/templates/message/all_msg_list.html:160 +#: seahub/message/views.py:187 +msgid "contact is required" +msgstr "" + +#: seahub/message/templates/message/user_msg_list.html:9 +#, python-format +msgid "Messages with %(name)s" +msgstr "" + #: seahub/message/templates/message/user_msg_list.html:15 msgid "Send a message..." msgstr "" +#: seahub/message/views.py:212 +msgid "You can not send message to yourself." +msgstr "" + +#: seahub/message/views.py:216 +#, python-format +msgid "Failed to send message to %s, user not found." +msgstr "" + +#: seahub/notifications/management/commands/notify_admins_on_virus.py:42 +#, python-format +msgid "Virus detected on %s" +msgstr "" + +#: seahub/notifications/management/commands/send_notices.py:30 +#: seahub/notifications/management/commands/send_notices.py:274 +#, python-format +msgid "New notice on %s" +msgstr "" + #: seahub/notifications/models.py:513 seahub/notifications/models.py:555 #: seahub/notifications/models.py:582 seahub/notifications/models.py:603 #: seahub/notifications/models.py:623 seahub/notifications/models.py:640 @@ -2676,16 +2367,6 @@ msgid "" "%(group_name)s" msgstr "" -#: seahub/notifications/views.py:129 -msgid "Successfully cleared all notices." -msgstr "" - -#: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:271 -#, python-format -msgid "New notice on %s" -msgstr "" - #: seahub/notifications/templates/notifications/notice_email.html:7 #, python-format msgid "Hi, %(name)s" @@ -2787,6 +2468,7 @@ msgstr "" #: seahub/notifications/templates/notifications/notification_list.html:39 #: seahub/templates/sysadmin/sys_group_admin.html:42 +#: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_publink_admin.html:33 msgid "Empty" msgstr "" @@ -2795,6 +2477,22 @@ msgstr "" msgid "Delete Notification" msgstr "" +#: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/templates/registration/activation_email.html:9 +#: seahub/templates/registration/password_reset_email.html:9 +#: seahub/templates/shared_link_email.html:9 +#: seahub/templates/shared_upload_link_email.html:8 +#: seahub/templates/sysadmin/user_activation_email.html:9 +#: seahub/templates/sysadmin/user_add_email.html:9 +#: seahub/templates/sysadmin/user_batch_add_email.html:9 +#: seahub/templates/sysadmin/user_reset_email.html:9 +msgid "Hi," +msgstr "" + +#: seahub/notifications/templates/notifications/notify_virus.html:12 +msgid "Virus is detected on regular scanning. Please check the report at:" +msgstr "" + #: seahub/notifications/templates/notifications/user_notification_list.html:4 #: seahub/notifications/templates/notifications/user_notification_list.html:9 msgid "Notices" @@ -2809,37 +2507,41 @@ msgid "Clear" msgstr "" #: seahub/notifications/templates/notifications/user_notification_list.html:31 -#: seahub/templates/activities.html:15 seahub/templates/libraries.html:129 +#: seahub/templates/libraries.html:75 #: seahub/templates/repo_dir_recycle_view.html:48 msgid "More" msgstr "" +#: seahub/notifications/views.py:129 +msgid "Successfully cleared all notices." +msgstr "" + #: seahub/options/templates/options/set_user_options.html:7 msgid "Please choose how to view encrypted libraries online:" msgstr "" #: seahub/options/templates/options/set_user_options.html:10 -#: seahub/profile/templates/profile/set_profile.html:102 +#: seahub/profile/templates/profile/set_profile.html:96 msgid "Send passwords to the server." msgstr "" #: seahub/options/templates/options/set_user_options.html:10 -#: seahub/profile/templates/profile/set_profile.html:102 +#: seahub/profile/templates/profile/set_profile.html:96 msgid "Files will be decrypted in the server before being sent to you." msgstr "" #: seahub/options/templates/options/set_user_options.html:12 -#: seahub/profile/templates/profile/set_profile.html:105 +#: seahub/profile/templates/profile/set_profile.html:99 msgid "Save passwords in your browser." msgstr "" #: seahub/options/templates/options/set_user_options.html:12 -#: seahub/profile/templates/profile/set_profile.html:105 +#: seahub/profile/templates/profile/set_profile.html:99 msgid "Files will be decrypted in your browser when you download them." msgstr "" #: seahub/options/templates/options/set_user_options.html:13 -#: seahub/profile/templates/profile/set_profile.html:106 +#: seahub/profile/templates/profile/set_profile.html:100 msgid "" "Tip: the latter way is more secure, but it is not supported well by all " "browsers. We advise you to use the latest version of Chrome or Firefox." @@ -2849,43 +2551,22 @@ msgstr "" msgid "Nickname should not include ' / '" msgstr "" -#: seahub/profile/views.py:38 -msgid "Successfully edited profile." -msgstr "" - -#: seahub/profile/views.py:44 -msgid "Failed to edit profile" -msgstr "" - -#: seahub/profile/views.py:107 seahub/profile/views.py:140 -msgid "Has not accepted invitation yet" -msgstr "" - -#: seahub/profile/views.py:159 -msgid "Demo account can not be deleted." -msgstr "" - -#: seahub/profile/views.py:185 -msgid "Failed to set default library." -msgstr "" - -#: seahub/profile/views.py:189 -msgid "Can not set encrypted library as default library." -msgstr "" - -#: seahub/profile/views.py:194 -#, python-format -msgid "Successfully set \"%s\" as your default library." -msgstr "" - #: seahub/profile/templates/profile/profile_base.html:4 #: seahub/profile/templates/profile/set_profile.html:30 msgid "Profile Setting" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:10 -#: seahub/templates/sysadmin/userinfo.html:17 -msgid "Profile" +#: seahub/profile/templates/profile/set_profile.html:5 +#: seahub/profile/templates/profile/set_profile.html:27 +#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 +#: seahub/templates/js/templates.html:716 seahub/templates/libraries.html:147 +#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/sysadmin/settings.html:7 +#: seahub/templates/sysadmin/sys_org_info_group.html:11 +#: seahub/templates/sysadmin/sys_org_info_library.html:11 +#: seahub/templates/sysadmin/sys_org_info_setting.html:11 +#: seahub/templates/sysadmin/sys_org_info_user.html:10 +msgid "Settings" msgstr "" #: seahub/profile/templates/profile/set_profile.html:11 @@ -2905,8 +2586,8 @@ msgid "Default Library" msgstr "" #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/profile/templates/profile/set_profile.html:136 -#: seahub/profile/templates/profile/set_profile.html:168 +#: seahub/profile/templates/profile/set_profile.html:130 +#: seahub/profile/templates/profile/set_profile.html:162 msgid "Delete Account" msgstr "" @@ -2914,12 +2595,15 @@ msgstr "" msgid "Avatar:" msgstr "" +#: seahub/profile/templates/profile/set_profile.html:34 +msgid "Change" +msgstr "" + #: seahub/profile/templates/profile/set_profile.html:41 msgid "Password:" msgstr "" #: seahub/profile/templates/profile/set_profile.html:41 -#: seahub/templates/snippets/repo_dirents.html:88 msgid "Update" msgstr "" @@ -2944,39 +2628,35 @@ msgstr "" msgid "Your notifications will be sent to this email." msgstr "" -#: seahub/profile/templates/profile/set_profile.html:61 -msgid "About me:" -msgstr "" - -#: seahub/profile/templates/profile/set_profile.html:68 +#: seahub/profile/templates/profile/set_profile.html:62 msgid "Department:" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:73 +#: seahub/profile/templates/profile/set_profile.html:67 msgid "Telephone:" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:85 +#: seahub/profile/templates/profile/set_profile.html:79 msgid "Language Setting" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:98 +#: seahub/profile/templates/profile/set_profile.html:92 msgid "Encrypted Libraries Setting" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:100 +#: seahub/profile/templates/profile/set_profile.html:94 msgid "How to view encrypted libraries online:" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:114 +#: seahub/profile/templates/profile/set_profile.html:108 msgid "Sub-library Setting" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:116 +#: seahub/profile/templates/profile/set_profile.html:110 msgid "Enable sub-library" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:117 +#: seahub/profile/templates/profile/set_profile.html:111 msgid "" "This feature enables you to selectively sync a folder inside a library. A " "sub-library can be created from any folder. After being created, it will be " @@ -2985,7 +2665,7 @@ msgid "" "library." msgstr "" -#: seahub/profile/templates/profile/set_profile.html:118 +#: seahub/profile/templates/profile/set_profile.html:112 msgid "" "Sub-library is also used when sharing a folder to a group or another user. " "Without this option on, a hidden sub-library will be created automatically " @@ -2993,36 +2673,169 @@ msgid "" "listed, which enables you to manage them." msgstr "" -#: seahub/profile/templates/profile/set_profile.html:125 +#: seahub/profile/templates/profile/set_profile.html:119 msgid "Default Library Setting" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:127 +#: seahub/profile/templates/profile/set_profile.html:121 msgid "Your default library:" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:129 +#: seahub/profile/templates/profile/set_profile.html:123 msgid "" "Default library is the default place to store your personal documents and " "pictures." msgstr "" -#: seahub/profile/templates/profile/set_profile.html:130 +#: seahub/profile/templates/profile/set_profile.html:124 msgid "Choose Default Library" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:137 +#: seahub/profile/templates/profile/set_profile.html:131 msgid "This operation will not be reverted. Please think twice!" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:146 +#: seahub/profile/templates/profile/set_profile.html:140 msgid "Choose default library:" msgstr "" -#: seahub/profile/templates/profile/set_profile.html:169 +#: seahub/profile/templates/profile/set_profile.html:163 msgid "Really want to delete your account?" msgstr "" +#: seahub/profile/views.py:38 +msgid "Successfully edited profile." +msgstr "" + +#: seahub/profile/views.py:44 +msgid "Failed to edit profile" +msgstr "" + +#: seahub/profile/views.py:136 +msgid "Has not accepted invitation yet" +msgstr "" + +#: seahub/profile/views.py:155 +msgid "Demo account can not be deleted." +msgstr "" + +#: seahub/profile/views.py:181 +msgid "Failed to set default library." +msgstr "" + +#: seahub/profile/views.py:185 +msgid "Can not set encrypted library as default library." +msgstr "" + +#: seahub/profile/views.py:190 +#, python-format +msgid "Successfully set \"%s\" as your default library." +msgstr "" + +#: seahub/settings.py:141 +msgid "català" +msgstr "" + +#: seahub/settings.py:142 +msgid "Deutsch" +msgstr "" + +#: seahub/settings.py:143 +msgid "English" +msgstr "" + +#: seahub/settings.py:144 +msgid "Español" +msgstr "" + +#: seahub/settings.py:145 +msgid "Español de Argentina" +msgstr "" + +#: seahub/settings.py:146 +msgid "Español de México" +msgstr "" + +#: seahub/settings.py:147 +msgid "français" +msgstr "" + +#: seahub/settings.py:148 +msgid "עברית" +msgstr "" + +#: seahub/settings.py:149 +msgid "Magyar" +msgstr "" + +#: seahub/settings.py:150 +msgid "Íslenska" +msgstr "" + +#: seahub/settings.py:151 +msgid "Italiano" +msgstr "" + +#: seahub/settings.py:152 +msgid "日本語" +msgstr "" + +#: seahub/settings.py:153 +msgid "한국어" +msgstr "" + +#: seahub/settings.py:154 +msgid "Latvian" +msgstr "" + +#: seahub/settings.py:155 +msgid "Nederlands" +msgstr "" + +#: seahub/settings.py:156 +msgid "Polski" +msgstr "" + +#: seahub/settings.py:157 +msgid "Portuguese, Brazil" +msgstr "" + +#: seahub/settings.py:158 +msgid "Русский" +msgstr "" + +#: seahub/settings.py:159 +msgid "Slovak" +msgstr "" + +#: seahub/settings.py:160 +msgid "Slovenian" +msgstr "" + +#: seahub/settings.py:161 +msgid "Svenska" +msgstr "" + +#: seahub/settings.py:162 +msgid "ไทย" +msgstr "" + +#: seahub/settings.py:163 +msgid "Türkçe" +msgstr "" + +#: seahub/settings.py:164 +msgid "українська мова" +msgstr "" + +#: seahub/settings.py:165 +msgid "简体中文" +msgstr "" + +#: seahub/settings.py:166 +msgid "繁體中文" +msgstr "" + #: seahub/share/forms.py:20 seahub/share/forms.py:33 msgid "Email is not longer than 512 characters" msgstr "" @@ -3031,207 +2844,33 @@ msgstr "" msgid "Please enter a correct password." msgstr "" -#: seahub/share/views.py:89 -msgid "Failed to share to all members, please try again later." -msgstr "" - -#: seahub/share/views.py:91 -#, python-format -msgid "" -"Shared to all members successfully, go check it at Shares." -msgstr "" - -#: seahub/share/views.py:222 seahub/share/views.py:1381 -msgid "Only the owner of the library has permission to share it." -msgstr "" - -#: seahub/share/views.py:258 -#, python-format -msgid "" -"Failed to share \"%s\", no enough quota. Upgrade account." -msgstr "" - -#: seahub/share/views.py:289 seahub/share/views.py:383 -#: seahub/share/views.py:648 seahub/views/__init__.py:1097 -#: seahub/views/__init__.py:1138 seahub/views/__init__.py:1467 -#: seahub/views/__init__.py:1838 seahub/views/ajax.py:1785 -#: seahub/views/ajax.py:1809 seahub/views/ajax.py:2329 -#: seahub/views/ajax.py:2471 seahub/views/file.py:1603 -#: seahub/views/sysadmin.py:229 seahub/views/sysadmin.py:1872 -msgid "Library does not exist" -msgstr "" - -#: seahub/share/views.py:298 seahub/share/views.py:313 -#: seahub/share/views.py:361 -msgid "Invalid argument" -msgstr "" - -#: seahub/share/views.py:378 seahub/share/views.py:398 -#: seahub/views/__init__.py:1342 -msgid "Argument is not valid" -msgstr "" - -#: seahub/share/views.py:401 seahub/share/views.py:422 -msgid "Failed to remove share" -msgstr "" - -#: seahub/share/views.py:414 -msgid "group id is not valid" -msgstr "" - -#: seahub/share/views.py:418 -msgid "Failed to unshare: the group doesn't exist." -msgstr "" - -#: seahub/share/views.py:432 -msgid "Successfully removed share" -msgstr "" - -#: seahub/share/views.py:499 -msgid "all members" -msgstr "" - -#: seahub/share/views.py:818 seahub/share/views.py:846 -msgid "The link doesn't exist" -msgstr "" - -#: seahub/share/views.py:869 -msgid "" -"Sending shared link failed. Email service is not properly configured, please " -"contact administrator." -msgstr "" - -#: seahub/share/views.py:915 -msgid "file" -msgstr "" - -#: seahub/share/views.py:916 -#, python-format -msgid "A file is shared to you on %s" -msgstr "" - -#: seahub/share/views.py:922 -msgid "directory" -msgstr "" - -#: seahub/share/views.py:923 -#, python-format -msgid "A directory is shared to you on %s" -msgstr "" - -#: seahub/share/views.py:936 seahub/share/views.py:1153 -msgid "Internal server error, or please check the email(s) you entered" -msgstr "" - -#: seahub/share/views.py:956 -msgid "Please choose a directory." -msgstr "" - -#: seahub/share/views.py:978 seahub/share/views.py:1082 -msgid "Successfully saved." -msgstr "" - -#: seahub/share/views.py:1004 -#, python-format -msgid "Failed to share to \"%s\", user not found." -msgstr "" - -#: seahub/share/views.py:1018 -#, python-format -msgid "Successfully shared %s." -msgstr "" - -#: seahub/share/views.py:1039 -#, python-format -msgid "Successfully unshared \"%s\"." -msgstr "" - -#: seahub/share/views.py:1041 -#, python-format -msgid "You don't have permission to unshare %s." -msgstr "" - -#: seahub/share/views.py:1084 -#, python-format -msgid "You don't have permission to save %s." -msgstr "" - -#: seahub/share/views.py:1099 -msgid "" -"Sending shared upload link failed. Email service is not properly configured, " -"please contact administrator." -msgstr "" - -#: seahub/share/views.py:1140 -#, python-format -msgid "An upload link is shared to you on %s" -msgstr "" - -#: seahub/share/views.py:1186 seahub/share/views.py:1264 -msgid "You do not have permission to generate shared link" -msgstr "" - -#: seahub/share/views.py:1196 seahub/share/views.py:1275 -#: seahub/views/__init__.py:1136 seahub/views/__init__.py:1531 -#: seahub/views/__init__.py:1594 seahub/views/ajax.py:1187 -#: seahub/views/ajax.py:1207 seahub/views/file.py:1073 -msgid "Invalid arguments" -msgstr "" - -#: seahub/share/views.py:1201 seahub/share/views.py:1280 -#: seahub/templates/snippets/repo_create_js.html:50 -#: seahub/templates/snippets/shared_link_js.html:254 -#: seahub/templates/snippets/shared_link_js.html:430 -msgid "Password is too short" -msgstr "" - -#: seahub/share/views.py:1328 seahub/thumbnail/views.py:39 -#: seahub/thumbnail/views.py:141 seahub/views/ajax.py:249 -#: seahub/views/ajax.py:336 seahub/views/ajax.py:409 seahub/views/ajax.py:518 -#: seahub/views/ajax.py:605 seahub/views/ajax.py:669 seahub/views/ajax.py:719 -#: seahub/views/ajax.py:763 seahub/views/ajax.py:978 seahub/views/ajax.py:1243 -#: seahub/views/ajax.py:1874 seahub/views/ajax.py:2676 -msgid "Library does not exist." -msgstr "" - -#: seahub/share/views.py:1332 -msgid "Directory does not exist." -msgstr "" - -#: seahub/share/views.py:1424 -msgid "Please check the email(s) you entered" -msgstr "" - #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/repo_shared_link.html:32 +#: seahub/templates/js/templates.html:1159 msgid "Download Links" msgstr "" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/repo_shared_link.html:31 +#: seahub/templates/js/templates.html:1160 msgid "Upload Links" msgstr "" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/share/templates/share/priv_shared_files.html:23 -#: seahub/share/templates/share/priv_shared_files.html:61 -#: seahub/templates/activities.html:19 seahub/templates/file_edit.html:129 -#: seahub/templates/libraries.html:112 seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:58 +#: seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/repo_shared_link.html:41 -#: seahub/templates/repo_shared_link.html:67 -#: seahub/templates/sysadmin/userinfo.html:167 +#: seahub/templates/js/templates.html:1172 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "" @@ -3241,17 +2880,17 @@ msgstr "" #: seahub/share/templates/share/links.html:47 #: seahub/share/templates/share/links.html:78 -#: seahub/templates/file_revisions.html:77 seahub/templates/repo.html:920 +#: seahub/templates/file_revisions.html:77 msgid "View" msgstr "" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/repo_shared_link.html:53 -#: seahub/templates/repo_shared_link.html:85 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 -#: seahub/templates/sysadmin/userinfo.html:185 -#: seahub/templates/sysadmin/userinfo.html:194 +#: seahub/templates/sysadmin/userinfo.html:181 +#: seahub/templates/sysadmin/userinfo.html:190 msgid "Remove" msgstr "" @@ -3280,43 +2919,47 @@ msgid "Folders - Share" msgstr "" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:31 seahub/templates/js/templates.html:604 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:677 msgid "Folders" msgstr "" #: seahub/share/templates/share/list_priv_shared_folders.html:16 #: seahub/share/templates/share/repos.html:16 -#: seahub/templates/repo_share_manage.html:49 -#: seahub/templates/repo_share_manage.html:82 msgid "Share To" msgstr "" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/repo_folder_perm.html:48 -#: seahub/templates/repo_folder_perm.html:100 -#: seahub/templates/repo_share_manage.html:50 -#: seahub/templates/repo_share_manage.html:83 -#: seahub/templates/js/templates.html:243 -#: seahub/templates/js/templates.html:493 -#: seahub/templates/js/templates.html:516 -#: seahub/templates/js/templates.html:732 -#: seahub/templates/js/templates.html:754 -#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:215 +#: seahub/templates/js/templates.html:394 +#: seahub/templates/js/templates.html:537 +#: seahub/templates/js/templates.html:560 +#: seahub/templates/js/templates.html:791 +#: seahub/templates/js/templates.html:813 +#: seahub/templates/js/templates.html:878 +#: seahub/templates/js/templates.html:1242 +#: seahub/templates/js/templates.html:1286 msgid "Permission" msgstr "" +#: seahub/share/templates/share/list_priv_shared_folders.html:22 +#: seahub/share/templates/share/repos.html:23 +#: seahub/share/templates/share/repos.html:25 +#: seahub/templates/sysadmin/repoadmin_table.html:14 +#: seahub/templates/sysadmin/repoadmin_table.html:17 +#: seahub/templates/sysadmin/sys_org_info_library.html:27 +#: seahub/templates/sysadmin/sys_org_info_library.html:29 +#: seahub/templates/sysadmin/sys_repo_trash.html:35 +msgid "directory icon" +msgstr "" + #: seahub/share/templates/share/list_priv_shared_folders.html:41 #: seahub/share/templates/share/list_priv_shared_folders.html:44 #: seahub/share/templates/share/list_priv_shared_folders.html:47 -#: seahub/share/templates/share/priv_shared_files.html:39 -#: seahub/share/templates/share/priv_shared_files.html:77 #: seahub/share/templates/share/repos.html:45 #: seahub/share/templates/share/repos.html:48 #: seahub/share/templates/share/repos.html:51 -#: seahub/templates/repo_share_manage.html:72 -#: seahub/templates/repo_share_manage.html:105 -#: seahub/templates/js/templates.html:68 seahub/templates/js/templates.html:92 +#: seahub/templates/js/templates.html:71 seahub/templates/js/templates.html:87 msgid "Unshare" msgstr "" @@ -3332,58 +2975,20 @@ msgstr "" #: seahub/share/templates/share/list_priv_shared_folders.html:90 #: seahub/share/templates/share/repos.html:99 -#: seahub/templates/sysadmin/sys_org_info_user.html:114 +#: seahub/templates/sysadmin/sys_inst_info_user.html:96 +#: seahub/templates/sysadmin/sys_org_info_user.html:109 #: seahub/templates/sysadmin/useradmin_js.html:68 msgid "Edit succeeded" msgstr "" #: seahub/share/templates/share/list_priv_shared_folders.html:95 #: seahub/share/templates/share/repos.html:106 -#: seahub/templates/sysadmin/sys_org_info_user.html:122 +#: seahub/templates/sysadmin/sys_inst_info_user.html:104 +#: seahub/templates/sysadmin/sys_org_info_user.html:117 #: seahub/templates/sysadmin/useradmin_js.html:76 msgid "Edit failed." msgstr "" -#: seahub/share/templates/share/priv_shared_files.html:5 -msgid "Files - Share" -msgstr "" - -#: seahub/share/templates/share/priv_shared_files.html:12 -msgid "From Others" -msgstr "" - -#: seahub/share/templates/share/priv_shared_files.html:14 -msgid "To Others" -msgstr "" - -#: seahub/share/templates/share/priv_shared_files.html:24 -msgid "From" -msgstr "" - -#: seahub/share/templates/share/priv_shared_files.html:48 -msgid "No file is shared to you" -msgstr "" - -#: seahub/share/templates/share/priv_shared_files.html:49 -msgid "" -"Single files shared to you will be listed here, and you can download them or " -"save them to some libraries." -msgstr "" - -#: seahub/share/templates/share/priv_shared_files.html:62 -msgid "To" -msgstr "" - -#: seahub/share/templates/share/priv_shared_files.html:86 -msgid "You don't have any private shared files" -msgstr "" - -#: seahub/share/templates/share/priv_shared_files.html:87 -msgid "" -"You can share a single file with a registered user if you don't want to " -"share a whole library." -msgstr "" - #: seahub/share/templates/share/repos.html:5 msgid "Libraries - Share" msgstr "" @@ -3399,27 +3004,140 @@ msgid "" "groups you are in." msgstr "" +#: seahub/share/views.py:86 +msgid "Failed to share to all members, please try again later." +msgstr "" + +#: seahub/share/views.py:88 +#, python-format +msgid "" +"Shared to all members successfully, go check it at Shares." +msgstr "" + +#: seahub/share/views.py:185 seahub/share/views.py:1258 +msgid "Only the owner of the library has permission to share it." +msgstr "" + +#: seahub/share/views.py:244 seahub/share/views.py:338 +#: seahub/share/views.py:603 seahub/views/__init__.py:696 +#: seahub/views/__init__.py:737 seahub/views/__init__.py:1023 +#: seahub/views/__init__.py:1246 seahub/views/ajax.py:1637 +#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 +#: seahub/views/ajax.py:2178 seahub/views/file.py:1597 +#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 +#: seahub/views/sysadmin.py:1873 +msgid "Library does not exist" +msgstr "" + +#: seahub/share/views.py:253 seahub/share/views.py:268 +#: seahub/share/views.py:316 +msgid "Invalid argument" +msgstr "" + +#: seahub/share/views.py:333 seahub/share/views.py:353 +#: seahub/views/__init__.py:898 +msgid "Argument is not valid" +msgstr "" + +#: seahub/share/views.py:356 seahub/share/views.py:377 +msgid "Failed to remove share" +msgstr "" + +#: seahub/share/views.py:369 +msgid "group id is not valid" +msgstr "" + +#: seahub/share/views.py:373 +msgid "Failed to unshare: the group doesn't exist." +msgstr "" + +#: seahub/share/views.py:387 +msgid "Successfully removed share" +msgstr "" + +#: seahub/share/views.py:454 +msgid "all members" +msgstr "" + +#: seahub/share/views.py:691 seahub/share/views.py:719 +msgid "The link doesn't exist" +msgstr "" + +#: seahub/share/views.py:809 seahub/share/views.py:1026 +msgid "Internal server error, or please check the email(s) you entered" +msgstr "" + +#: seahub/share/views.py:829 +msgid "Please choose a directory." +msgstr "" + +#: seahub/share/views.py:851 seahub/share/views.py:955 +msgid "Successfully saved." +msgstr "" + +#: seahub/share/views.py:877 +#, python-format +msgid "Failed to share to \"%s\", user not found." +msgstr "" + +#: seahub/share/views.py:891 +#, python-format +msgid "Successfully shared %s." +msgstr "" + +#: seahub/share/views.py:912 +#, python-format +msgid "Successfully unshared \"%s\"." +msgstr "" + +#: seahub/share/views.py:914 +#, python-format +msgid "You don't have permission to unshare %s." +msgstr "" + +#: seahub/share/views.py:957 +#, python-format +msgid "You don't have permission to save %s." +msgstr "" + +#: seahub/share/views.py:972 +msgid "" +"Sending shared upload link failed. Email service is not properly configured, " +"please contact administrator." +msgstr "" + +#: seahub/share/views.py:1059 seahub/share/views.py:1141 +msgid "You do not have permission to generate shared link" +msgstr "" + +#: seahub/share/views.py:1069 seahub/share/views.py:1152 +#: seahub/views/__init__.py:735 seahub/views/__init__.py:1086 +#: seahub/views/__init__.py:1135 seahub/views/ajax.py:1061 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1068 +msgid "Invalid arguments" +msgstr "" + +#: seahub/share/views.py:1205 seahub/thumbnail/views.py:39 +#: seahub/thumbnail/views.py:142 seahub/views/ajax.py:251 +#: seahub/views/ajax.py:392 seahub/views/ajax.py:479 seahub/views/ajax.py:543 +#: seahub/views/ajax.py:593 seahub/views/ajax.py:637 seahub/views/ajax.py:852 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1726 +#: seahub/views/ajax.py:2383 +msgid "Library does not exist." +msgstr "" + +#: seahub/share/views.py:1209 +msgid "Directory does not exist." +msgstr "" + +#: seahub/share/views.py:1296 +msgid "Please check the email(s) you entered" +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "" -#: seahub/templates/activities.html:4 seahub/templates/home_base.html:17 -#: seahub/templates/js/templates.html:588 -msgid "Activities" -msgstr "" - -#: seahub/templates/activities.html:19 seahub/templates/file_edit.html:129 -msgid "is encrypted" -msgstr "" - -#: seahub/templates/activities.html:21 seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "" - -#: seahub/templates/activities.html:23 seahub/templates/file_edit.html:132 -msgid "The password will be kept in the server for only 1 hour." -msgstr "" - #: seahub/templates/admin_base.html:4 msgid "Exit System Admin" msgstr "" @@ -3427,62 +3145,41 @@ msgstr "" #: seahub/templates/base.html:25 seahub/templates/base.html.py:62 #: seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:98 -#: seahub/templates/file_edit.html:328 seahub/templates/libraries.html:141 -#: seahub/templates/js/lib-op-popups.html:86 +#: seahub/templates/base_for_backbone.html:73 +#: seahub/templates/file_edit.html:328 +#: seahub/templates/js/lib-op-popups.html:97 +#: seahub/templates/libraries.html:109 seahub/templates/libraries.html:133 +#: seahub/templates/libraries.html:146 msgid "Close" msgstr "" #: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:86 -#: seahub/templates/base_for_backbone.html:92 -#: seahub/templates/sysadmin/base.html:29 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/base_for_backbone.html:67 +#: seahub/templates/sysadmin/base.html:34 msgid "Notifications" msgstr "" -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:96 +#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 msgid "See All Notifications" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:118 +#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 #: seahub/templates/finish_payment.html:6 msgid "Log out" msgstr "" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:122 +#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "" -#: seahub/templates/base.html:193 seahub/templates/js/templates.html:113 -#: seahub/templates/sysadmin/sys_group_admin.html:8 -msgid "All Groups" -msgstr "" - #: seahub/templates/base_for_backbone.html:29 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "" -#: seahub/templates/base_for_backbone.html:53 -#: seahub/templates/myhome_base.html:6 -msgid "My Home" -msgstr "" - -#: seahub/templates/base_for_backbone.html:68 -#: seahub/templates/libraries.html:19 seahub/templates/myhome_base.html:13 -msgctxt "" -"This is a label in navigation, meaning the public area for all registered " -"users to share libraries." -msgid "Organization" -msgstr "" - -#: seahub/templates/base_for_backbone.html:73 seahub/templates/footer.html:8 -#: seahub/templates/myhome_base.html:17 -msgid "Help" -msgstr "" - #: seahub/templates/choose_register.html:13 #: seahub/templates/registration/login.html:38 #: seahub/templates/registration/registration_form.html:11 @@ -3503,96 +3200,46 @@ msgid "" "it online. And the password will be kept on the server for only 1 hour." msgstr "" -#: seahub/templates/decrypt_repo_form.html:9 seahub/templates/repo.html:210 +#: seahub/templates/decrypt_repo_form.html:9 #: seahub/templates/share_access_validation.html:12 msgid "Password: " msgstr "" -#: seahub/templates/decrypt_repo_form.html:21 seahub/templates/repo.html:215 +#: seahub/templates/decrypt_repo_form.html:21 #, python-format msgid "" "You can change how to view encrypted libraries online here." msgstr "" -#: seahub/templates/decrypt_repo_form.html:33 seahub/templates/repo.html:635 +#: seahub/templates/decrypt_repo_form.html:33 #: seahub/templates/share_access_validation.html:28 msgid "Please enter the password." msgstr "" -#: seahub/templates/devices.html:5 seahub/templates/devices.html.py:9 -#: seahub/templates/home_base.html:24 seahub/templates/js/templates.html:597 -msgid "Devices" -msgstr "" - -#: seahub/templates/devices.html:13 -msgid "Platform" -msgstr "" - -#: seahub/templates/devices.html:14 seahub/templates/file_access.html:27 -msgid "Device Name" -msgstr "" - -#: seahub/templates/devices.html:15 seahub/templates/file_access.html:27 -msgid "IP" -msgstr "" - -#: seahub/templates/devices.html:16 -msgid "Last Access" -msgstr "" - -#: seahub/templates/devices.html:17 -msgid "# Libraries" -msgstr "" - -#: seahub/templates/devices.html:38 -msgid "Unlink" -msgstr "" - -#: seahub/templates/devices.html:45 -#, python-format -msgid "Really want to unlink %s?" -msgstr "" - -#: seahub/templates/devices.html:46 -msgid "It will immediately stop syncing." -msgstr "" - -#: seahub/templates/devices.html:52 -msgid "You do not have connected devices" -msgstr "" - -#: seahub/templates/devices.html:53 -msgid "Your clients (Desktop/Android/iOS) will be listed here." -msgstr "" - -#: seahub/templates/devices.html:112 -msgid "Successfully unlinked." -msgstr "" - #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/repo.html:27 seahub/templates/repo_history_view.html:78 +#: seahub/templates/js/templates.html:200 +#: seahub/templates/js/templates.html:279 +#: seahub/templates/js/templates.html:358 +#: seahub/templates/js/templates.html:384 +#: seahub/templates/repo_history_view.html:78 #: seahub/templates/shared_file_view.html:41 #: seahub/templates/shared_file_view.html:73 +#: seahub/templates/sysadmin/admin_repo_view.html:92 +#: seahub/templates/sysadmin/userinfo.html:178 #: seahub/templates/view_file_base.html:72 #: seahub/templates/view_file_base.html:109 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 -#: seahub/templates/view_shared_dir.html:60 -#: seahub/templates/view_shared_dir.html:92 -#: seahub/templates/view_shared_dir.html:110 -#: seahub/templates/view_shared_dir.html:140 -#: seahub/templates/js/templates.html:228 -#: seahub/templates/js/templates.html:309 -#: seahub/templates/snippets/repo_dirents.html:24 -#: seahub/templates/snippets/repo_dirents.html:75 -#: seahub/templates/sysadmin/admin_repo_view.html:70 -#: seahub/templates/sysadmin/userinfo.html:182 +#: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:118 +#: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:326 +#: seahub/templates/js/templates.html:296 msgid "Access Log" msgstr "" @@ -3601,20 +3248,26 @@ msgstr "" msgid "Current Path:" msgstr "" -#: seahub/templates/file_access.html:25 -#: seahub/templates/repo_folder_perm.html:46 -#: seahub/templates/repo_share_manage.html:38 -#: seahub/templates/js/templates.html:492 -#: seahub/templates/js/templates.html:731 +#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:536 +#: seahub/templates/js/templates.html:790 +#: seahub/templates/js/templates.html:1240 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "" #: seahub/templates/file_access.html:26 -#: seahub/templates/sysadmin/userinfo.html:166 +#: seahub/templates/sysadmin/userinfo.html:162 msgid "Type" msgstr "" +#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:85 +msgid "IP" +msgstr "" + +#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:84 +msgid "Device Name" +msgstr "" + #: seahub/templates/file_access.html:28 msgid "Date" msgstr "" @@ -3646,6 +3299,18 @@ msgstr "" msgid "Draft saved." msgstr "" +#: seahub/templates/file_edit.html:129 +msgid "is encrypted" +msgstr "" + +#: seahub/templates/file_edit.html:130 +msgid "Password:" +msgstr "" + +#: seahub/templates/file_edit.html:132 +msgid "The password will be kept in the server for only 1 hour." +msgstr "" + #: seahub/templates/file_edit.html:140 msgid "Draft Available" msgstr "" @@ -3766,7 +3431,7 @@ msgstr "" #: seahub/templates/sysadmin/sys_useradmin.html:38 #: seahub/templates/sysadmin/useradmin_table.html:50 #: seahub/templates/sysadmin/useradmin_table.html:55 -#: seahub/views/sysadmin.py:642 +#: seahub/views/sysadmin.py:661 msgid "Default" msgstr "" @@ -3792,13 +3457,10 @@ msgid "Password is required." msgstr "" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/repo_basic_info.html:36 -#: seahub/templates/repo_history.html:5 +#: seahub/templates/js/templates.html:140 +#: seahub/templates/js/templates.html:293 +#: seahub/templates/js/templates.html:367 seahub/templates/repo_history.html:5 #: seahub/templates/view_file_base.html:64 -#: seahub/templates/js/templates.html:160 -#: seahub/templates/js/templates.html:323 -#: seahub/templates/snippets/current_commit.html:15 -#: seahub/templates/snippets/repo_dirents.html:92 msgid "History" msgstr "" @@ -3847,10 +3509,8 @@ msgstr "" #: seahub/templates/repo_history_view.html:50 #: seahub/templates/repo_history_view.html:67 #: seahub/templates/repo_history_view.html:77 -#: seahub/templates/snippets/repo_dir_trash_tr.html:13 -#: seahub/templates/snippets/repo_dir_trash_tr.html:15 -#: seahub/templates/snippets/repo_dir_trash_tr.html:34 -#: seahub/templates/snippets/repo_dir_trash_tr.html:36 +#: seahub/templates/snippets/repo_dir_trash_tr.html:11 +#: seahub/templates/snippets/repo_dir_trash_tr.html:26 #: seahub/templates/sysadmin/sys_repo_trash.html:41 msgid "Restore" msgstr "" @@ -3872,6 +3532,10 @@ msgstr "" msgid "Introduction" msgstr "" +#: seahub/templates/footer.html:8 +msgid "Help" +msgstr "" + #: seahub/templates/footer.html:12 msgid "Client" msgstr "" @@ -3892,54 +3556,91 @@ msgstr "" msgid "About Us" msgstr "" -#: seahub/templates/home_base.html:8 seahub/templates/js/templates.html:579 -msgid "Personal" +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:598 +msgid "Files" msgstr "" -#: seahub/templates/home_base.html:15 seahub/templates/libraries.html:106 -#: seahub/templates/starred.html:8 seahub/templates/js/templates.html:586 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:155 +#: seahub/templates/js/templates.html:157 +#: seahub/templates/js/templates.html:601 seahub/templates/libraries.html:21 +msgid "Mine" +msgstr "" + +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:157 +#: seahub/templates/js/templates.html:610 seahub/templates/libraries.html:38 +msgid "Shared" +msgstr "" + +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:153 +#: seahub/templates/js/templates.html:613 seahub/templates/libraries.html:159 +#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "" + +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:620 +#: seahub/templates/js/templates.html:642 +#: seahub/templates/sysadmin/sys_group_admin.html:8 +msgid "All Groups" +msgstr "" + +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:655 +msgid "Tools" +msgstr "" + +#: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 +#: seahub/templates/js/templates.html:657 +#: seahub/templates/js/templates.html:685 +#: seahub/templates/js/templates.html:724 +msgid "Enable Modules" +msgstr "" + +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:661 +#: seahub/templates/libraries.html:52 seahub/templates/starred.html:8 msgid "Starred" msgstr "" -#: seahub/templates/home_base.html:21 seahub/templates/home_base.html.py:48 -#: seahub/templates/js/templates.html:593 -#: seahub/templates/js/templates.html:622 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:663 +msgid "Activities" +msgstr "" + +#: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 +#: seahub/templates/js/templates.html:667 +#: seahub/templates/js/templates.html:696 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:600 +#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:670 +#: seahub/templates/libraries.html:79 +msgid "Devices" +msgstr "" + +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:673 msgid "Share Admin" msgstr "" -#: seahub/templates/home_base.html:33 seahub/templates/js/templates.html:606 -#: seahub/templates/sysadmin/base.html:32 +#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:679 +#: seahub/templates/sysadmin/base.html:37 msgid "Links" msgstr "" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:134 -#: seahub/templates/snippets/repo_dir_data.html:32 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:112 msgid "Upload Folder" msgstr "" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:410 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:454 #: seahub/templates/snippets/file_share_popup.html:31 msgid "Add auto expiration" msgstr "" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:413 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:457 #: seahub/templates/snippets/file_share_popup.html:34 msgid "Days" msgstr "" -#: seahub/templates/i18n.html:9 seahub/templates/repo_basic_info.html:17 -#: seahub/templates/repo_change_password.html:17 -#: seahub/templates/repo_folder_perm.html:22 -#: seahub/templates/repo_share_manage.html:22 -#: seahub/templates/repo_shared_link.html:17 -#: seahub/templates/repo_transfer_owner.html:22 -#: seahub/templates/sysadmin/userinfo.html:73 +#: seahub/templates/i18n.html:9 seahub/templates/sysadmin/userinfo.html:63 msgid "Shared Links" msgstr "" @@ -3947,1238 +3648,111 @@ msgstr "" msgid "View and manage all the shared links in this library." msgstr "" -#: seahub/templates/i18n.html:11 seahub/templates/sysadmin/userinfo.html:71 -msgid "Owned Libs" -msgstr "" - -#: seahub/templates/i18n.html:12 seahub/templates/sysadmin/userinfo.html:72 +#: seahub/templates/i18n.html:12 seahub/templates/sysadmin/userinfo.html:62 msgid "Shared Libs" msgstr "" -#: seahub/templates/libraries.html:26 -msgid "Tips" -msgstr "" - -#: seahub/templates/libraries.html:29 -msgid "" -"After creating a group, you can add members and share libraries into it." -msgstr "" - -#: seahub/templates/libraries.html:31 -msgid "Since you are a guest user now, you can not create groups." -msgstr "" - -#: seahub/templates/libraries.html:44 seahub/templates/js/templates.html:177 -msgid "Mine" -msgstr "" - -#: seahub/templates/libraries.html:46 seahub/templates/js/templates.html:177 -msgid "Sub-libraries" -msgstr "" - -#: seahub/templates/libraries.html:49 seahub/templates/js/templates.html:177 -msgid "Shared" -msgstr "" - -#: seahub/templates/libraries.html:56 -msgid "New Sub-library" -msgstr "" - -#: seahub/templates/libraries.html:67 -msgid "You have not created any libraries" -msgstr "" - -#: seahub/templates/libraries.html:68 -msgid "" -"You can create a library to organize your files. For example, you can create " -"one for each of your projects. Each library can be synchronized and shared " -"separately." -msgstr "" - -#: seahub/templates/libraries.html:79 -msgid "Origin" -msgstr "" - -#: seahub/templates/libraries.html:86 -msgid "You have not created any sub-libraries" -msgstr "" - -#: seahub/templates/libraries.html:87 -msgid "" -"You can create a sub-library from a directory inside a library. A sub-" -"library can be independently synced and shared. Files in the sub-library " -"will be automatically kept in sync with those in the directory of the origin " -"library." -msgstr "" - -#: seahub/templates/libraries.html:97 -msgid "No library is shared to you" -msgstr "" - -#: seahub/templates/libraries.html:111 seahub/templates/repo.html:157 -#: seahub/templates/starred.html:13 seahub/templates/js/lib-op-popups.html:26 -msgid "File Name" -msgstr "" - -#: seahub/templates/libraries.html:121 seahub/templates/starred.html:34 -msgid "You don't have any starred files yet" -msgstr "" - -#: seahub/templates/libraries.html:122 seahub/templates/starred.html:35 -msgid "" -"You can star important files by clicking the \"Star\" button on file viewing " -"page, and they will be listed here." -msgstr "" - -#: seahub/templates/libraries.html:135 -msgid "Welcome to Seafile!" -msgstr "" - -#: seahub/templates/libraries.html:137 -msgid "" -"Seafile organizes files into libraries. Each library can be synced and " -"shared separately. We have created a personal library for you. You can " -"create more libraries later." -msgstr "" - -#: seahub/templates/libraries.html:139 -msgid "" -"Seafile organizes files into libraries. Each library can be synced and " -"shared separately. Howerver, since you are a guest user now, you can not " -"create libraries." -msgstr "" - -#: seahub/templates/libraries.html:148 -msgid "Choose a directory:" -msgstr "" - -#: seahub/templates/libraries.html:175 seahub/templates/js/templates.html:914 -msgid "No library is shared to this group" -msgstr "" - -#: seahub/templates/libraries.html:188 -msgid "Add Library" -msgstr "" - -#: seahub/templates/libraries.html:190 -msgid "Share existing libraries" -msgstr "" - -#: seahub/templates/libraries.html:191 -msgid "Create a new library" -msgstr "" - -#: seahub/templates/libraries.html:200 seahub/templates/pubrepo.html:41 -msgid "No public library" -msgstr "" - -#: seahub/templates/libraries.html:201 seahub/templates/pubrepo.html:42 -msgid "" -"You can create a public library by clicking \"New Library\" button, others " -"can view and download this library." -msgstr "" - -#: seahub/templates/libraries.html:209 -msgid "My Groups" -msgstr "" - -#: seahub/templates/libraries.html:211 seahub/templates/libraries.html:229 -msgid "New Group" -msgstr "" - -#: seahub/templates/libraries.html:217 -msgid "You are not in any group" -msgstr "" - -#: seahub/templates/libraries.html:219 -msgid "" -"Group is a place for you and your friends leaving messages and collaborating " -"on libraries. You can create a group by clicking \"New Group\" button." -msgstr "" - -#: seahub/templates/libraries.html:221 -msgid "" -"Group is a place for you and your friends leaving messages and collaborating " -"on libraries. Groups you join will be listed here." -msgstr "" - -#: seahub/templates/libraries.html:230 -msgid "Group Name" -msgstr "" - -#: seahub/templates/my_group_repos.html:6 -#: seahub/templates/repo_folder_perm.html:98 -#: seahub/templates/repo_folder_perm.html:105 -#: seahub/templates/repo_share_manage.html:39 -#: seahub/templates/js/templates.html:515 -#: seahub/templates/js/templates.html:753 -msgid "Group" -msgstr "" - -#: seahub/templates/my_group_repos.html:47 -msgid "No library is shared to your groups" -msgstr "" - -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/pubrepo.html:6 seahub/templates/pubrepo.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 -msgid "Organization" -msgstr "" - -#: seahub/templates/pubuser.html:10 -msgid "Search members..." -msgstr "" - -#: seahub/templates/pubuser.html:17 -msgid "Search Results" -msgstr "" - -#: seahub/templates/pubuser.html:21 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:16 -#: seahub/templates/sysadmin/sys_useradmin.html:14 -#: seahub/templates/sysadmin/sys_useradmin_admins.html:14 -#: seahub/templates/sysadmin/sys_useradmin_ldap.html:15 -#: seahub/templates/sysadmin/sys_useradmin_paid.html:14 -msgid "Database" -msgstr "" - -#: seahub/templates/pubuser.html:23 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:17 -#: seahub/templates/sysadmin/sys_useradmin.html:16 -#: seahub/templates/sysadmin/sys_useradmin_admins.html:16 -#: seahub/templates/sysadmin/sys_useradmin_ldap.html:16 -#: seahub/templates/sysadmin/sys_useradmin_paid.html:16 -msgid "LDAP" -msgstr "" - -#: seahub/templates/repo.html:23 -msgid "Size: " -msgstr "" - -#: seahub/templates/repo.html:33 seahub/templates/js/templates.html:158 -#: seahub/templates/js/templates.html:164 -#: seahub/templates/sysadmin/sys_list_system.html:16 -#: seahub/templates/sysadmin/sys_repo_admin.html:21 -#: seahub/templates/sysadmin/sys_repo_trash.html:16 -msgid "Trash" -msgstr "" - -#: seahub/templates/repo.html:52 seahub/templates/js/templates.html:119 -#: seahub/templates/js/templates.html:240 -#: seahub/templates/js/templates.html:321 -#: seahub/templates/snippets/repo_dirents.html:38 -#: seahub/templates/snippets/repo_dirents.html:90 -msgid "Move" -msgstr "" - -#: seahub/templates/repo.html:53 seahub/templates/js/templates.html:120 -#: seahub/templates/js/templates.html:145 -#: seahub/templates/js/templates.html:241 -#: seahub/templates/js/templates.html:252 -#: seahub/templates/js/templates.html:322 -#: seahub/templates/js/templates.html:342 -#: seahub/templates/snippets/repo_dirents.html:39 -#: seahub/templates/snippets/repo_dirents.html:91 -msgid "Copy" -msgstr "" - -#: seahub/templates/repo.html:59 seahub/templates/repo.html.py:66 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/snippets/repo_dir_data.html:28 -msgid "Upload Files" -msgstr "" - -#: seahub/templates/repo.html:60 seahub/templates/repo.html.py:95 -#: seahub/templates/view_shared_upload_link.html:11 -msgid "The owner of this library has run out of space." -msgstr "" - -#: seahub/templates/repo.html:68 seahub/templates/repo.html.py:102 -msgid "Please select a file at first." -msgstr "" - -#: seahub/templates/repo.html:73 seahub/templates/js/lib-op-popups.html:83 -msgid "File Upload" -msgstr "" - -#: seahub/templates/repo.html:76 -#: seahub/templates/snippets/group_recommend_form.html:36 -msgid "close" -msgstr "" - -#: seahub/templates/repo.html:80 -#: seahub/templates/view_shared_upload_link.html:30 -#: seahub/templates/js/lib-op-popups.html:90 -msgid "Cancel All" -msgstr "" - -#: seahub/templates/repo.html:84 seahub/templates/repo.html.py:122 -#: seahub/templates/repo.html:2089 -#: seahub/templates/view_shared_upload_link.html:48 -#: seahub/templates/js/lib-op-popups.html:94 -msgid "Saving..." -msgstr "" - -#: seahub/templates/repo.html:93 -#, python-format -msgid "Update %(file_name)s" -msgstr "" - -#: seahub/templates/repo.html:108 -msgid "Choose a file" -msgstr "" - -#: seahub/templates/repo.html:112 -#, python-format -msgid "Smaller than %(max_file_size)s" -msgstr "" - -#: seahub/templates/repo.html:132 seahub/templates/js/lib-op-popups.html:5 -#: seahub/templates/snippets/repo_dir_data.html:39 +#: seahub/templates/js/lib-op-popups.html:5 +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 msgid "New Directory" msgstr "" -#: seahub/templates/repo.html:133 seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/sysadmin/admin_repo_view.html:106 msgid "Directory Name" msgstr "" -#: seahub/templates/repo.html:141 seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:140 -#: seahub/templates/snippets/repo_dir_data.html:42 +#: seahub/templates/js/lib-op-popups.html:16 +#: seahub/templates/js/templates.html:118 msgid "New File" msgstr "" -#: seahub/templates/repo.html:143 seahub/templates/js/lib-op-popups.html:18 +#: seahub/templates/js/lib-op-popups.html:18 msgid "Featured File Type" msgstr "" -#: seahub/templates/repo.html:144 seahub/templates/repo.html.py:150 #: seahub/templates/js/lib-op-popups.html:19 msgid "Click to choose" msgstr "" -#: seahub/templates/repo.html:144 -msgid "online Rich Text format." -msgstr "" - -#: seahub/templates/repo.html:146 seahub/templates/repo.html.py:148 -#: seahub/templates/repo.html:152 seahub/templates/repo.html.py:154 -#: seahub/templates/repo_history.html:28 -#: seahub/templates/js/lib-op-popups.html:21 -#: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:364 -#: seahub/templates/js/templates.html:859 -#: seahub/templates/snippets/current_commit.html:4 -#: seahub/templates/snippets/events_body.html:18 -#: seahub/templates/snippets/events_body.html:20 -msgid "Details" -msgstr "" - -#: seahub/templates/repo.html:150 seahub/templates/js/lib-op-popups.html:19 +#: seahub/templates/js/lib-op-popups.html:19 msgid "simple markup format." msgstr "" -#: seahub/templates/repo.html:166 seahub/templates/js/lib-op-popups.html:47 +#: seahub/templates/js/lib-op-popups.html:21 +#: seahub/templates/js/lib-op-popups.html:23 +#: seahub/templates/js/templates.html:408 +#: seahub/templates/js/templates.html:919 +#: seahub/templates/repo_history.html:28 +msgid "Details" +msgstr "" + +#: seahub/templates/js/lib-op-popups.html:26 +#: seahub/templates/libraries.html:57 seahub/templates/starred.html:13 +msgid "File Name" +msgstr "" + +#: seahub/templates/js/lib-op-popups.html:57 msgid "Current Library" msgstr "" -#: seahub/templates/repo.html:170 seahub/templates/js/lib-op-popups.html:53 +#: seahub/templates/js/lib-op-popups.html:64 msgid "Other Libraries" msgstr "" -#: seahub/templates/repo.html:180 seahub/templates/shared_file_view.html:61 -#: seahub/templates/js/lib-op-popups.html:64 +#: seahub/templates/js/lib-op-popups.html:75 +#: seahub/templates/shared_file_view.html:61 msgid "Please click and choose a directory." msgstr "" -#: seahub/templates/repo.html:193 -#, python-format -msgid "Rename %(name)s as:" +#: seahub/templates/js/lib-op-popups.html:94 +#: seahub/templates/sysadmin/admin_repo_view.html:114 +msgid "File Upload" msgstr "" -#: seahub/templates/repo.html:209 -msgid "" -"This library is encrypted. Please input the password if you want to browse " -"it online. And the password will be kept in the browser for only 1 hour." +#: seahub/templates/js/lib-op-popups.html:101 +#: seahub/templates/sysadmin/admin_repo_view.html:121 +#: seahub/templates/view_shared_upload_link.html:30 +msgid "Cancel All" msgstr "" -#: seahub/templates/repo.html:222 -msgid "discuss" +#: seahub/templates/js/lib-op-popups.html:105 +#: seahub/templates/sysadmin/admin_repo_view.html:125 +#: seahub/templates/view_shared_upload_link.html:48 +msgid "Saving..." msgstr "" -#: seahub/templates/repo.html:223 -msgid "Go to a group" -msgstr "" - -#: seahub/templates/repo.html:223 -msgid "group" -msgstr "" - -#: seahub/templates/repo.html:261 seahub/templates/repo.html.py:1881 -#: seahub/templates/repo.html:2008 seahub/templates/js/templates.html:277 -#: seahub/templates/snippets/repo_dirents.html:55 -msgid "unstarred" -msgstr "" - -#: seahub/templates/repo.html:293 -msgid "File Uploading..." -msgstr "" - -#: seahub/templates/repo.html:294 -msgid "File Upload complete" -msgstr "" - -#: seahub/templates/repo.html:295 -msgid "File Upload canceled" -msgstr "" - -#: seahub/templates/repo.html:296 -msgid "File Upload failed" -msgstr "" - -#: seahub/templates/repo.html:378 -#: seahub/templates/view_shared_upload_link.html:185 -msgid "Failed to get upload url" -msgstr "" - -#: seahub/templates/repo.html:533 -#: seahub/templates/view_shared_upload_link.html:74 -msgid "File is too big" -msgstr "" - -#: seahub/templates/repo.html:534 -#: seahub/templates/view_shared_upload_link.html:75 -msgid "File is too small" -msgstr "" - -#: seahub/templates/repo.html:535 -#: seahub/templates/view_shared_upload_link.html:76 -msgid "Filetype not allowed" -msgstr "" - -#: seahub/templates/repo.html:536 -#: seahub/templates/view_shared_upload_link.html:77 -msgid "Max number of files exceeded" -msgstr "" - -#: seahub/templates/repo.html:537 -#: seahub/templates/view_shared_upload_link.html:78 -msgid "Uploaded bytes exceed file size" -msgstr "" - -#: seahub/templates/repo.html:538 -#: seahub/templates/view_shared_upload_link.html:79 -msgid "Empty file upload result" -msgstr "" - -#: seahub/templates/repo.html:540 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1140 -msgid "Error" -msgstr "" - -#: seahub/templates/repo.html:541 -#: seahub/templates/view_shared_upload_link.html:82 -msgid "uploaded" -msgstr "" - -#: seahub/templates/repo.html:542 -#: seahub/templates/view_shared_upload_link.html:83 -msgid "canceled" -msgstr "" - -#: seahub/templates/repo.html:543 -#: seahub/templates/view_shared_upload_link.html:84 -msgid "Start" -msgstr "" - -#: seahub/templates/repo.html:678 -msgid "Delete Items" -msgstr "" - -#: seahub/templates/repo.html:678 -msgid "Are you sure you want to delete these selected items?" -msgstr "" - -#: seahub/templates/repo.html:682 seahub/templates/repo.html.py:859 -msgid "Processing..." -msgstr "" - -#: seahub/templates/repo.html:712 -#, python-format -msgid "Successfully deleted %(name)s and %(amount)s other items." -msgstr "" - -#: seahub/templates/repo.html:714 -#, python-format -msgid "Successfully deleted %(name)s." -msgstr "" - -#: seahub/templates/repo.html:723 -#, python-format -msgid "Internal error. Failed to delete %(name)s and %(amount)s other items." -msgstr "" - -#: seahub/templates/repo.html:725 -#, python-format -msgid "Internal error. Failed to delete %(name)s." -msgstr "" - -#: seahub/templates/repo.html:825 -msgid "Move selected directories/files to:" -msgstr "" - -#: seahub/templates/repo.html:828 -msgid "Copy selected directories/files to:" -msgstr "" - -#: seahub/templates/repo.html:854 seahub/templates/repo.html.py:2040 -#: seahub/views/ajax.py:785 seahub/views/ajax.py:1003 -msgid "Invalid destination path" -msgstr "" - -#: seahub/templates/repo.html:903 -#, python-format -msgid "Successfully moved %(name)s." -msgstr "" - -#: seahub/templates/repo.html:905 -#, python-format -msgid "Successfully moved %(name)s and 1 other item." -msgstr "" - -#: seahub/templates/repo.html:907 -#, python-format -msgid "Successfully moved %(name)s and %(amount)s other items." -msgstr "" - -#: seahub/templates/repo.html:912 -#, python-format -msgid "Successfully copied %(name)s." -msgstr "" - -#: seahub/templates/repo.html:914 -#, python-format -msgid "Successfully copied %(name)s and 1 other item." -msgstr "" - -#: seahub/templates/repo.html:916 -#, python-format -msgid "Successfully copied %(name)s and %(amount)s other items." -msgstr "" - -#: seahub/templates/repo.html:928 -#, python-format -msgid "Internal error. Failed to move %(name)s and %(amount)s other items." -msgstr "" - -#: seahub/templates/repo.html:930 -#, python-format -msgid "Internal error. Failed to move %(name)s." -msgstr "" - -#: seahub/templates/repo.html:934 -#, python-format -msgid "Internal error. Failed to copy %(name)s and %(amount)s other items." -msgstr "" - -#: seahub/templates/repo.html:936 -#, python-format -msgid "Internal error. Failed to copy %(name)s." -msgstr "" - -#: seahub/templates/repo.html:974 -#, python-format -msgid "Moving file %(index)s of %(total)s" -msgstr "" - -#: seahub/templates/repo.html:974 -#, python-format -msgid "Copying file %(index)s of %(total)s" -msgstr "" - -#: seahub/templates/repo.html:1058 seahub/templates/repo.html.py:2104 -#: seahub/templates/repo.html:2131 -msgid "Canceled." -msgstr "" - -#: seahub/templates/repo.html:1122 -msgid "Encrypting the file..." -msgstr "" - -#: seahub/templates/repo.html:1144 -msgid "Error when encrypting." -msgstr "" - -#: seahub/templates/repo.html:1151 -#, python-format -msgid "Encrypting, %(num)s%% complete." -msgstr "" - -#: seahub/templates/repo.html:1168 -msgid "Uploading ..." -msgstr "" - -#: seahub/templates/repo.html:1180 seahub/templates/repo.html.py:1475 -msgid "Done!" -msgstr "" - -#: seahub/templates/repo.html:1485 -msgid "Downloading..." -msgstr "" - -#: seahub/templates/repo.html:1518 -#, python-format -msgid "Downloading, %(num)s%% complete." -msgstr "" - -#: seahub/templates/repo.html:1539 -msgid "Decrypting..." -msgstr "" - -#: seahub/templates/repo.html:1556 -#, python-format -msgid "Decrypting, %(num)s%% complete." -msgstr "" - -#: seahub/templates/repo.html:1661 -#, python-format -msgid "Successfully deleted %(name)s" -msgstr "" - -#: seahub/templates/repo.html:1683 -msgid "Rename File" -msgstr "" - -#: seahub/templates/repo.html:1685 -msgid "Rename Directory" -msgstr "" - -#: seahub/templates/repo.html:1704 -msgid "Copy File" -msgstr "" - -#: seahub/templates/repo.html:1706 -msgid "Move File" -msgstr "" - -#: seahub/templates/repo.html:1708 -msgid "Copy Directory" -msgstr "" - -#: seahub/templates/repo.html:1710 -msgid "Move Directory" -msgstr "" - -#: seahub/templates/repo.html:1715 -#, python-format -msgid "Copy %(name)s to:" -msgstr "" - -#: seahub/templates/repo.html:1718 -#, python-format -msgid "Move %(name)s to:" -msgstr "" - -#: seahub/templates/repo.html:1741 -msgid "Directory download is not supported in this library." -msgstr "" - -#: seahub/templates/repo.html:1883 seahub/templates/js/templates.html:275 -#: seahub/templates/snippets/repo_dirents.html:53 -msgid "starred" -msgstr "" - -#: seahub/templates/repo.html:1929 seahub/templates/repo.html.py:1969 -#: seahub/templates/sysadmin/settings.html:154 -msgid "It is required." -msgstr "" - -#: seahub/templates/repo.html:1935 -msgid "Only an extension there, please input a name." -msgstr "" - -#: seahub/templates/repo.html:1945 -msgid "Creating..." -msgstr "" - -#: seahub/templates/repo.html:1973 -msgid "You have not renamed it." -msgstr "" - -#: seahub/templates/repo.html:2019 -#, python-format -msgid "Successfully renamed %(old_name)s to %(new_name)s" -msgstr "" - -#: seahub/templates/repo.html:2073 -#, python-format -msgid "Moving %(name)s" -msgstr "" - -#: seahub/templates/repo.html:2073 -#, python-format -msgid "Copying %(name)s" -msgstr "" - -#: seahub/templates/repo.html:2233 -msgid "Please select at least one contact." -msgstr "" - -#: seahub/templates/repo.html:2345 -msgid "Please enter emails or groups, or select some." -msgstr "" - -#: seahub/templates/repo_basic_info.html:11 -#: seahub/templates/repo_basic_info.html:29 -#: seahub/templates/repo_change_password.html:11 -#: seahub/templates/repo_folder_perm.html:16 -#: seahub/templates/repo_share_manage.html:16 -#: seahub/templates/repo_shared_link.html:11 -#: seahub/templates/repo_transfer_owner.html:16 -msgid "Basic Info" -msgstr "" - -#: seahub/templates/repo_basic_info.html:12 -#: seahub/templates/repo_change_password.html:12 -#: seahub/templates/repo_folder_perm.html:17 -#: seahub/templates/repo_share_manage.html:17 -#: seahub/templates/repo_shared_link.html:12 -#: seahub/templates/repo_transfer_owner.html:17 -#: seahub/templates/repo_transfer_owner.html:34 -msgid "Transfer Ownership" -msgstr "" - -#: seahub/templates/repo_basic_info.html:14 -#: seahub/templates/repo_change_password.html:14 -#: seahub/templates/repo_change_password.html:29 -#: seahub/templates/repo_folder_perm.html:19 -#: seahub/templates/repo_share_manage.html:19 -#: seahub/templates/repo_shared_link.html:14 -#: seahub/templates/repo_transfer_owner.html:19 -msgid "Change Password" -msgstr "" - -#: seahub/templates/repo_basic_info.html:19 -#: seahub/templates/repo_change_password.html:19 -#: seahub/templates/repo_folder_perm.html:24 -#: seahub/templates/repo_share_manage.html:24 -#: seahub/templates/repo_shared_link.html:19 -#: seahub/templates/repo_transfer_owner.html:24 -msgid "Sharing Permission" -msgstr "" - -#: seahub/templates/repo_basic_info.html:21 -#: seahub/templates/repo_change_password.html:21 -#: seahub/templates/repo_folder_perm.html:25 -#: seahub/templates/repo_share_manage.html:26 -#: seahub/templates/repo_shared_link.html:21 -#: seahub/templates/repo_transfer_owner.html:26 -msgid "Folder Permission" -msgstr "" - -#: seahub/templates/repo_basic_info.html:37 -msgid "Keep full history" -msgstr "" - -#: seahub/templates/repo_basic_info.html:38 -msgid "Don't keep history" -msgstr "" - -#: seahub/templates/repo_basic_info.html:39 -msgid "Only keep a period of history:" -msgstr "" - -#: seahub/templates/repo_basic_info.html:40 -msgid "days" -msgstr "" - -#: seahub/templates/repo_change_password.html:32 -msgid "Change the password of this library:" -msgstr "" - -#: seahub/templates/repo_change_password.html:33 -msgid "Old Password" -msgstr "" - -#: seahub/templates/repo_change_password.html:35 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "" - -#: seahub/templates/repo_change_password.html:37 -msgid "New Password Again" -msgstr "" - -#: seahub/templates/repo_change_password.html:59 -msgid "Please enter the old password" -msgstr "" - -#: seahub/templates/repo_change_password.html:63 -msgid "Please enter the new password" -msgstr "" - -#: seahub/templates/repo_change_password.html:67 -msgid "New password is too short" -msgstr "" - -#: seahub/templates/repo_change_password.html:71 -msgid "Please enter the new password again" -msgstr "" - -#: seahub/templates/repo_change_password.html:75 -msgid "New passwords don't match" -msgstr "" - -#: seahub/templates/repo_dir_recycle_view.html:7 -#, python-format -msgid "%(repo_dir_name)s Trash" -msgstr "" - -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "" - -#: seahub/templates/repo_dir_recycle_view.html:34 -msgid "Delete Time" -msgstr "" - -#: seahub/templates/repo_dir_recycle_view.html:55 -msgid "Clear files in trash and history:" -msgstr "" - -#: seahub/templates/repo_dir_recycle_view.html:57 -msgid "3 days ago" -msgstr "" - -#: seahub/templates/repo_dir_recycle_view.html:58 -msgid "1 week ago" -msgstr "" - -#: seahub/templates/repo_dir_recycle_view.html:59 -msgid "1 month ago" -msgstr "" - -#: seahub/templates/repo_folder_perm.html:35 -#: seahub/templates/js/templates.html:724 -msgid "User Permission" -msgstr "" - -#: seahub/templates/repo_folder_perm.html:36 -msgid "Group permission" -msgstr "" - -#: seahub/templates/repo_folder_perm.html:39 -msgid "Add Permission" -msgstr "" - -#: seahub/templates/repo_folder_perm.html:47 -#: seahub/templates/repo_folder_perm.html:99 -msgid "Folder" -msgstr "" - -#: seahub/templates/repo_folder_perm.html:54 -#: seahub/templates/repo_folder_perm.html:109 -#: seahub/templates/repo_folder_perm.html:151 -msgid "Select a folder" -msgstr "" - -#: seahub/templates/repo_folder_perm.html:264 -msgid "Delete succeeded" -msgstr "" - -#: seahub/templates/repo_history.html:8 -#, python-format -msgid "%(repo_name)s Modification History" -msgstr "" - -#: seahub/templates/repo_history.html:11 -msgid "" -"Tip: a snapshot will be generated after modification, which records the " -"library state after the modification." -msgstr "" - -#: seahub/templates/repo_history.html:47 -msgid "Current Version" -msgstr "" - -#: seahub/templates/repo_history.html:49 -msgid "View Snapshot" -msgstr "" - -#: seahub/templates/repo_history_view.html:14 -#, python-format -msgid "%(repo_name)s Snapshot" -msgstr "" - -#: seahub/templates/repo_history_view.html:16 -msgid "Back to modification history" -msgstr "" - -#: seahub/templates/repo_history_view.html:64 -#: seahub/templates/snippets/repo_dir_trash_tr.html:6 -msgid "Directory" -msgstr "" - -#: seahub/templates/repo_history_view.html:88 -#: seahub/templates/sysadmin/sys_repo_trash.html:74 -msgid "Restore Library" -msgstr "" - -#: seahub/templates/repo_history_view.html:89 -msgid "Are you sure you want to restore this library?" -msgstr "" - -#: seahub/templates/repo_setting_extra_js.html:46 -#: seahub/templates/sysadmin/settings.html:138 -#: seahub/templates/sysadmin/settings.html:176 seahub/views/sysadmin.py:351 -#: seahub/views/sysadmin.py:369 seahub/views/sysadmin.py:397 -#: seahub/views/sysadmin.py:1565 seahub/views/sysadmin.py:1622 -msgid "Success" -msgstr "" - -#: seahub/templates/repo_share_manage.html:42 -msgid "Share Library" -msgstr "" - -#: seahub/templates/repo_share_manage.html:116 -msgid "People:" -msgstr "" - -#: seahub/templates/repo_share_manage.html:119 -msgid "Groups:" -msgstr "" - -#: seahub/templates/repo_share_manage.html:122 -msgid "Permission:" -msgstr "" - -#: seahub/templates/repo_share_manage.html:157 -msgid "Select groups" -msgstr "" - -#: seahub/templates/repo_share_manage.html:174 -msgid "Please select a email or a group." -msgstr "" - -#: seahub/templates/repo_shared_link.html:39 -#: seahub/templates/repo_shared_link.html:65 -msgid "Created By" -msgstr "" - -#: seahub/templates/repo_shared_link.html:117 -msgid "Removed successfully." -msgstr "" - -#: seahub/templates/repo_transfer_owner.html:37 -msgid "Transfer this library to another user:" -msgstr "" - -#: seahub/templates/repo_transfer_success.html:15 -#, python-brace-format -msgid "Library {placeholder} has been transfered." -msgstr "" - -#: seahub/templates/share_access_validation.html:6 -msgid "" -"Please input the password if you want to browse the shared file/directory." -msgstr "" - -#: seahub/templates/shared_file_view.html:30 -#: seahub/templates/view_shared_dir.html:12 -msgid "Shared by: " -msgstr "" - -#: seahub/templates/shared_file_view.html:37 -msgid "Save to..." -msgstr "" - -#: seahub/templates/shared_file_view.html:52 -msgid "Save To:" -msgstr "" - -#: seahub/templates/shared_file_view.html:77 -#: seahub/templates/view_shared_dir.html:155 -msgid "File download is disabled: the share link traffic of owner is used up." -msgstr "" - -#: seahub/templates/shared_link_email.html:9 -#: seahub/templates/shared_upload_link_email.html:8 -#: seahub/templates/registration/activation_email.html:9 -#: seahub/templates/registration/password_reset_email.html:9 -#: seahub/templates/sysadmin/user_activation_email.html:9 -#: seahub/templates/sysadmin/user_add_email.html:9 -#: seahub/templates/sysadmin/user_reset_email.html:9 -msgid "Hi," -msgstr "" - -#: seahub/templates/shared_link_email.html:12 -#, python-format -msgid "" -"%(email)s shared a %(file_shared_type)s " -"%(file_shared_name)s to you on %(site_name)s:" -msgstr "" - -#: seahub/templates/shared_upload_link_email.html:11 -#, python-format -msgid "%(email)s shared an upload link to you on %(site_name)s." -msgstr "" - -#: seahub/templates/shared_upload_link_email.html:15 -msgid "You can go to the following page and upload your files:" -msgstr "" - -#: seahub/templates/starred.html:4 -msgid "Stars" -msgstr "" - -#: seahub/templates/starred.html:20 seahub/templates/js/templates.html:776 -msgid "icon" -msgstr "" - -#: seahub/templates/starred.html:27 seahub/templates/js/templates.html:787 -msgid "Unstar" -msgstr "" - -#: seahub/templates/starred.html:56 -msgid "Successfully unstarred." -msgstr "" - -#: seahub/templates/text_diff.html:6 -msgid "modification details" -msgstr "" - -#: seahub/templates/text_diff.html:7 -msgid "Back to file versions" -msgstr "" - -#: seahub/templates/text_diff.html:22 -msgid "It's a newly-created blank file." -msgstr "" - -#: seahub/templates/text_diff.html:29 -msgid "before modification" -msgstr "" - -#: seahub/templates/text_diff.html:31 -msgid "after modification" -msgstr "" - -#: seahub/templates/update_file_error.html:6 -msgid "Update file " -msgstr "" - -#: seahub/templates/update_file_error.html:14 -#: seahub/templates/upload_file_error.html:10 -msgid "error: " -msgstr "" - -#: seahub/templates/upload_file_error.html:6 -msgid "Upload file" -msgstr "" - -#: seahub/templates/upload_file_error.html:6 -msgid "to" -msgstr "" - -#: seahub/templates/user_404.html:6 -msgid "Sorry, this user is not registered yet." -msgstr "" - -#: seahub/templates/view_file_base.html:16 -#: seahub/templates/js/templates.html:293 -msgid "locked" -msgstr "" - -#: seahub/templates/view_file_base.html:23 -#: seahub/templates/view_history_file.html:23 -#: seahub/templates/view_snapshot_file.html:13 -#: seahub/templates/view_trash_file.html:10 -msgid "Current Path: " -msgstr "" - -#: seahub/templates/view_file_base.html:41 -#: seahub/templates/view_file_markdown.html:7 -#: seahub/templates/view_file_text.html:16 -msgid "updated this file" -msgstr "" - -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 -#: seahub/templates/js/templates.html:334 -msgid "Lock" -msgstr "" - -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 -#: seahub/templates/js/templates.html:331 -msgid "Unlock" -msgstr "" - -#: seahub/templates/view_file_base.html:59 -#: seahub/templates/js/templates.html:46 -#: seahub/templates/js/templates.html:150 -#: seahub/templates/js/templates.html:230 -#: seahub/templates/js/templates.html:311 -#: seahub/templates/snippets/repo_dir_data.html:48 -#: seahub/templates/snippets/repo_dirents.html:28 -#: seahub/templates/snippets/repo_dirents.html:79 -msgid "Share" -msgstr "" - -#: seahub/templates/view_file_base.html:92 -#: seahub/templates/snippets/bottom_bar.html:15 -msgid "Back to top" -msgstr "" - -#: seahub/templates/view_file_base.html:92 -#: seahub/templates/snippets/bottom_bar.html:15 -msgid "top" -msgstr "" - -#: seahub/templates/view_file_image.html:15 -#: seahub/templates/snippets/file_content_html.html:26 -msgid "you can also press ← " -msgstr "" - -#: seahub/templates/view_file_image.html:15 -#: seahub/templates/snippets/file_content_html.html:26 -msgid "prev" -msgstr "" - -#: seahub/templates/view_file_image.html:21 -#: seahub/templates/snippets/file_content_html.html:32 -msgid "you can also press → " -msgstr "" - -#: seahub/templates/view_file_image.html:21 -#: seahub/templates/snippets/file_content_html.html:32 -msgid "next" -msgstr "" - -#: seahub/templates/view_file_markdown.html:7 -#: seahub/templates/view_file_text.html:16 -msgid "Detail" -msgstr "" - -#: seahub/templates/view_file_markdown.html:20 -#: seahub/templates/view_file_text.html:29 -#: seahub/templates/snippets/file_encoding.html:5 -msgid "Encoding:" -msgstr "" - -#: seahub/templates/view_file_markdown.html:23 -#: seahub/templates/view_file_text.html:32 -#: seahub/templates/snippets/file_encoding.html:8 -msgid "auto detect" -msgstr "" - -#: seahub/templates/view_file_pdf.html:66 -#: seahub/templates/snippets/file_content_js.html:133 -msgid "" -"You can use IE 10 or other browsers, for example, Firefox, to view it online." -msgstr "" - -#: seahub/templates/view_file_svg.html:7 -#: seahub/templates/snippets/file_content_js.html:63 -msgid "To view it online, you can use firefox, chrome or IE 9." -msgstr "" - -#: seahub/templates/view_shared_dir.html:27 -msgid "List" -msgstr "" - -#: seahub/templates/view_shared_dir.html:29 -msgid "Grid" -msgstr "" - -#: seahub/templates/view_shared_dir.html:33 -msgid "ZIP" -msgstr "" - -#: seahub/templates/view_shared_dir.html:162 -msgid "Close (Esc)" -msgstr "" - -#: seahub/templates/view_shared_dir.html:166 -msgid "Previous (Left arrow key)" -msgstr "" - -#: seahub/templates/view_shared_dir.html:167 -msgid "Next (Right arrow key)" -msgstr "" - -#: seahub/templates/view_shared_dir.html:168 -#, python-format -msgid "%%curr%% of %%total%%" -msgstr "" - -#: seahub/templates/view_shared_dir.html:174 -msgid "Open in New Tab" -msgstr "" - -#: seahub/templates/view_shared_dir.html:177 -#, python-format -msgid "" -"The image could not be loaded." -msgstr "" - -#: seahub/templates/view_shared_upload_link.html:8 -#, python-format -msgid "Upload files to %(dir_name)s" -msgstr "" - -#: seahub/templates/view_shared_upload_link.html:9 -msgid "shared by:" -msgstr "" - -#: seahub/templates/view_shared_upload_link.html:18 -#: seahub/templates/view_shared_upload_link.html:63 -msgid "Add Files" -msgstr "" - -#: seahub/templates/view_shared_upload_link.html:24 -msgid "Add folder" -msgstr "" - -#: seahub/templates/view_shared_upload_link.html:34 -msgid "" -"File Drag & Drop is supported for Chrome, Safari 5.0+, Firefox 4.0+, IE 10.0+" -msgstr "" - -#: seahub/templates/view_shared_upload_link.html:36 -msgid "Folder Drag & Drop is supported for Chrome" -msgstr "" - -#: seahub/templates/view_shared_upload_link.html:39 -#, python-format -msgid "File size should be smaller than %(max_file_size)s" -msgstr "" - -#: seahub/templates/js/lib-op-popups.html:104 +#: seahub/templates/js/lib-op-popups.html:115 msgid "This library is password protected" msgstr "" -#: seahub/templates/js/lib-op-popups.html:108 +#: seahub/templates/js/lib-op-popups.html:119 msgid "*The password will be kept in the server for only 1 hour." msgstr "" -#: seahub/templates/js/lib-op-popups.html:115 +#: seahub/templates/js/lib-op-popups.html:126 msgid "A file with the same name already exists in this folder." msgstr "" -#: seahub/templates/js/lib-op-popups.html:115 +#: seahub/templates/js/lib-op-popups.html:126 msgid "Replacing it will overwrite its content." msgstr "" -#: seahub/templates/js/lib-op-popups.html:117 +#: seahub/templates/js/lib-op-popups.html:128 msgid "Replace" msgstr "" -#: seahub/templates/js/lib-op-popups.html:118 +#: seahub/templates/js/lib-op-popups.html:129 msgid "Don't replace" msgstr "" +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:709 +#: seahub/templates/libraries.html:22 +#: seahub/templates/snippets/repo_create_form.html:3 +msgid "New Library" +msgstr "" + #: seahub/templates/js/templates.html:8 #: seahub/templates/snippets/repo_create_form.html:9 msgid "Share Permission" @@ -5196,213 +3770,592 @@ msgid "(at least %(repo_password_min_length)s characters)" msgstr "" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:405 -#: seahub/templates/js/templates.html:460 +#: seahub/templates/js/templates.html:449 +#: seahub/templates/js/templates.html:504 #: seahub/templates/snippets/file_share_popup.html:26 #: seahub/templates/snippets/file_share_popup.html:72 #: seahub/templates/snippets/repo_create_form.html:22 msgid "Password again" msgstr "" -#: seahub/templates/js/templates.html:34 seahub/templates/js/templates.html:56 -#: seahub/templates/js/templates.html:80 -#: seahub/templates/js/templates.html:829 -#: seahub/templates/sysadmin/repoadmin_table.html:14 -#: seahub/templates/sysadmin/sys_admin_group_info.html:49 -#: seahub/templates/sysadmin/sys_org_info_library.html:27 -#: seahub/templates/sysadmin/userinfo.html:92 -#: seahub/templates/sysadmin/userinfo.html:135 -msgid "Encrypted" -msgstr "" - -#: seahub/templates/js/templates.html:42 +#: seahub/templates/js/templates.html:38 msgid "Broken (please contact your administrator to fix this library)" msgstr "" -#: seahub/templates/js/templates.html:124 -#: seahub/templates/snippets/repo_dir_data.html:16 -#: seahub/templates/snippets/repo_dir_data.html:19 -#: seahub/templates/snippets/repo_dir_data.html:22 -#: seahub/templates/sysadmin/userinfo.html:191 -msgid "Upload" +#: seahub/templates/js/templates.html:42 +#: seahub/templates/js/templates.html:128 +#: seahub/templates/js/templates.html:202 +#: seahub/templates/js/templates.html:281 +#: seahub/templates/js/templates.html:360 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:59 +msgid "Share" msgstr "" -#: seahub/templates/js/templates.html:139 -msgid "New Folder" -msgstr "" - -#: seahub/templates/js/templates.html:237 -#: seahub/templates/js/templates.html:250 -#: seahub/templates/js/templates.html:340 -#: seahub/templates/snippets/repo_dirents.html:34 +#: seahub/templates/js/templates.html:44 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:220 +#: seahub/templates/js/templates.html:310 msgid "More operations" msgstr "" -#: seahub/templates/js/templates.html:246 -#: seahub/templates/js/templates.html:336 +#: seahub/templates/js/templates.html:46 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:290 +#: seahub/templates/js/templates.html:364 +#: seahub/templates/js/templates.html:390 +#: seahub/templates/js/templates.html:988 +#: seahub/templates/js/templates.html:1005 +msgid "Rename" +msgstr "" + +#: seahub/templates/js/templates.html:47 +#: seahub/templates/js/templates.html:989 +#: seahub/templates/sysadmin/repoadmin_table.html:36 +#: seahub/templates/sysadmin/userinfo.html:104 +msgid "Transfer" +msgstr "" + +#: seahub/templates/js/templates.html:48 +msgid "History Setting" +msgstr "" + +#: seahub/templates/js/templates.html:50 +msgid "Change Password" +msgstr "" + +#: seahub/templates/js/templates.html:53 +msgid "Share Links" +msgstr "" + +#: seahub/templates/js/templates.html:56 +msgid "Folder Permission" +msgstr "" + +#: seahub/templates/js/templates.html:97 +#: seahub/templates/js/templates.html:212 +#: seahub/templates/js/templates.html:291 +#: seahub/templates/js/templates.html:365 +#: seahub/templates/js/templates.html:391 +msgid "Move" +msgstr "" + +#: seahub/templates/js/templates.html:98 +#: seahub/templates/js/templates.html:123 +#: seahub/templates/js/templates.html:213 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:312 +#: seahub/templates/js/templates.html:366 +#: seahub/templates/js/templates.html:392 +msgid "Copy" +msgstr "" + +#: seahub/templates/js/templates.html:102 +#: seahub/templates/sysadmin/admin_repo_view.html:31 +#: seahub/templates/sysadmin/userinfo.html:187 +msgid "Upload" +msgstr "" + +#: seahub/templates/js/templates.html:108 +msgid "Upload Files" +msgstr "" + +#: seahub/templates/js/templates.html:117 +msgid "New Folder" +msgstr "" + +#: seahub/templates/js/templates.html:132 +#: seahub/templates/view_shared_dir.html:27 +msgid "List" +msgstr "" + +#: seahub/templates/js/templates.html:132 +#: seahub/templates/view_shared_dir.html:33 +msgid "Grid" +msgstr "" + +#: seahub/templates/js/templates.html:138 +#: seahub/templates/js/templates.html:144 +#: seahub/templates/sysadmin/sys_list_system.html:10 +#: seahub/templates/sysadmin/sys_repo_admin.html:21 +#: seahub/templates/sysadmin/sys_repo_trash.html:16 +#: seahub/templates/view_trash_file.html:10 +msgid "Trash" +msgstr "" + +#: seahub/templates/js/templates.html:157 +msgid "Sub-libraries" +msgstr "" + +#: seahub/templates/js/templates.html:217 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:377 +#: seahub/templates/js/templates.html:396 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:318 -#: seahub/templates/snippets/repo_dirents.html:85 +#: seahub/templates/js/templates.html:245 +msgid "starred" +msgstr "" + +#: seahub/templates/js/templates.html:247 +msgid "unstarred" +msgstr "" + +#: seahub/templates/js/templates.html:263 +#: seahub/templates/js/templates.html:337 +#: seahub/templates/view_file_base.html:16 +msgid "locked" +msgstr "" + +#: seahub/templates/js/templates.html:288 msgid "More Operations" msgstr "" -#: seahub/templates/js/templates.html:352 +#: seahub/templates/js/templates.html:301 +#: seahub/templates/js/templates.html:371 +#: seahub/templates/view_file_base.html:50 +#: seahub/templates/view_file_base.html:52 +msgid "Unlock" +msgstr "" + +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:374 +#: seahub/templates/view_file_base.html:49 +#: seahub/templates/view_file_base.html:53 +msgid "Lock" +msgstr "" + +#: seahub/templates/js/templates.html:322 msgid "Fetch failed" msgstr "" -#: seahub/templates/js/templates.html:376 +#: seahub/templates/js/templates.html:420 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "" -#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:424 #: seahub/templates/snippets/file_share_popup.html:8 msgid "Upload Link" msgstr "" -#: seahub/templates/js/templates.html:383 +#: seahub/templates/js/templates.html:427 msgid "Share to user" msgstr "" -#: seahub/templates/js/templates.html:384 +#: seahub/templates/js/templates.html:428 msgid "Share to group" msgstr "" -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:451 +#: seahub/templates/js/templates.html:440 +#: seahub/templates/js/templates.html:495 #: seahub/templates/snippets/file_share_popup.html:21 #: seahub/templates/snippets/file_share_popup.html:67 msgid "Add password protection" msgstr "" -#: seahub/templates/js/templates.html:399 -#: seahub/templates/js/templates.html:454 +#: seahub/templates/js/templates.html:443 +#: seahub/templates/js/templates.html:498 #: seahub/templates/snippets/file_share_popup.html:24 #: seahub/templates/snippets/file_share_popup.html:70 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:402 -#: seahub/templates/js/templates.html:457 +#: seahub/templates/js/templates.html:446 +#: seahub/templates/js/templates.html:501 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "" -#: seahub/templates/js/templates.html:403 -#: seahub/templates/js/templates.html:458 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "" -#: seahub/templates/js/templates.html:417 -#: seahub/templates/js/templates.html:464 +#: seahub/templates/js/templates.html:461 +#: seahub/templates/js/templates.html:508 #: seahub/templates/snippets/file_share_popup.html:39 #: seahub/templates/snippets/file_share_popup.html:77 msgid "Generate" msgstr "" -#: seahub/templates/js/templates.html:421 +#: seahub/templates/js/templates.html:465 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Link: " msgstr "" -#: seahub/templates/js/templates.html:424 +#: seahub/templates/js/templates.html:468 msgid "Direct Download Link: " msgstr "" -#: seahub/templates/js/templates.html:428 -#: seahub/templates/js/templates.html:468 +#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:512 #: seahub/templates/snippets/file_share_popup.html:42 #: seahub/templates/snippets/file_share_popup.html:80 msgid "Send" msgstr "" -#: seahub/templates/js/templates.html:431 -#: seahub/templates/js/templates.html:471 +#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:515 #: seahub/templates/snippets/file_share_popup.html:46 #: seahub/templates/snippets/file_share_popup.html:84 msgid "Send to:" msgstr "" -#: seahub/templates/js/templates.html:432 -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:47 #: seahub/templates/snippets/file_share_popup.html:85 msgid "Emails, Seperated by ','" msgstr "" -#: seahub/templates/js/templates.html:433 -#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:51 #: seahub/templates/snippets/file_share_popup.html:87 msgid "Message (optional):" msgstr "" -#: seahub/templates/js/templates.html:438 -#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 #: seahub/templates/snippets/file_share_popup.html:56 #: seahub/templates/snippets/file_share_popup.html:92 msgid "Sending..." msgstr "" -#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:491 #: seahub/templates/snippets/file_share_popup.html:63 msgid "" "You can share the generated link to others and then they can upload files to " "this directory via the link." msgstr "" -#: seahub/templates/js/templates.html:467 +#: seahub/templates/js/templates.html:511 #: seahub/templates/snippets/file_share_popup.html:79 msgid "Upload Link: " msgstr "" -#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:559 +#: seahub/templates/js/templates.html:812 +#: seahub/templates/js/templates.html:1284 +msgid "Group" +msgstr "" + +#: seahub/templates/js/templates.html:590 msgid "Leave Share" msgstr "" -#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:714 +#: seahub/templates/js/templates.html:735 +msgid "Wiki" +msgstr "" + +#: seahub/templates/js/templates.html:717 seahub/templates/libraries.html:134 +#: seahub/templates/pub_base.html:13 +#: seahub/templates/sysadmin/sys_admin_group_info.html:31 +#: seahub/templates/sysadmin/sys_inst_info_user.html:7 +#: seahub/templates/sysadmin/sys_org_info_group.html:8 +#: seahub/templates/sysadmin/sys_org_info_library.html:8 +#: seahub/templates/sysadmin/sys_org_info_setting.html:8 +#: seahub/templates/sysadmin/sys_org_info_user.html:7 +msgid "Members" +msgstr "" + +#: seahub/templates/js/templates.html:783 +#: seahub/templates/js/templates.html:1230 +msgid "User Permission" +msgstr "" + +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1231 msgid "Group Permission" msgstr "" -#: seahub/templates/js/templates.html:810 +#: seahub/templates/js/templates.html:835 seahub/templates/starred.html:20 +msgid "icon" +msgstr "" + +#: seahub/templates/js/templates.html:846 seahub/templates/starred.html:27 +msgid "Unstar" +msgstr "" + +#: seahub/templates/js/templates.html:866 +#: seahub/templates/sysadmin/sys_admin_group_info.html:42 +msgid "Shared By" +msgstr "" + +#: seahub/templates/js/templates.html:870 msgid "Select libraries to share" msgstr "" -#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:931 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:878 +#: seahub/templates/js/templates.html:938 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "" -#: seahub/templates/js/templates.html:892 +#: seahub/templates/js/templates.html:952 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "" -#: seahub/templates/js/templates.html:892 +#: seahub/templates/js/templates.html:952 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "" -#: seahub/templates/js/templates.html:894 +#: seahub/templates/js/templates.html:954 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "" -#: seahub/templates/js/templates.html:896 +#: seahub/templates/js/templates.html:956 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "" +#: seahub/templates/js/templates.html:974 seahub/templates/libraries.html:122 +msgid "No library is shared to this group" +msgstr "" + +#: seahub/templates/js/templates.html:991 +#: seahub/templates/js/templates.html:1007 +msgid "Add Wiki" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/js/templates.html:1009 +msgid "Remove Wiki" +msgstr "" + +#: seahub/templates/js/templates.html:997 +#: seahub/templates/js/templates.html:1013 +msgid "Import Members" +msgstr "" + +#: seahub/templates/js/templates.html:998 +#: seahub/templates/js/templates.html:1014 +msgid "Manage Members" +msgstr "" + +#: seahub/templates/js/templates.html:1001 +msgid "Dismiss" +msgstr "" + +#: seahub/templates/js/templates.html:1018 +msgid "Leave group" +msgstr "" + +#: seahub/templates/js/templates.html:1025 +msgid "Rename Group To" +msgstr "" + +#: seahub/templates/js/templates.html:1034 +msgid "Transfer Group To" +msgstr "" + +#: seahub/templates/js/templates.html:1042 +msgid "Import group members from a CSV file" +msgstr "" + +#: seahub/templates/js/templates.html:1044 +msgid "File format: user@mail.com" +msgstr "" + +#: seahub/templates/js/templates.html:1054 +#: seahub/templates/sysadmin/sys_inst_admin.html:12 +msgid "Add" +msgstr "" + +#: seahub/templates/js/templates.html:1134 +msgid "Setting library history is disabled by Admin" +msgstr "" + +#: seahub/templates/js/templates.html:1138 +msgid "Keep full history" +msgstr "" + +#: seahub/templates/js/templates.html:1141 +msgid "Don't keep history" +msgstr "" + +#: seahub/templates/js/templates.html:1144 +msgid "Only keep a period of history:" +msgstr "" + +#: seahub/templates/js/templates.html:1145 +msgid "days" +msgstr "" + +#: seahub/templates/js/templates.html:1170 +#: seahub/templates/js/templates.html:1187 +msgid "Created By" +msgstr "" + +#: seahub/templates/js/templates.html:1241 +#: seahub/templates/js/templates.html:1285 +msgid "Folder" +msgstr "" + +#: seahub/templates/js/templates.html:1252 +#: seahub/templates/js/templates.html:1271 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1317 +msgid "Select a folder" +msgstr "" + +#: seahub/templates/js/templates.html:1365 +msgid "Old Password" +msgstr "" + +#: seahub/templates/js/templates.html:1367 +#, python-format +msgid "New Password(at least %(repo_password_min_length)s characters)" +msgstr "" + +#: seahub/templates/js/templates.html:1369 +msgid "New Password Again" +msgstr "" + +#: seahub/templates/js/templates.html:1395 +msgid "Unlink" +msgstr "" + +#: seahub/templates/libraries.html:29 +msgid "You have not created any libraries" +msgstr "" + +#: seahub/templates/libraries.html:30 +msgid "" +"You can create a library to organize your files. For example, you can create " +"one for each of your projects. Each library can be synchronized and shared " +"separately." +msgstr "" + +#: seahub/templates/libraries.html:44 +msgid "No library is shared to you" +msgstr "" + +#: seahub/templates/libraries.html:67 seahub/templates/starred.html:34 +msgid "You don't have any starred files yet" +msgstr "" + +#: seahub/templates/libraries.html:68 seahub/templates/starred.html:35 +msgid "" +"You can star important files by clicking the \"Star\" button on file viewing " +"page, and they will be listed here." +msgstr "" + +#: seahub/templates/libraries.html:83 +msgid "Platform" +msgstr "" + +#: seahub/templates/libraries.html:86 +msgid "Last Access" +msgstr "" + +#: seahub/templates/libraries.html:87 +msgid "# Libraries" +msgstr "" + +#: seahub/templates/libraries.html:95 +msgid "You do not have connected devices" +msgstr "" + +#: seahub/templates/libraries.html:96 +msgid "Your clients (Desktop/Android/iOS) will be listed here." +msgstr "" + +#: seahub/templates/libraries.html:103 +msgid "Welcome to Seafile!" +msgstr "" + +#: seahub/templates/libraries.html:105 +msgid "" +"Seafile organizes files into libraries. Each library can be synced and " +"shared separately. We have created a personal library for you. You can " +"create more libraries later." +msgstr "" + +#: seahub/templates/libraries.html:107 +msgid "" +"Seafile organizes files into libraries. Each library can be synced and " +"shared separately. Howerver, since you are a guest user now, you can not " +"create libraries." +msgstr "" + +#: seahub/templates/libraries.html:123 +msgid "" +"You can share libraries by clicking the \"New Library\" button above or the " +"\"Share\" icon on your libraries list." +msgstr "" + +#: seahub/templates/libraries.html:124 +msgid "" +"Libraries shared as writable can be downloaded and synced by other group " +"members. Read only libraries can only be downloaded, updates by others will " +"not be uploaded." +msgstr "" + +#: seahub/templates/libraries.html:161 +msgid "Add Library" +msgstr "" + +#: seahub/templates/libraries.html:164 +msgid "Share existing libraries" +msgstr "" + +#: seahub/templates/libraries.html:165 +msgid "Create a new library" +msgstr "" + +#: seahub/templates/libraries.html:174 +msgid "No public library" +msgstr "" + +#: seahub/templates/libraries.html:175 +msgid "" +"You can create a public library by clicking \"New Library\" button, others " +"can view and download this library." +msgstr "" + +#: seahub/templates/libraries.html:183 +msgid "My Groups" +msgstr "" + +#: seahub/templates/libraries.html:185 seahub/templates/libraries.html:203 +msgid "New Group" +msgstr "" + +#: seahub/templates/libraries.html:191 +msgid "You are not in any group" +msgstr "" + +#: seahub/templates/libraries.html:193 +msgid "" +"Group is a place for you and your friends leaving messages and collaborating " +"on libraries. You can create a group by clicking \"New Group\" button." +msgstr "" + +#: seahub/templates/libraries.html:195 +msgid "" +"Group is a place for you and your friends leaving messages and collaborating " +"on libraries. Groups you join will be listed here." +msgstr "" + +#: seahub/templates/libraries.html:204 +msgid "Group Name" +msgstr "" + #: seahub/templates/registration/activation_email.html:12 #, python-format msgid "" @@ -5424,6 +4377,7 @@ msgstr "" #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 +#: seahub/templates/sysadmin/user_batch_add_email.html:21 msgid "Log In" msgstr "" @@ -5457,16 +4411,16 @@ msgstr "" msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:71 +#: seahub/templates/registration/login.html:73 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "" -#: seahub/templates/registration/login.html:78 +#: seahub/templates/registration/login.html:80 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:82 -#: seahub/templates/registration/password_change_form.html:63 +#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 #: seahub/templates/sysadmin/sys_useradmin.html:157 @@ -5494,19 +4448,23 @@ msgid "Your password has been changed successfully." msgstr "" #: seahub/templates/registration/password_change_form.html:3 -#: seahub/templates/registration/password_change_form.html:11 +#: seahub/templates/registration/password_change_form.html:15 msgid "Password Modification" msgstr "" -#: seahub/templates/registration/password_change_form.html:13 +#: seahub/templates/registration/password_change_form.html:11 +msgid "Please update your password before continue." +msgstr "" + +#: seahub/templates/registration/password_change_form.html:17 msgid "Current Password" msgstr "" -#: seahub/templates/registration/password_change_form.html:15 +#: seahub/templates/registration/password_change_form.html:19 msgid "New Password" msgstr "" -#: seahub/templates/registration/password_change_form.html:18 +#: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 #: seahub/templates/sysadmin/sudo_mode.html:18 @@ -5515,7 +4473,7 @@ msgstr "" msgid "Confirm Password" msgstr "" -#: seahub/templates/registration/password_change_form.html:33 +#: seahub/templates/registration/password_change_form.html:37 #: seahub/templates/registration/registration_form.html:58 #, python-format msgid "" @@ -5523,25 +4481,25 @@ msgid "" "the following: uppercase letters, lowercase letters, numbers, and symbols." msgstr "" -#: seahub/templates/registration/password_change_form.html:59 +#: seahub/templates/registration/password_change_form.html:63 msgid "Current password cannot be blank" msgstr "" -#: seahub/templates/registration/password_change_form.html:67 +#: seahub/templates/registration/password_change_form.html:71 #: seahub/templates/registration/registration_form.html:92 #: seahub/templates/snippets/repo_create_js.html:54 -#: seahub/templates/snippets/shared_link_js.html:258 -#: seahub/templates/snippets/shared_link_js.html:434 +#: seahub/templates/snippets/shared_link_js.html:261 +#: seahub/templates/snippets/shared_link_js.html:437 #: seahub/templates/sysadmin/sys_org_admin.html:94 #: seahub/templates/sysadmin/sys_useradmin.html:161 msgid "Please enter the password again" msgstr "" -#: seahub/templates/registration/password_change_form.html:71 +#: seahub/templates/registration/password_change_form.html:75 #: seahub/templates/registration/registration_form.html:96 #: seahub/templates/snippets/repo_create_js.html:58 -#: seahub/templates/snippets/shared_link_js.html:262 -#: seahub/templates/snippets/shared_link_js.html:438 +#: seahub/templates/snippets/shared_link_js.html:265 +#: seahub/templates/snippets/shared_link_js.html:441 msgid "Passwords don't match" msgstr "" @@ -5557,7 +4515,7 @@ msgstr "" #: seahub/templates/registration/password_reset_done.html:4 #: seahub/templates/registration/password_reset_form.html:4 #: seahub/templates/registration/password_reset_form.html:7 -#: seahub/templates/sysadmin/sys_org_info_user.html:75 +#: seahub/templates/sysadmin/sys_org_info_user.html:70 #: seahub/templates/sysadmin/useradmin_js.html:8 msgid "Password Reset" msgstr "" @@ -5629,16 +4587,6 @@ msgstr "" msgid "Welcome back, you are already signed in." msgstr "" -#: seahub/templates/registration/registration_form.html:31 -#: seahub/templates/sysadmin/userinfo.html:37 -msgid "Department" -msgstr "" - -#: seahub/templates/registration/registration_form.html:36 -#: seahub/templates/sysadmin/userinfo.html:40 -msgid "Telephone" -msgstr "" - #: seahub/templates/registration/registration_form.html:46 msgid "Sign Up" msgstr "" @@ -5648,6 +4596,117 @@ msgstr "" msgid "Email cannot be blank" msgstr "" +#: seahub/templates/repo_dir_recycle_view.html:7 +#, python-format +msgid "%(repo_dir_name)s Trash" +msgstr "" + +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "" + +#: seahub/templates/repo_dir_recycle_view.html:34 +msgid "Delete Time" +msgstr "" + +#: seahub/templates/repo_dir_recycle_view.html:55 +msgid "Clear files in trash and history:" +msgstr "" + +#: seahub/templates/repo_dir_recycle_view.html:57 +msgid "3 days ago" +msgstr "" + +#: seahub/templates/repo_dir_recycle_view.html:58 +msgid "1 week ago" +msgstr "" + +#: seahub/templates/repo_dir_recycle_view.html:59 +msgid "1 month ago" +msgstr "" + +#: seahub/templates/repo_history.html:8 +#, python-format +msgid "%(repo_name)s Modification History" +msgstr "" + +#: seahub/templates/repo_history.html:11 +msgid "" +"Tip: a snapshot will be generated after modification, which records the " +"library state after the modification." +msgstr "" + +#: seahub/templates/repo_history.html:47 +msgid "Current Version" +msgstr "" + +#: seahub/templates/repo_history.html:49 +msgid "View Snapshot" +msgstr "" + +#: seahub/templates/repo_history_view.html:14 +#, python-format +msgid "%(repo_name)s Snapshot" +msgstr "" + +#: seahub/templates/repo_history_view.html:16 +msgid "Back to modification history" +msgstr "" + +#: seahub/templates/repo_history_view.html:64 +#: seahub/templates/snippets/repo_dir_trash_tr.html:6 +msgid "Directory" +msgstr "" + +#: seahub/templates/repo_history_view.html:88 +#: seahub/templates/sysadmin/sys_repo_trash.html:74 +msgid "Restore Library" +msgstr "" + +#: seahub/templates/repo_history_view.html:89 +msgid "Are you sure you want to restore this library?" +msgstr "" + +#: seahub/templates/share_access_validation.html:6 +msgid "" +"Please input the password if you want to browse the shared file/directory." +msgstr "" + +#: seahub/templates/shared_file_view.html:30 +#: seahub/templates/view_shared_dir.html:12 +msgid "Shared by: " +msgstr "" + +#: seahub/templates/shared_file_view.html:37 +msgid "Save to..." +msgstr "" + +#: seahub/templates/shared_file_view.html:52 +msgid "Save To:" +msgstr "" + +#: seahub/templates/shared_file_view.html:77 +#: seahub/templates/view_shared_dir.html:163 +msgid "File download is disabled: the share link traffic of owner is used up." +msgstr "" + +#: seahub/templates/shared_link_email.html:12 +#, python-format +msgid "" +"%(email)s shared a %(file_shared_type)s " +"%(file_shared_name)s to you on %(site_name)s:" +msgstr "" + +#: seahub/templates/shared_upload_link_email.html:11 +#, python-format +msgid "%(email)s shared an upload link to you on %(site_name)s." +msgstr "" + +#: seahub/templates/shared_upload_link_email.html:15 +msgid "You can go to the following page and upload your files:" +msgstr "" + #: seahub/templates/snippets/add_file_js.html:15 msgid "You don't have any library at present" msgstr "" @@ -5664,12 +4723,47 @@ msgstr "" msgid " is too large. Allowed maximum size is 1MB." msgstr "" -#: seahub/templates/snippets/bottom_bar.html:92 -msgid "Please select at least 1 group." +#: seahub/templates/snippets/file_content_html.html:26 +#: seahub/templates/view_file_image.html:15 +msgid "you can also press ← " msgstr "" -#: seahub/templates/snippets/bottom_bar.html:97 -msgid "Please input a discussion." +#: seahub/templates/snippets/file_content_html.html:26 +#: seahub/templates/view_file_image.html:15 +msgid "prev" +msgstr "" + +#: seahub/templates/snippets/file_content_html.html:32 +#: seahub/templates/view_file_image.html:21 +msgid "you can also press → " +msgstr "" + +#: seahub/templates/snippets/file_content_html.html:32 +#: seahub/templates/view_file_image.html:21 +msgid "next" +msgstr "" + +#: seahub/templates/snippets/file_content_js.html:63 +#: seahub/templates/view_file_svg.html:7 +msgid "To view it online, you can use firefox, chrome or IE 9." +msgstr "" + +#: seahub/templates/snippets/file_content_js.html:133 +#: seahub/templates/view_file_pdf.html:66 +msgid "" +"You can use IE 10 or other browsers, for example, Firefox, to view it online." +msgstr "" + +#: seahub/templates/snippets/file_encoding.html:5 +#: seahub/templates/view_file_markdown.html:20 +#: seahub/templates/view_file_text.html:29 +msgid "Encoding:" +msgstr "" + +#: seahub/templates/snippets/file_encoding.html:8 +#: seahub/templates/view_file_markdown.html:23 +#: seahub/templates/view_file_text.html:32 +msgid "auto detect" msgstr "" #: seahub/templates/snippets/file_share_popup.html:3 @@ -5681,14 +4775,6 @@ msgstr "" msgid "Private Share" msgstr "" -#: seahub/templates/snippets/group_recommend_form.html:5 -msgid "Post a discussion to group" -msgstr "" - -#: seahub/templates/snippets/group_recommend_form.html:14 -msgid "discussion" -msgstr "" - #: seahub/templates/snippets/list_commit_detail.html:23 msgid "New files" msgstr "" @@ -5752,12 +4838,13 @@ msgid "Description is required" msgstr "" #: seahub/templates/snippets/repo_create_js.html:46 -#: seahub/templates/snippets/shared_link_js.html:250 -#: seahub/templates/snippets/shared_link_js.html:426 +#: seahub/templates/snippets/shared_link_js.html:253 +#: seahub/templates/snippets/shared_link_js.html:429 msgid "Please enter password" msgstr "" #: seahub/templates/snippets/repo_del_js.html:46 +#: seahub/templates/sysadmin/admin_repo_view.html:351 msgid "Delete succeeded." msgstr "" @@ -5844,48 +4931,44 @@ msgid "pdf" msgstr "" #: seahub/templates/snippets/search_form.html:50 -msgid "seaf" -msgstr "" - -#: seahub/templates/snippets/search_form.html:51 msgid "markdown" msgstr "" -#: seahub/templates/snippets/search_form.html:53 +#: seahub/templates/snippets/search_form.html:52 msgid "Input file extensions here, separate with ','" msgstr "" -#: seahub/templates/snippets/search_form.html:54 +#: seahub/templates/snippets/search_form.html:53 msgid "" "Please select at least one file type or input at least one file extension" msgstr "" -#: seahub/templates/snippets/shared_link_js.html:130 +#: seahub/templates/snippets/shared_link_js.html:133 msgid "Select contacts" msgstr "" -#: seahub/templates/snippets/shared_link_js.html:178 -#: seahub/templates/snippets/shared_link_js.html:360 +#: seahub/templates/snippets/shared_link_js.html:181 +#: seahub/templates/snippets/shared_link_js.html:363 msgid "Please input at least an email." msgstr "" -#: seahub/templates/snippets/shared_link_js.html:201 -#: seahub/templates/snippets/shared_link_js.html:381 +#: seahub/templates/snippets/shared_link_js.html:204 +#: seahub/templates/snippets/shared_link_js.html:384 #, python-brace-format msgid "Successfully sent to {placeholder}" msgstr "" -#: seahub/templates/snippets/shared_link_js.html:205 -#: seahub/templates/snippets/shared_link_js.html:385 +#: seahub/templates/snippets/shared_link_js.html:208 +#: seahub/templates/snippets/shared_link_js.html:388 #, python-brace-format msgid "Failed to send to {placeholder}" msgstr "" -#: seahub/templates/snippets/shared_link_js.html:273 +#: seahub/templates/snippets/shared_link_js.html:276 msgid "Please enter days" msgstr "" -#: seahub/templates/snippets/shared_link_js.html:279 +#: seahub/templates/snippets/shared_link_js.html:282 msgid "Please enter valid days" msgstr "" @@ -5893,25 +4976,100 @@ msgstr "" msgid "Used:" msgstr "" -#: seahub/templates/snippets/space_and_traffic.html:7 -msgid "Sharing:" -msgstr "" - -#: seahub/templates/snippets/space_and_traffic.html:29 +#: seahub/templates/snippets/space_and_traffic.html:19 msgid "Traffic this month:" msgstr "" -#: seahub/templates/snippets/space_and_traffic.html:33 +#: seahub/templates/snippets/space_and_traffic.html:23 msgid "Payment" msgstr "" -#: seahub/templates/sysadmin/base.html:9 -#: seahub/templates/sysadmin/sys_info.html:7 -msgid "Info" +#: seahub/templates/starred.html:4 +msgid "Stars" msgstr "" -#: seahub/templates/sysadmin/base.html:18 -msgid "Users" +#: seahub/templates/starred.html:56 +msgid "Successfully unstarred." +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:117 +msgid "close" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:163 +msgid "File Uploading..." +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:164 +msgid "File Upload complete" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:165 +msgid "File Upload canceled" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:166 +msgid "File Upload failed" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:214 +#: seahub/templates/view_shared_upload_link.html:185 +msgid "Failed to get upload url" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/view_shared_upload_link.html:74 +msgid "File is too big" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/view_shared_upload_link.html:75 +msgid "File is too small" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/view_shared_upload_link.html:76 +msgid "Filetype not allowed" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/view_shared_upload_link.html:77 +msgid "Max number of files exceeded" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/view_shared_upload_link.html:78 +msgid "Uploaded bytes exceed file size" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/view_shared_upload_link.html:79 +msgid "Empty file upload result" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:289 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/view_shared_upload_link.html:82 +msgid "uploaded" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/view_shared_upload_link.html:83 +msgid "canceled" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/view_shared_upload_link.html:84 +msgid "Start" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:310 +#: seahub/templates/sysadmin/settings.html:160 +msgid "It is required." msgstr "" #: seahub/templates/sysadmin/base.html:25 @@ -5919,15 +5077,19 @@ msgstr "" msgid "Organizations" msgstr "" -#: seahub/templates/sysadmin/base.html:36 -msgid "Traffic" +#: seahub/templates/sysadmin/base.html:30 +msgid "Institutions" msgstr "" #: seahub/templates/sysadmin/base.html:41 -msgid "Logs" +msgid "Traffic" msgstr "" #: seahub/templates/sysadmin/base.html:46 +msgid "Logs" +msgstr "" + +#: seahub/templates/sysadmin/base.html:51 msgid "Virus Scan" msgstr "" @@ -5936,20 +5098,10 @@ msgstr "" #: seahub/templates/sysadmin/sys_group_admin.html:18 #: seahub/templates/sysadmin/sys_org_info_group.html:19 #: seahub/templates/sysadmin/sys_org_search.html:11 -#: seahub/views/sysadmin.py:1397 +#: seahub/views/sysadmin.py:1400 msgid "Creator" msgstr "" -#: seahub/templates/sysadmin/org_admin_table.html:6 -#: seahub/templates/sysadmin/sys_org_info_base.html:27 -#: seahub/templates/sysadmin/sys_org_info_user.html:19 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:28 -#: seahub/templates/sysadmin/sys_useradmin_ldap.html:26 -#: seahub/templates/sysadmin/useradmin_table.html:12 -#: seahub/templates/sysadmin/userinfo.html:45 -msgid "Space Used" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:7 msgid "Created At / Expiration" msgstr "" @@ -5963,6 +5115,30 @@ msgstr "" msgid "Transfer %(lib_name)s to:" msgstr "" +#: seahub/templates/sysadmin/repoadmin_js.html:18 +msgid "Search user or enter email and press Enter" +msgstr "" + +#: seahub/templates/sysadmin/repoadmin_js.html:19 +msgid "Please enter 1 or more character" +msgstr "" + +#: seahub/templates/sysadmin/repoadmin_js.html:20 +msgid "No matches" +msgstr "" + +#: seahub/templates/sysadmin/repoadmin_js.html:21 +msgid "Searching..." +msgstr "" + +#: seahub/templates/sysadmin/repoadmin_js.html:22 +msgid "Loading failed" +msgstr "" + +#: seahub/templates/sysadmin/repoadmin_js.html:23 +msgid "You cannot select any more choices" +msgstr "" + #: seahub/templates/sysadmin/repoadmin_js.html:43 #: seahub/templates/sysadmin/sys_admin_group_info.html:98 #: seahub/templates/sysadmin/sys_org_info_library.html:60 @@ -5974,15 +5150,13 @@ msgstr "" msgid "Files / Size" msgstr "" -#: seahub/templates/sysadmin/repoadmin_table.html:8 -#: seahub/templates/sysadmin/sys_org_admin.html:30 -#: seahub/templates/sysadmin/sys_org_info_library.html:21 -#: seahub/templates/sysadmin/sys_publink_admin.html:13 -#: seahub/templates/sysadmin/sys_repo_search.html:17 -#: seahub/templates/sysadmin/sys_repo_trash.html:29 -#: seahub/templates/sysadmin/sys_virus_scan_records.html:12 -#: seahub/views/sysadmin.py:925 -msgid "Owner" +#: seahub/templates/sysadmin/settings.html:144 +#: seahub/templates/sysadmin/settings.html:182 seahub/views/sysadmin.py:377 +#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 +#: seahub/views/sysadmin.py:1568 seahub/views/sysadmin.py:1625 +#: seahub/views/sysadmin.py:2260 seahub/views/sysadmin.py:2303 +#: seahub/views/sysadmin.py:2371 +msgid "Success" msgstr "" #: seahub/templates/sysadmin/sudo_mode.html:8 @@ -6011,17 +5185,6 @@ msgstr "" msgid "Group Info" msgstr "" -#: seahub/templates/sysadmin/sys_admin_group_info.html:49 -#: seahub/templates/sysadmin/sys_admin_group_info.html:51 -#: seahub/templates/sysadmin/sys_admin_group_info.html:53 -#: seahub/templates/sysadmin/userinfo.html:92 -#: seahub/templates/sysadmin/userinfo.html:94 -#: seahub/templates/sysadmin/userinfo.html:135 -#: seahub/templates/sysadmin/userinfo.html:137 -#: seahub/templates/sysadmin/userinfo.html:139 -msgid "library icon" -msgstr "" - #: seahub/templates/sysadmin/sys_admin_group_info.html:72 msgid "No library has shared to this group" msgstr "" @@ -6035,17 +5198,9 @@ msgstr "" msgid "Export Excel" msgstr "" -#: seahub/templates/sysadmin/sys_group_admin.html:19 -#: seahub/templates/sysadmin/sys_org_info_group.html:20 -#: seahub/templates/sysadmin/sys_publink_admin.html:14 -#: seahub/templates/sysadmin/userinfo.html:213 seahub/views/sysadmin.py:610 -#: seahub/views/sysadmin.py:613 seahub/views/sysadmin.py:1397 -msgid "Create At" -msgstr "" - #: seahub/templates/sysadmin/sys_group_admin.html:49 #: seahub/templates/sysadmin/sys_org_info_group.html:43 -#: seahub/templates/sysadmin/userinfo.html:309 +#: seahub/templates/sysadmin/userinfo.html:296 msgid "Delete Group" msgstr "" @@ -6069,33 +5224,78 @@ msgstr "" msgid "Upgrade to Pro Edition" msgstr "" -#: seahub/templates/sysadmin/sys_info.html:23 -#: seahub/templates/sysadmin/sys_info.html:32 -msgid "Active Users" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:23 -#: seahub/templates/sysadmin/sys_info.html:32 -msgid "Total Users" -msgstr "" - #: seahub/templates/sysadmin/sys_info.html:23 msgid "Limits" msgstr "" -#: seahub/templates/sysadmin/sys_list_system.html:7 -#: seahub/templates/sysadmin/sys_repo_admin.html:12 -msgid "Search libraries by name..." +#: seahub/templates/sysadmin/sys_inst_admin.html:9 +msgid "All Institutions" msgstr "" -#: seahub/templates/sysadmin/sys_list_system.html:14 +#: seahub/templates/sysadmin/sys_inst_admin.html:17 +msgid "Add institution" +msgstr "" + +#: seahub/templates/sysadmin/sys_inst_admin.html:60 +#: seahub/templates/sysadmin/sys_org_admin.html:78 +msgid "Name can not be blank" +msgstr "" + +#: seahub/templates/sysadmin/sys_inst_admin.html:66 +msgid "Delete Institution" +msgstr "" + +#: seahub/templates/sysadmin/sys_inst_info_base.html:16 +msgid "Back" +msgstr "" + +#: seahub/templates/sysadmin/sys_inst_info_base.html:20 +#: seahub/templates/sysadmin/sys_org_info_base.html:20 +msgid "Number of members" +msgstr "" + +#: seahub/templates/sysadmin/sys_inst_info_user.html:39 +#: seahub/templates/sysadmin/useradmin_js.html:13 +#: seahub/templates/sysadmin/useradmin_table.html:82 +msgid "Revoke Admin" +msgstr "" + +#: seahub/templates/sysadmin/sys_inst_info_user.html:39 +msgid "Set Admin" +msgstr "" + +#: seahub/templates/sysadmin/sys_inst_info_user.html:46 +#: seahub/templates/sysadmin/sys_org_info_user.html:57 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:73 +#: seahub/templates/sysadmin/sys_useradmin.html:68 +#: seahub/templates/sysadmin/sys_useradmin_admins.html:46 +#: seahub/templates/sysadmin/sys_useradmin_paid.html:31 +#: seahub/templates/sysadmin/user_search.html:21 +msgid "Activating..., please wait" +msgstr "" + +#: seahub/templates/sysadmin/sys_inst_info_user.html:92 +#: seahub/templates/sysadmin/sys_org_info_user.html:105 +#: seahub/templates/sysadmin/useradmin_js.html:64 +msgid "Edit succeeded, an email has been sent." +msgstr "" + +#: seahub/templates/sysadmin/sys_inst_info_user.html:94 +#: seahub/templates/sysadmin/sys_org_info_user.html:107 +#: seahub/templates/sysadmin/useradmin_js.html:66 +msgid "" +"Edit succeeded, but failed to send email, please check your email " +"configuration." +msgstr "" + +#: seahub/templates/sysadmin/sys_list_system.html:8 #: seahub/templates/sysadmin/sys_org_admin.html:14 #: seahub/templates/sysadmin/sys_repo_admin.html:19 #: seahub/templates/sysadmin/sys_repo_trash.html:14 msgid "All" msgstr "" -#: seahub/templates/sysadmin/sys_list_system.html:15 +#: seahub/templates/sysadmin/sys_list_system.html:9 #: seahub/templates/sysadmin/sys_repo_admin.html:20 #: seahub/templates/sysadmin/sys_repo_trash.html:15 msgid "System" @@ -6118,10 +5318,6 @@ msgstr "" msgid "None." msgstr "" -#: seahub/templates/sysadmin/sys_org_admin.html:78 -msgid "Name can not be blank" -msgstr "" - #: seahub/templates/sysadmin/sys_org_admin.html:82 msgid "Url can not be blank" msgstr "" @@ -6140,39 +5336,33 @@ msgid "Passwords do not match" msgstr "" #: seahub/templates/sysadmin/sys_org_admin.html:137 -#: seahub/templates/sysadmin/useradmin_js.html:18 msgid "Remove Trial" msgstr "" #: seahub/templates/sysadmin/sys_org_admin.html:138 -#: seahub/templates/sysadmin/useradmin_js.html:19 #, python-format msgid "Are you sure you want to remove trial for %s ?" msgstr "" -#: seahub/templates/sysadmin/sys_org_info_base.html:17 +#: seahub/templates/sysadmin/sys_org_info_base.html:16 msgid "Back to organization list" msgstr "" -#: seahub/templates/sysadmin/sys_org_info_base.html:21 -msgid "Number of members" -msgstr "" - -#: seahub/templates/sysadmin/sys_org_info_base.html:23 +#: seahub/templates/sysadmin/sys_org_info_base.html:22 msgid "Number of groups" msgstr "" -#: seahub/templates/sysadmin/sys_org_info_base.html:29 -#: seahub/templates/sysadmin/userinfo.html:52 +#: seahub/templates/sysadmin/sys_org_info_base.html:28 +#: seahub/templates/sysadmin/userinfo.html:45 msgid "Set Quota" msgstr "" -#: seahub/templates/sysadmin/sys_org_info_base.html:32 +#: seahub/templates/sysadmin/sys_org_info_base.html:31 msgid "Set org storage limit" msgstr "" -#: seahub/templates/sysadmin/sys_org_info_base.html:35 -#: seahub/templates/sysadmin/userinfo.html:61 +#: seahub/templates/sysadmin/sys_org_info_base.html:34 +#: seahub/templates/sysadmin/userinfo.html:51 msgid "Tip: 0 means default limit" msgstr "" @@ -6201,86 +5391,26 @@ msgid "Max User Number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1616 +#: seahub/views/sysadmin.py:1619 msgid "Input should be a number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1626 +#: seahub/views/sysadmin.py:1629 msgid "Input number should be greater than 0" msgstr "" -#: seahub/templates/sysadmin/sys_org_info_user.html:18 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:27 -#: seahub/templates/sysadmin/useradmin_table.html:6 -#: seahub/templates/sysadmin/useradmin_table.html:10 -#: seahub/views/sysadmin.py:610 seahub/views/sysadmin.py:613 -msgid "Status" -msgstr "" - -#: seahub/templates/sysadmin/sys_org_info_user.html:20 -#: seahub/templates/sysadmin/sys_useradmin_ldap.html:25 -#: seahub/templates/sysadmin/useradmin_table.html:13 -msgid "Create At / Last Login" -msgstr "" - -#: seahub/templates/sysadmin/sys_org_info_user.html:30 -#: seahub/templates/sysadmin/sys_org_info_user.html:37 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:40 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:47 -#: seahub/templates/sysadmin/useradmin_table.html:32 -#: seahub/templates/sysadmin/useradmin_table.html:39 -#: seahub/views/sysadmin.py:627 -msgid "Active" -msgstr "" - -#: seahub/templates/sysadmin/sys_org_info_user.html:32 -#: seahub/templates/sysadmin/sys_org_info_user.html:38 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:42 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:48 -#: seahub/templates/sysadmin/useradmin_table.html:34 -#: seahub/templates/sysadmin/useradmin_table.html:40 -#: seahub/views/sysadmin.py:629 -msgid "Inactive" -msgstr "" - -#: seahub/templates/sysadmin/sys_org_info_user.html:54 -#: seahub/templates/sysadmin/useradmin_table.html:84 +#: seahub/templates/sysadmin/sys_org_info_user.html:49 +#: seahub/templates/sysadmin/useradmin_table.html:79 msgid "ResetPwd" msgstr "" -#: seahub/templates/sysadmin/sys_org_info_user.html:62 -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:78 -#: seahub/templates/sysadmin/sys_useradmin.html:68 -#: seahub/templates/sysadmin/sys_useradmin_admins.html:46 -#: seahub/templates/sysadmin/sys_useradmin_paid.html:31 -#: seahub/templates/sysadmin/user_search.html:21 -msgid "Activating..., please wait" -msgstr "" - #: seahub/templates/sysadmin/sys_org_info_user.html:71 -#: seahub/templates/sysadmin/useradmin_js.html:3 -msgid "Delete User" -msgstr "" - -#: seahub/templates/sysadmin/sys_org_info_user.html:76 #: seahub/templates/sysadmin/useradmin_js.html:9 #, python-format msgid "Are you sure you want to reset the password of %s ?" msgstr "" -#: seahub/templates/sysadmin/sys_org_info_user.html:110 -#: seahub/templates/sysadmin/useradmin_js.html:64 -msgid "Edit succeeded, an email has been sent." -msgstr "" - -#: seahub/templates/sysadmin/sys_org_info_user.html:112 -#: seahub/templates/sysadmin/useradmin_js.html:66 -msgid "" -"Edit succeeded, but failed to send email, please check your email " -"configuration." -msgstr "" - #: seahub/templates/sysadmin/sys_org_search.html:9 msgid "Tip: you can search by keyword in name or creator or both." msgstr "" @@ -6309,6 +5439,10 @@ msgstr "" msgid "Count" msgstr "" +#: seahub/templates/sysadmin/sys_repo_admin.html:12 +msgid "Search libraries by name..." +msgstr "" + #: seahub/templates/sysadmin/sys_repo_search.html:12 msgid "Search Library" msgstr "" @@ -6381,21 +5515,45 @@ msgstr "" msgid "Search users..." msgstr "" +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:16 +#: seahub/templates/sysadmin/sys_useradmin.html:14 +#: seahub/templates/sysadmin/sys_useradmin_admins.html:14 +#: seahub/templates/sysadmin/sys_useradmin_ldap.html:15 +#: seahub/templates/sysadmin/sys_useradmin_paid.html:14 +msgid "Database" +msgstr "" + +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:17 +#: seahub/templates/sysadmin/sys_useradmin.html:16 +#: seahub/templates/sysadmin/sys_useradmin_admins.html:16 +#: seahub/templates/sysadmin/sys_useradmin_ldap.html:16 +#: seahub/templates/sysadmin/sys_useradmin_paid.html:16 +msgid "LDAP" +msgstr "" + #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:18 #: seahub/templates/sysadmin/sys_useradmin.html:17 #: seahub/templates/sysadmin/sys_useradmin_admins.html:17 #: seahub/templates/sysadmin/sys_useradmin_ldap.html:17 #: seahub/templates/sysadmin/sys_useradmin_paid.html:17 -#: seahub/views/sysadmin.py:611 seahub/views/sysadmin.py:614 +#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 msgid "LDAP(imported)" msgstr "" +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:19 +#: seahub/templates/sysadmin/sys_useradmin.html:19 +#: seahub/templates/sysadmin/sys_useradmin_admins.html:19 +#: seahub/templates/sysadmin/sys_useradmin_ldap.html:18 +#: seahub/templates/sysadmin/sys_useradmin_paid.html:19 +msgid "Admins" +msgstr "" + #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:611 seahub/views/sysadmin.py:614 +#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 msgid "Last Login" msgstr "" -#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:73 +#: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:68 msgid "No LDAP users have been imported" msgstr "" @@ -6408,12 +5566,6 @@ msgstr "" msgid "Add user" msgstr "" -#: seahub/templates/sysadmin/sys_useradmin.html:36 -#: seahub/templates/sysadmin/useradmin_table.html:7 -#: seahub/templates/sysadmin/userinfo.html:212 seahub/views/sysadmin.py:610 -msgid "Role" -msgstr "" - #: seahub/templates/sysadmin/sys_useradmin.html:36 msgid "" "You can also add a user as a guest, who will not be allowed to create " @@ -6423,7 +5575,7 @@ msgstr "" #: seahub/templates/sysadmin/sys_useradmin.html:39 #: seahub/templates/sysadmin/useradmin_table.html:48 #: seahub/templates/sysadmin/useradmin_table.html:56 -#: seahub/views/sysadmin.py:640 +#: seahub/views/sysadmin.py:659 msgid "Guest" msgstr "" @@ -6435,6 +5587,10 @@ msgstr "" msgid "File format: user@mail.com,password" msgstr "" +#: seahub/templates/sysadmin/sys_useradmin.html:58 +msgid "Please choose a CSV file" +msgstr "" + #: seahub/templates/sysadmin/sys_useradmin.html:83 #, python-format msgid "A new server version %(v)s is available." @@ -6489,20 +5645,24 @@ msgid "" msgstr "" #: seahub/templates/sysadmin/user_add_email.html:15 +#: seahub/templates/sysadmin/user_batch_add_email.html:12 #, python-format msgid "%(user)s invited you to join %(site_name)s." msgstr "" #: seahub/templates/sysadmin/user_add_email.html:20 +#: seahub/templates/sysadmin/user_batch_add_email.html:16 msgid "Here is your account information:" msgstr "" #: seahub/templates/sysadmin/user_add_email.html:21 +#: seahub/templates/sysadmin/user_batch_add_email.html:17 #, python-format msgid "Email: %(email)s" msgstr "" #: seahub/templates/sysadmin/user_add_email.html:22 +#: seahub/templates/sysadmin/user_batch_add_email.html:18 #, python-format msgid "Password: %(password)s" msgstr "" @@ -6518,67 +5678,169 @@ msgstr "" msgid "Search User" msgstr "" -#: seahub/templates/sysadmin/useradmin_js.html:13 -#: seahub/templates/sysadmin/useradmin_table.html:87 -msgid "Revoke Admin" -msgstr "" - #: seahub/templates/sysadmin/useradmin_js.html:14 #, python-format msgid "Are you sure you want to revoke the admin permission of %s ?" msgstr "" -#: seahub/templates/sysadmin/userinfo.html:15 -msgid "Back to user list" -msgstr "" - -#: seahub/templates/sysadmin/userinfo.html:29 -msgctxt "true name" -msgid "Name" -msgstr "" - -#: seahub/templates/sysadmin/userinfo.html:32 -msgid "Self-introduction" -msgstr "" - -#: seahub/templates/sysadmin/userinfo.html:46 -msgid "Used" -msgstr "" - -#: seahub/templates/sysadmin/userinfo.html:49 -msgid "Sharing" -msgstr "" - -#: seahub/templates/sysadmin/userinfo.html:55 +#: seahub/templates/sysadmin/userinfo.html:48 msgid "Set user storage limit" msgstr "" -#: seahub/templates/sysadmin/userinfo.html:116 -msgid "This user has not created any libraries" -msgstr "" - -#: seahub/templates/sysadmin/userinfo.html:127 +#: seahub/templates/sysadmin/userinfo.html:123 msgid "Share From" msgstr "" -#: seahub/templates/sysadmin/userinfo.html:154 +#: seahub/templates/sysadmin/userinfo.html:150 msgid "This user has no shared libraries" msgstr "" -#: seahub/templates/sysadmin/userinfo.html:202 +#: seahub/templates/sysadmin/userinfo.html:198 msgid "This user has not created any shared links" msgstr "" -#: seahub/templates/sysadmin/userinfo.html:227 -msgid "This user has not created or joined any groups" -msgstr "" - -#: seahub/templates/sysadmin/userinfo.html:270 +#: seahub/templates/sysadmin/userinfo.html:266 msgid "Space Quota can't be empty" msgstr "" -#: seahub/templates/sysadmin/userinfo.html:279 -msgid "Share Quota can't be empty" +#: seahub/templates/text_diff.html:6 +msgid "modification details" +msgstr "" + +#: seahub/templates/text_diff.html:7 +msgid "Back to file versions" +msgstr "" + +#: seahub/templates/text_diff.html:22 +msgid "It's a newly-created blank file." +msgstr "" + +#: seahub/templates/text_diff.html:29 +msgid "before modification" +msgstr "" + +#: seahub/templates/text_diff.html:31 +msgid "after modification" +msgstr "" + +#: seahub/templates/update_file_error.html:6 +msgid "Update file " +msgstr "" + +#: seahub/templates/update_file_error.html:14 +#: seahub/templates/upload_file_error.html:10 +msgid "error: " +msgstr "" + +#: seahub/templates/upload_file_error.html:6 +msgid "Upload file" +msgstr "" + +#: seahub/templates/upload_file_error.html:6 +msgid "to" +msgstr "" + +#: seahub/templates/user_404.html:6 +msgid "Sorry, this user is not registered yet." +msgstr "" + +#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_history_file.html:23 +#: seahub/templates/view_snapshot_file.html:13 +#: seahub/templates/view_trash_file.html:10 +msgid "Current Path: " +msgstr "" + +#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_markdown.html:7 +#: seahub/templates/view_file_text.html:16 +msgid "updated this file" +msgstr "" + +#: seahub/templates/view_file_base.html:92 +msgid "Back to top" +msgstr "" + +#: seahub/templates/view_file_base.html:92 +msgid "top" +msgstr "" + +#: seahub/templates/view_file_base.html:166 seahub/views/ajax.py:1417 +#: seahub/views/ajax.py:2284 seahub/views/sysadmin.py:380 +#: seahub/views/sysadmin.py:398 seahub/views/sysadmin.py:421 +msgid "Failed" +msgstr "" + +#: seahub/templates/view_file_markdown.html:7 +#: seahub/templates/view_file_text.html:16 +msgid "Detail" +msgstr "" + +#: seahub/templates/view_shared_dir.html:41 +msgid "ZIP" +msgstr "" + +#: seahub/templates/view_shared_dir.html:170 +msgid "Close (Esc)" +msgstr "" + +#: seahub/templates/view_shared_dir.html:174 +msgid "Previous (Left arrow key)" +msgstr "" + +#: seahub/templates/view_shared_dir.html:175 +msgid "Next (Right arrow key)" +msgstr "" + +#: seahub/templates/view_shared_dir.html:176 +#, python-format +msgid "%%curr%% of %%total%%" +msgstr "" + +#: seahub/templates/view_shared_dir.html:182 +msgid "Open in New Tab" +msgstr "" + +#: seahub/templates/view_shared_dir.html:185 +#, python-format +msgid "" +"The image could not be loaded." +msgstr "" + +#: seahub/templates/view_shared_upload_link.html:8 +#, python-format +msgid "Upload files to %(dir_name)s" +msgstr "" + +#: seahub/templates/view_shared_upload_link.html:9 +msgid "shared by:" +msgstr "" + +#: seahub/templates/view_shared_upload_link.html:11 +msgid "The owner of this library has run out of space." +msgstr "" + +#: seahub/templates/view_shared_upload_link.html:18 +#: seahub/templates/view_shared_upload_link.html:63 +msgid "Add Files" +msgstr "" + +#: seahub/templates/view_shared_upload_link.html:24 +msgid "Add folder" +msgstr "" + +#: seahub/templates/view_shared_upload_link.html:34 +msgid "" +"File Drag & Drop is supported for Chrome, Safari 5.0+, Firefox 4.0+, IE 10.0+" +msgstr "" + +#: seahub/templates/view_shared_upload_link.html:36 +msgid "Folder Drag & Drop is supported for Chrome" +msgstr "" + +#: seahub/templates/view_shared_upload_link.html:39 +#, python-format +msgid "File size should be smaller than %(max_file_size)s" msgstr "" #: seahub/templates/wiki/personal_wiki.html:32 @@ -6593,25 +5855,24 @@ msgstr "" msgid "Personal Wiki Pages" msgstr "" -#: seahub/thumbnail/views.py:45 seahub/thumbnail/views.py:152 +#: seahub/thumbnail/views.py:45 seahub/thumbnail/views.py:153 msgid "Invalid arguments." msgstr "" -#: seahub/thumbnail/views.py:51 seahub/thumbnail/views.py:146 -#: seahub/views/ajax.py:256 seahub/views/ajax.py:343 seahub/views/ajax.py:421 -#: seahub/views/ajax.py:1181 seahub/views/ajax.py:1201 -#: seahub/views/ajax.py:1250 seahub/views/ajax.py:1579 -#: seahub/views/ajax.py:1597 seahub/views/ajax.py:2630 -#: seahub/views/ajax.py:2650 seahub/views/ajax.py:2693 -#: seahub/views/ajax.py:2700 +#: seahub/thumbnail/views.py:51 seahub/thumbnail/views.py:147 +#: seahub/views/ajax.py:263 seahub/views/ajax.py:1055 +#: seahub/views/ajax.py:1075 seahub/views/ajax.py:1124 +#: seahub/views/ajax.py:1454 seahub/views/ajax.py:1472 +#: seahub/views/ajax.py:2337 seahub/views/ajax.py:2357 +#: seahub/views/ajax.py:2400 seahub/views/ajax.py:2407 msgid "Permission denied." msgstr "" -#: seahub/thumbnail/views.py:62 seahub/thumbnail/views.py:168 +#: seahub/thumbnail/views.py:62 seahub/thumbnail/views.py:169 msgid "Failed to create thumbnail." msgstr "" -#: seahub/thumbnail/views.py:134 +#: seahub/thumbnail/views.py:135 msgid "Invalid token." msgstr "" @@ -6619,130 +5880,126 @@ msgstr "" msgid "permission error" msgstr "" -#: seahub/views/__init__.py:620 seahub/views/__init__.py:635 +#: seahub/views/__init__.py:489 seahub/views/__init__.py:504 msgid "Unable to view recycle page" msgstr "" -#: seahub/views/__init__.py:926 seahub/views/__init__.py:940 -msgid "Root Directory" -msgstr "" - -#: seahub/views/__init__.py:968 +#: seahub/views/__init__.py:567 msgid "Filename contains invalid character" msgstr "" -#: seahub/views/__init__.py:970 +#: seahub/views/__init__.py:569 msgid "Duplicated filename" msgstr "" -#: seahub/views/__init__.py:974 +#: seahub/views/__init__.py:573 msgid "File size surpasses the limit" msgstr "" -#: seahub/views/__init__.py:976 +#: seahub/views/__init__.py:575 msgid "The space of owner is used up, upload failed" msgstr "" -#: seahub/views/__init__.py:978 +#: seahub/views/__init__.py:577 msgid "An error occurs during file transfer" msgstr "" -#: seahub/views/__init__.py:990 seahub/views/__init__.py:1012 +#: seahub/views/__init__.py:589 seahub/views/__init__.py:611 msgid "Invalid url" msgstr "" -#: seahub/views/__init__.py:1032 +#: seahub/views/__init__.py:631 msgid "Unable to view library modification" msgstr "" -#: seahub/views/__init__.py:1130 +#: seahub/views/__init__.py:729 msgid "Please specify history ID" msgstr "" -#: seahub/views/__init__.py:1140 +#: seahub/views/__init__.py:739 msgid "History you specified does not exist" msgstr "" -#: seahub/views/__init__.py:1142 +#: seahub/views/__init__.py:741 msgid "Unknown error" msgstr "" -#: seahub/views/__init__.py:1190 seahub/views/__init__.py:1191 -#: seahub/views/__init__.py:1196 seahub/views/__init__.py:1197 +#: seahub/views/__init__.py:797 seahub/views/__init__.py:798 +#: seahub/views/__init__.py:803 seahub/views/__init__.py:804 msgid "My Library" msgstr "" -#: seahub/views/__init__.py:1344 +#: seahub/views/__init__.py:900 msgid "Failed to unshare the library, as it does not exist." msgstr "" -#: seahub/views/__init__.py:1380 +#: seahub/views/__init__.py:936 #, python-format msgid "Unshare \"%s\" successfully." msgstr "" -#: seahub/views/__init__.py:1382 +#: seahub/views/__init__.py:938 #, python-format msgid "Failed to unshare \"%s\"." msgstr "" -#: seahub/views/__init__.py:1483 +#: seahub/views/__init__.py:1039 msgid "No revisions found" msgstr "" -#: seahub/views/__init__.py:1544 seahub/views/file.py:1056 +#: seahub/views/__init__.py:1099 seahub/views/file.py:1051 msgid "Check file lock error" msgstr "" -#: seahub/views/__init__.py:1548 seahub/views/file.py:1059 +#: seahub/views/__init__.py:1103 seahub/views/file.py:1054 msgid "File is locked" msgstr "" -#: seahub/views/__init__.py:1555 seahub/views/__init__.py:1608 +#: seahub/views/__init__.py:1110 seahub/views/__init__.py:1149 msgid "Failed to restore, please try again later." msgstr "" -#: seahub/views/__init__.py:1574 +#: seahub/views/__init__.py:1115 #, python-format msgid "" "Successfully revert %(path)s to root directory." msgstr "" -#: seahub/views/__init__.py:1578 seahub/views/__init__.py:1632 +#: seahub/views/__init__.py:1119 seahub/views/__init__.py:1158 #, python-format msgid "Successfully revert %(path)s" msgstr "" -#: seahub/views/__init__.py:1628 +#: seahub/views/__init__.py:1154 #, python-format msgid "Successfully revert %(path)s to root directory." msgstr "" -#: seahub/views/__init__.py:1845 seahub/views/repo.py:441 +#: seahub/views/__init__.py:1253 seahub/views/repo.py:252 #, python-format msgid "\"%s\" does not exist." msgstr "" -#: seahub/views/__init__.py:1864 seahub/views/file.py:1041 -#: seahub/views/repo.py:388 +#: seahub/views/__init__.py:1271 seahub/views/file.py:1036 +#: seahub/views/repo.py:199 msgid "Internal Error" msgstr "" -#: seahub/views/__init__.py:1867 seahub/views/repo.py:391 +#: seahub/views/__init__.py:1274 seahub/views/repo.py:202 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "" -#: seahub/views/__init__.py:1875 +#: seahub/views/__init__.py:1282 #, python-format msgid "Unable to download \"%s\"" msgstr "" -#: seahub/views/__init__.py:1991 +#: seahub/views/__init__.py:1373 msgid "Successfully enable \"Personal Wiki\"." msgstr "" -#: seahub/views/__init__.py:1996 +#: seahub/views/__init__.py:1378 msgid "Successfully disable \"Personal Wiki\"." msgstr "" @@ -6758,288 +6015,278 @@ msgstr "" msgid "The group doesn't exist" msgstr "" -#: seahub/views/ajax.py:271 seahub/views/ajax.py:358 seahub/views/ajax.py:427 -#: seahub/views/ajax.py:1263 seahub/views/ajax.py:1897 +#: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 +#: seahub/views/ajax.py:1749 msgid "Library is encrypted." msgstr "" -#: seahub/views/ajax.py:277 seahub/views/ajax.py:364 seahub/views/ajax.py:433 -#: seahub/views/ajax.py:1269 +#: seahub/views/ajax.py:275 seahub/views/ajax.py:1143 msgid "Error: no head commit id" msgstr "" -#: seahub/views/ajax.py:677 seahub/views/ajax.py:727 +#: seahub/views/ajax.py:551 seahub/views/ajax.py:601 msgid "Argument missing." msgstr "" -#: seahub/views/ajax.py:705 +#: seahub/views/ajax.py:579 #, python-format msgid "Internal error. Failed to delete %s." msgstr "" -#: seahub/views/ajax.py:779 +#: seahub/views/ajax.py:653 msgid "Destination path is too long." msgstr "" -#: seahub/views/ajax.py:836 seahub/views/ajax.py:913 +#: seahub/views/ajax.py:659 seahub/views/ajax.py:877 +msgid "Invalid destination path" +msgstr "" + +#: seahub/views/ajax.py:710 seahub/views/ajax.py:787 #, python-format msgid "Successfully moved %(name)s" msgstr "" -#: seahub/views/ajax.py:870 seahub/views/ajax.py:956 +#: seahub/views/ajax.py:744 seahub/views/ajax.py:830 #, python-format msgid "Successfully copied %(name)s" msgstr "" -#: seahub/views/ajax.py:887 seahub/views/ajax.py:1046 +#: seahub/views/ajax.py:761 seahub/views/ajax.py:920 #, python-format msgid "Can not move directory %(src)s to its subdirectory %(des)s" msgstr "" -#: seahub/views/ajax.py:935 seahub/views/ajax.py:1094 +#: seahub/views/ajax.py:809 seahub/views/ajax.py:968 #, python-format msgid "Can not copy directory %(src)s to its subdirectory %(des)s" msgstr "" -#: seahub/views/ajax.py:997 +#: seahub/views/ajax.py:871 #, python-format msgid "Destination path is too long for %s." msgstr "" -#: seahub/views/ajax.py:1087 +#: seahub/views/ajax.py:961 msgid "You do not have permission to copy files/folders in this directory" msgstr "" -#: seahub/views/ajax.py:1171 +#: seahub/views/ajax.py:1045 msgid "Cancel failed" msgstr "" -#: seahub/views/ajax.py:1298 seahub/views/ajax.py:1316 -#: seahub/views/ajax.py:1971 seahub/views/ajax.py:2034 +#: seahub/views/ajax.py:1172 seahub/views/ajax.py:1190 msgid "You do not have permission to create library" msgstr "" -#: seahub/views/ajax.py:1304 +#: seahub/views/ajax.py:1178 msgid "Repo not found." msgstr "" -#: seahub/views/ajax.py:1336 seahub/views/ajax.py:1360 +#: seahub/views/ajax.py:1210 seahub/views/ajax.py:1234 msgid "Failed to create sub library, please try again later." msgstr "" -#: seahub/views/ajax.py:1380 +#: seahub/views/ajax.py:1255 msgid "Failed to get file block list" msgstr "" -#: seahub/views/ajax.py:1418 +#: seahub/views/ajax.py:1293 msgid "Wrong repo id" msgstr "" -#: seahub/views/ajax.py:1852 +#: seahub/views/ajax.py:1704 msgid "Bad upload link token." msgstr "" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1710 msgid "Bad repo id in upload link." msgstr "" -#: seahub/views/ajax.py:1919 +#: seahub/views/ajax.py:1771 msgid "No conflict in the merge." msgstr "" -#: seahub/views/ajax.py:2140 +#: seahub/views/ajax.py:1849 msgid "Failed to edit library information." msgstr "" -#: seahub/views/ajax.py:2149 +#: seahub/views/ajax.py:1858 msgid "Failed to save settings on server" msgstr "" -#: seahub/views/ajax.py:2152 +#: seahub/views/ajax.py:1861 msgid "Settings saved." msgstr "" -#: seahub/views/ajax.py:2183 +#: seahub/views/ajax.py:1892 #, python-format msgid "Username %s is not valid." msgstr "" -#: seahub/views/ajax.py:2190 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not found." msgstr "" -#: seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:1906 #, python-format msgid "User %s is not in current organization." msgstr "" -#: seahub/views/ajax.py:2207 +#: seahub/views/ajax.py:1916 #, python-format msgid "Can not transfer library to organization user %s." msgstr "" -#: seahub/views/ajax.py:2236 +#: seahub/views/ajax.py:1945 msgid "Faied to change password, you are not owner." msgstr "" -#: seahub/views/ajax.py:2248 -#, python-format -msgid "Successfully updated the password of Library %(repo_name)s." -msgstr "" - -#: seahub/views/ajax.py:2344 seahub/views/ajax.py:2486 +#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "" -#: seahub/views/ajax.py:2348 seahub/views/ajax.py:2490 +#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 msgid "Path should start with \"/\"" msgstr "" -#: seahub/views/ajax.py:2352 seahub/views/ajax.py:2494 +#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 msgid "Path should not end with \"/\"" msgstr "" -#: seahub/views/ajax.py:2356 seahub/views/ajax.py:2498 +#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 msgid "Invalid path" msgstr "" -#: seahub/views/ajax.py:2364 +#: seahub/views/ajax.py:2071 msgid "Invalid user, should be registered" msgstr "" -#: seahub/views/ajax.py:2376 seahub/views/ajax.py:2389 -#: seahub/views/ajax.py:2519 seahub/views/ajax.py:2532 +#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 +#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 msgid "Operation failed" msgstr "" -#: seahub/views/ajax.py:2379 seahub/views/ajax.py:2522 +#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 msgid "Wrong folder permission" msgstr "" -#: seahub/views/ajax.py:2392 seahub/views/ajax.py:2535 +#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 msgid "Please add folder permission first" msgstr "" -#: seahub/views/ajax.py:2439 +#: seahub/views/ajax.py:2146 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "" -#: seahub/views/ajax.py:2507 +#: seahub/views/ajax.py:2214 msgid "Invalid group" msgstr "" -#: seahub/views/ajax.py:2592 seahub/views/ajax.py:2624 +#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 msgid "Group does not exist." msgstr "" -#: seahub/views/file.py:141 +#: seahub/views/ajax.py:2468 +msgid "Failed, file is too large" +msgstr "" + +#: seahub/views/file.py:140 msgid "HTTPError: failed to open file online" msgstr "" -#: seahub/views/file.py:145 +#: seahub/views/file.py:144 msgid "URLError: failed to open file online" msgstr "" -#: seahub/views/file.py:152 +#: seahub/views/file.py:151 msgid "The encoding you chose is not proper." msgstr "" -#: seahub/views/file.py:169 seahub/views/file.py:172 +#: seahub/views/file.py:168 seahub/views/file.py:171 msgid "Unknown file encoding" msgstr "" -#: seahub/views/file.py:294 seahub/views/file.py:301 +#: seahub/views/file.py:291 seahub/views/file.py:298 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "" -#: seahub/views/file.py:317 +#: seahub/views/file.py:314 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:395 seahub/views/file.py:662 seahub/views/file.py:677 -#: seahub/views/file.py:697 +#: seahub/views/file.py:392 seahub/views/file.py:659 seahub/views/file.py:674 +#: seahub/views/file.py:692 msgid "Unable to view file" msgstr "" -#: seahub/views/file.py:469 seahub/views/file.py:637 seahub/views/file.py:826 +#: seahub/views/file.py:466 seahub/views/file.py:634 seahub/views/file.py:821 msgid "Invalid file format." msgstr "" -#: seahub/views/file.py:726 +#: seahub/views/file.py:721 seahub/views/sysadmin.py:222 msgid "Unable to download file, invalid file path" msgstr "" -#: seahub/views/file.py:735 +#: seahub/views/file.py:730 msgid "Unable to download file, wrong file path" msgstr "" -#: seahub/views/file.py:740 +#: seahub/views/file.py:735 msgid "Unable to download file, share link traffic is used up." msgstr "" -#: seahub/views/file.py:1063 +#: seahub/views/file.py:1058 msgid "The library does not exist." msgstr "" -#: seahub/views/file.py:1067 +#: seahub/views/file.py:1062 msgid "The library is encrypted." msgstr "" -#: seahub/views/file.py:1141 +#: seahub/views/file.py:1136 msgid "Unable to edit file" msgstr "" -#: seahub/views/file.py:1147 +#: seahub/views/file.py:1142 msgid "The file does not exist." msgstr "" -#: seahub/views/file.py:1176 +#: seahub/views/file.py:1171 msgid "Edit online is not offered for this type of file." msgstr "" -#: seahub/views/file.py:1284 seahub/views/sysadmin.py:201 +#: seahub/views/file.py:1278 msgid "Unable to download file" msgstr "" -#: seahub/views/repo.py:370 +#: seahub/views/repo.py:181 msgid "Unable to access file: share link traffic is used up." msgstr "" -#: seahub/views/repo.py:381 +#: seahub/views/repo.py:192 msgid "Unable to download: folder not found." msgstr "" -#: seahub/views/sysadmin.py:209 seahub/views/sysadmin.py:256 +#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 +#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:224 -msgid "Unable to view library, this feature is not enabled." -msgstr "" - -#: seahub/views/sysadmin.py:233 -msgid "Library is encrypted" -msgstr "" - -#: seahub/views/sysadmin.py:242 +#: seahub/views/sysadmin.py:264 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:312 seahub/views/sysadmin.py:389 +#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 msgid "Invalid username" msgstr "" -#: seahub/views/sysadmin.py:601 seahub/views/sysadmin.py:654 -#: seahub/views/sysadmin.py:1394 seahub/views/sysadmin.py:1406 +#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 +#: seahub/views/sysadmin.py:1397 seahub/views/sysadmin.py:1409 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:929 -msgid "Member" -msgstr "" - #: seahub/views/sysadmin.py:979 #, python-format msgid "Failed to set quota: maximum quota is %d MB" @@ -7053,15 +6300,6 @@ msgstr "" msgid "Failed to delete: the user is an organization creator" msgstr "" -#: seahub/views/sysadmin.py:1039 -#, python-format -msgid "Successfully deleted %s" -msgstr "" - -#: seahub/views/sysadmin.py:1041 -msgid "Failed to delete: the user does not exist" -msgstr "" - #: seahub/views/sysadmin.py:1062 #, python-format msgid "Successfully remove trial for: %s" @@ -7086,26 +6324,26 @@ msgstr "" msgid "Password has been reset on %s" msgstr "" -#: seahub/views/sysadmin.py:1245 +#: seahub/views/sysadmin.py:1247 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "" -#: seahub/views/sysadmin.py:1250 +#: seahub/views/sysadmin.py:1252 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "" -#: seahub/views/sysadmin.py:1254 +#: seahub/views/sysadmin.py:1256 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "" -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1259 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -7113,107 +6351,107 @@ msgid "" "configured." msgstr "" -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1262 msgid "Failed to reset password: user does not exist" msgstr "" -#: seahub/views/sysadmin.py:1276 +#: seahub/views/sysadmin.py:1278 seahub/views/sysadmin.py:2108 #, python-format msgid "You are invited to join %s" msgstr "" -#: seahub/views/sysadmin.py:1307 +#: seahub/views/sysadmin.py:1309 #, python-format msgid "Fail to add user %s." msgstr "" -#: seahub/views/sysadmin.py:1320 seahub/views/sysadmin.py:1333 +#: seahub/views/sysadmin.py:1323 seahub/views/sysadmin.py:1336 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "" -#: seahub/views/sysadmin.py:1323 seahub/views/sysadmin.py:1336 +#: seahub/views/sysadmin.py:1326 seahub/views/sysadmin.py:1339 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification, " "please check your email configuration." msgstr "" -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 #, python-format msgid "Successfully added user %s." msgstr "" -#: seahub/views/sysadmin.py:1340 +#: seahub/views/sysadmin.py:1343 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "" -#: seahub/views/sysadmin.py:1568 +#: seahub/views/sysadmin.py:1571 msgid "Failed to rename organization" msgstr "" -#: seahub/views/sysadmin.py:1598 seahub/views/sysadmin.py:1931 -#: seahub/views/sysadmin.py:2027 +#: seahub/views/sysadmin.py:1601 seahub/views/sysadmin.py:1932 +#: seahub/views/sysadmin.py:2028 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1867 +#: seahub/views/sysadmin.py:1868 msgid "Failed to transfer, invalid arguments." msgstr "" -#: seahub/views/sysadmin.py:1878 +#: seahub/views/sysadmin.py:1879 #, python-format msgid "Failed to transfer, user %s not found" msgstr "" -#: seahub/views/sysadmin.py:1883 +#: seahub/views/sysadmin.py:1884 msgid "Can not transfer organization library" msgstr "" -#: seahub/views/sysadmin.py:1887 +#: seahub/views/sysadmin.py:1888 #, python-format msgid "Can not transfer library to organization user %s" msgstr "" -#: seahub/views/sysadmin.py:1894 +#: seahub/views/sysadmin.py:1895 msgid "Successfully transfered." msgstr "" -#: seahub/views/sysadmin.py:1908 +#: seahub/views/sysadmin.py:1909 msgid "System library can not be deleted." msgstr "" -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:2031 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2061 +#: seahub/views/sysadmin.py:2062 #, python-format msgid "Successfully set %s as admin." msgstr "" -#: seahub/views/sysadmin.py:2063 +#: seahub/views/sysadmin.py:2064 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "" -#: seahub/views/sysadmin.py:2104 +#: seahub/views/sysadmin.py:2115 msgid "Import succeeded" msgstr "" -#: seahub/views/sysadmin.py:2106 +#: seahub/views/sysadmin.py:2117 msgid "Please select a csv file first." msgstr "" -#: seahub/views/sysadmin.py:2162 +#: seahub/views/sysadmin.py:2176 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2169 seahub/views/sysadmin.py:2173 -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2183 seahub/views/sysadmin.py:2187 +#: seahub/views/sysadmin.py:2192 msgid "Invalid value" msgstr "" diff --git a/locale/en/LC_MESSAGES/djangojs.po b/locale/en/LC_MESSAGES/djangojs.po index 6efd7f5dbc..84cf62593d 100644 --- a/locale/en/LC_MESSAGES/djangojs.po +++ b/locale/en/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-21 11:36+0800\n" +"POT-Creation-Date: 2016-03-21 11:17+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,67 +17,48 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: static/scripts/common.js:161 static/scripts/common.js.c:251 -#: static/scripts/app/views/details.js:94 static/scripts/app/views/dir.js:852 -#: static/scripts/app/views/dir.js.c:909 -#: static/scripts/app/views/dirent.js:281 -#: static/scripts/app/views/dirent.js:432 -#: static/scripts/app/views/dirent.js:458 -#: static/scripts/app/views/folder-perm-item.js:82 -#: static/scripts/app/views/folder-perm-item.js:124 -#: static/scripts/app/views/folder-perm.js:156 -#: static/scripts/app/views/folder-perm.js:208 -#: static/scripts/app/views/folder-share-item.js:79 -#: static/scripts/app/views/folder-share-item.js:115 -#: static/scripts/app/views/group-repo.js:64 -#: static/scripts/app/views/myhome-sub-repos.js:123 -#: static/scripts/app/views/myhome-sub-repos.js:165 -#: static/scripts/app/views/repo.js:83 static/scripts/app/views/share.js:352 -#: static/scripts/app/views/share.js:620 static/scripts/app/views/share.js:679 -#: static/scripts/app/views/sub-lib.js:81 -msgid "Failed. Please check the network." +#: static/scripts/app/models/dirent.js:113 +#: static/scripts/app/views/device.js:51 static/scripts/app/views/dir.js:476 +#: static/scripts/app/views/dir.js:543 +#: static/scripts/app/views/fileupload.js:344 +#: static/scripts/app/views/fileupload.js:358 +#: static/scripts/app/views/fileupload.js:370 +#: static/scripts/app/views/fileupload.js:382 +msgid "Just now" msgstr "" -#: static/scripts/common.js:519 -msgid "Search users or enter emails" -msgstr "" - -#: static/scripts/common.js:529 -msgid "Please enter 1 or more character" -msgstr "" - -#: static/scripts/common.js:530 -msgid "No matches" -msgstr "" - -#: static/scripts/common.js:531 -msgid "Searching..." -msgstr "" - -#: static/scripts/common.js:532 -msgid "Loading failed" -msgstr "" - -#: static/scripts/app/models/repo.js:30 +#: static/scripts/app/models/repo.js:32 msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:33 static/scripts/app/views/share.js:203 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:197 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:34 static/scripts/app/views/share.js:211 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:205 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:207 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:201 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:215 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:209 msgid "Passwords don't match" msgstr "" +#: static/scripts/app/models/repo.js:53 +msgid "Encrypted" +msgstr "" + +#: static/scripts/app/models/repo.js:55 +msgid "Read-Write" +msgstr "" + +#: static/scripts/app/models/repo.js:57 +msgid "Read-Only" +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -102,215 +83,344 @@ msgstr "" msgid "Deleted directories" msgstr "" -#: static/scripts/app/views/dir.js:46 +#: static/scripts/app/views/details.js:94 +#: static/scripts/app/views/dialogs/dirent-mvcp.js:130 +#: static/scripts/app/views/dialogs/dirent-mvcp.js:156 +#: static/scripts/app/views/dialogs/dirent-rename.js:66 +#: static/scripts/app/views/dialogs/repo-change-password.js:95 +#: static/scripts/app/views/dialogs/repo-history-settings.js:81 +#: static/scripts/app/views/dialogs/repo-history-settings.js:140 +#: static/scripts/app/views/dir.js:1048 static/scripts/app/views/dir.js:1105 +#: static/scripts/app/views/dirent.js:259 +#: static/scripts/app/views/folder-perm-item.js:82 +#: static/scripts/app/views/folder-perm-item.js:124 +#: static/scripts/app/views/folder-perm.js:155 +#: static/scripts/app/views/folder-perm.js:207 +#: static/scripts/app/views/folder-share-item.js:79 +#: static/scripts/app/views/folder-share-item.js:115 +#: static/scripts/app/views/group-manage-member.js:79 +#: static/scripts/app/views/group-manage-member.js:105 +#: static/scripts/app/views/group-manage-members.js:180 +#: static/scripts/app/views/group-repo.js:72 +#: static/scripts/app/views/group-settings.js:158 +#: static/scripts/app/views/group-settings.js:214 +#: static/scripts/app/views/group-settings.js:254 +#: static/scripts/app/views/group-settings.js:311 +#: static/scripts/app/views/group-settings.js:351 +#: static/scripts/app/views/group-settings.js:386 +#: static/scripts/app/views/repo.js:109 static/scripts/app/views/repo.js:205 +#: static/scripts/app/views/repo.js:280 static/scripts/app/views/share.js:346 +#: static/scripts/app/views/share.js:624 static/scripts/app/views/share.js:702 +#: static/scripts/common.js:302 static/scripts/common.js:391 +msgid "Failed. Please check the network." +msgstr "" + +#: static/scripts/app/views/device.js:96 +msgid "Successfully unlink %(name)s." +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:50 +msgid "Move {placeholder} to:" +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:50 +msgid "Copy {placeholder} to:" +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:89 +msgid "Moving %(name)s" +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:89 +msgid "Copying %(name)s" +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:105 +msgid "Saving..." +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:119 +msgid "Failed." +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:119 +#: static/scripts/app/views/dialogs/dirent-mvcp.js:147 +#: static/scripts/app/views/dir.js:1096 +msgid "Canceled." +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:179 +#: static/scripts/app/views/dir.js:894 +msgid "Invalid destination path" +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:199 +msgid "Successfully moved %(name)s" +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-mvcp.js:202 +msgid "Successfully copied %(name)s" +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-rename.js:27 +msgid "Rename Folder" +msgstr "" + +#: static/scripts/app/views/dialogs/dirent-rename.js:27 +msgid "Rename File" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-change-password.js:26 +msgid "Change Password of Library {placeholder}" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-change-password.js:50 +msgid "Please enter the old password" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-change-password.js:54 +msgid "Please enter a new password" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-change-password.js:58 +msgid "New password is too short" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-change-password.js:62 +msgid "Please enter the new password again" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-change-password.js:66 +msgid "New passwords don't match" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-change-password.js:88 +msgid "Successfully changed library password." +msgstr "" + +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:73 +msgid "{placeholder} Folder Permission" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 +#: static/scripts/app/views/group-settings.js:179 +#: static/scripts/app/views/repo.js:244 +msgid "Search user or enter email and press Enter" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:94 +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:105 +msgid "You can only select 1 item" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:103 +msgid "Select a group" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:121 +#: static/scripts/app/views/dialogs/repo-share-link-admin.js:76 +#: static/scripts/app/views/group-manage-members.js:112 +#: static/scripts/app/views/group-members.js:77 +#: static/scripts/app/views/group.js:133 static/scripts/app/views/groups.js:71 +#: static/scripts/app/views/myhome-repos.js:111 +#: static/scripts/app/views/myhome-shared-repos.js:72 +#: static/scripts/app/views/organization.js:115 +msgid "Permission error" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:126 +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:245 +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:292 +#: static/scripts/app/views/dialogs/repo-share-link-admin.js:81 +#: static/scripts/app/views/dir.js:361 +#: static/scripts/app/views/group-manage-members.js:117 +#: static/scripts/app/views/group-manage-members.js:146 +#: static/scripts/app/views/group-members.js:82 +#: static/scripts/app/views/group.js:103 static/scripts/app/views/group.js:138 +#: static/scripts/app/views/groups.js:76 +#: static/scripts/app/views/groups.js:120 +#: static/scripts/app/views/myhome-repos.js:116 +#: static/scripts/app/views/myhome-shared-repos.js:77 +#: static/scripts/app/views/organization.js:120 +#: static/scripts/app/views/repo-folder-perm.js:92 +#: static/scripts/app/views/repo-folder-perm.js:132 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + +#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 +msgid "Please click and choose a directory." +msgstr "" + +#: static/scripts/app/views/dialogs/repo-history-settings.js:35 +msgid "{placeholder} History Setting" +msgstr "" + +#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +msgid "Successfully set library history." +msgstr "" + +#: static/scripts/app/views/dialogs/repo-share-link-admin.js:50 +msgid "{placeholder} Share Links" +msgstr "" + +#: static/scripts/app/views/dir.js:71 #: static/scripts/app/views/starred-file.js:29 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:47 +#: static/scripts/app/views/dir.js:72 #: static/scripts/app/views/starred-file.js:30 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:50 +#: static/scripts/app/views/dir.js:75 #: static/scripts/app/views/starred-file.js:33 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:51 +#: static/scripts/app/views/dir.js:76 #: static/scripts/app/views/starred-file.js:34 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:52 +#: static/scripts/app/views/dir.js:77 #: static/scripts/app/views/starred-file.js:35 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:58 -#: static/scripts/app/views/starred-file.js:41 -msgid "Open in New Tab" -msgstr "" - -#: static/scripts/app/views/dir.js:61 +#: static/scripts/app/views/dir.js:80 #: static/scripts/app/views/starred-file.js:44 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:148 -#: static/scripts/app/views/group-side-nav.js:39 -#: static/scripts/app/views/group.js:112 static/scripts/app/views/groups.js:77 -#: static/scripts/app/views/groups.js:122 -#: static/scripts/app/views/myhome-repos.js:93 -#: static/scripts/app/views/myhome-shared-repos.js:79 -#: static/scripts/app/views/myhome-sub-repos.js:78 -#: static/scripts/app/views/organization.js:124 -msgid "Please check the network." +#: static/scripts/app/views/dir.js:90 static/scripts/app/views/dir.js:102 +#: static/scripts/app/views/starred-file.js:41 +msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:174 +#: static/scripts/app/views/dir.js:296 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:345 static/scripts/app/views/dir.js.c:402 +#: static/scripts/app/views/dir.js:461 static/scripts/app/views/dir.js:518 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:360 static/scripts/app/views/dir.js.c:427 -#: static/scripts/app/views/dirent.js:266 -#: static/scripts/app/views/fileupload.js:344 -#: static/scripts/app/views/fileupload.js:358 -#: static/scripts/app/views/fileupload.js:370 -#: static/scripts/app/views/fileupload.js:382 -#: static/scripts/app/views/myhome-sub-repos.js:152 -msgid "Just now" -msgstr "" - -#: static/scripts/app/views/dir.js:408 +#: static/scripts/app/views/dir.js:524 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:566 static/scripts/app/views/dir.js.c:703 +#: static/scripts/app/views/dir.js:760 static/scripts/app/views/dir.js:899 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:602 +#: static/scripts/app/views/dir.js:796 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:604 +#: static/scripts/app/views/dir.js:798 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:606 +#: static/scripts/app/views/dir.js:800 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:613 +#: static/scripts/app/views/dir.js:807 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:615 +#: static/scripts/app/views/dir.js:809 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:617 +#: static/scripts/app/views/dir.js:811 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:630 +#: static/scripts/app/views/dir.js:824 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:631 +#: static/scripts/app/views/dir.js:825 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:645 +#: static/scripts/app/views/dir.js:839 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:645 +#: static/scripts/app/views/dir.js:839 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:698 static/scripts/app/views/dirent.js:357 -msgid "Invalid destination path" -msgstr "" - -#: static/scripts/app/views/dir.js:746 +#: static/scripts/app/views/dir.js:942 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:748 +#: static/scripts/app/views/dir.js:944 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:750 +#: static/scripts/app/views/dir.js:946 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:754 +#: static/scripts/app/views/dir.js:950 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:756 +#: static/scripts/app/views/dir.js:952 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:758 +#: static/scripts/app/views/dir.js:954 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:770 +#: static/scripts/app/views/dir.js:966 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:772 +#: static/scripts/app/views/dir.js:968 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:776 +#: static/scripts/app/views/dir.js:972 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:778 +#: static/scripts/app/views/dir.js:974 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:818 +#: static/scripts/app/views/dir.js:1014 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:818 +#: static/scripts/app/views/dir.js:1014 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:840 +#: static/scripts/app/views/dir.js:1036 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:840 +#: static/scripts/app/views/dir.js:1036 msgid "Failed to copy %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:900 static/scripts/app/views/dirent.js:421 -#: static/scripts/app/views/dirent.js:449 -msgid "Canceled." -msgstr "" - -#: static/scripts/app/views/dirent.js:49 +#: static/scripts/app/views/dirent-grid.js:60 +#: static/scripts/app/views/dirent.js:53 msgid "locked by {placeholder}" msgstr "" -#: static/scripts/app/views/dirent.js:200 +#: static/scripts/app/views/dirent-grid.js:154 +#: static/scripts/app/views/dirent.js:198 msgid "Successfully deleted %(name)s" msgstr "" -#: static/scripts/app/views/dirent.js:310 -msgid "Move {placeholder} to:" -msgstr "" - -#: static/scripts/app/views/dirent.js:310 -msgid "Copy {placeholder} to:" -msgstr "" - -#: static/scripts/app/views/dirent.js:391 -msgid "Moving %(name)s" -msgstr "" - -#: static/scripts/app/views/dirent.js:391 -msgid "Copying %(name)s" -msgstr "" - -#: static/scripts/app/views/dirent.js:407 -msgid "Saving..." -msgstr "" - -#: static/scripts/app/views/dirent.js:421 -msgid "Failed." -msgstr "" - #: static/scripts/app/views/fileupload.js:10 msgid "File is too big" msgstr "" @@ -336,11 +446,13 @@ msgid "Empty file upload result" msgstr "" #: static/scripts/app/views/fileupload.js:17 -#: static/scripts/app/views/group.js:109 static/scripts/app/views/groups.js:74 -#: static/scripts/app/views/myhome-repos.js:90 -#: static/scripts/app/views/myhome-shared-repos.js:76 -#: static/scripts/app/views/myhome-sub-repos.js:75 -#: static/scripts/app/views/organization.js:121 +#: static/scripts/app/views/group-manage-members.js:114 +#: static/scripts/app/views/group-manage-members.js:178 +#: static/scripts/app/views/group-members.js:79 +#: static/scripts/app/views/group.js:135 static/scripts/app/views/groups.js:73 +#: static/scripts/app/views/myhome-repos.js:113 +#: static/scripts/app/views/myhome-shared-repos.js:74 +#: static/scripts/app/views/organization.js:117 msgid "Error" msgstr "" @@ -396,12 +508,12 @@ msgstr "" msgid "File is locked" msgstr "" -#: static/scripts/app/views/folder-perm.js:49 +#: static/scripts/app/views/folder-perm.js:48 msgid "Set {placeholder}'s permission" msgstr "" -#: static/scripts/app/views/folder-perm.js:101 -#: static/scripts/app/views/share.js:525 +#: static/scripts/app/views/folder-perm.js:100 +#: static/scripts/app/views/share.js:519 msgid "Select groups" msgstr "" @@ -413,75 +525,96 @@ msgstr "" msgid "Delete failed" msgstr "" -#: static/scripts/app/views/group-repo.js:56 -#: static/scripts/app/views/organization-repo.js:52 +#: static/scripts/app/views/group-manage-members.js:71 +msgid "{placeholder} Members" +msgstr "" + +#: static/scripts/app/views/group-repo.js:64 +#: static/scripts/app/views/organization-repo.js:59 msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group.js:107 static/scripts/app/views/groups.js:72 -#: static/scripts/app/views/myhome-repos.js:88 -#: static/scripts/app/views/myhome-shared-repos.js:74 -#: static/scripts/app/views/myhome-sub-repos.js:73 -#: static/scripts/app/views/organization.js:119 -msgid "Permission error" +#: static/scripts/app/views/group-settings.js:180 +#: static/scripts/app/views/repo.js:245 +msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/myhome-sub-repos.js:115 -msgid "You don't have any library at present." +#: static/scripts/app/views/group-settings.js:272 +msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/myhome-sub-repos.js:134 -msgid "Please choose a directory" +#: static/scripts/app/views/group-settings.js:303 +msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/repo.js:48 static/scripts/app/views/sub-lib.js:46 +#: static/scripts/app/views/group-settings.js:331 +msgid "Dismiss Group" +msgstr "" + +#: static/scripts/app/views/group-settings.js:332 +msgid "Really want to dismiss this group?" +msgstr "" + +#: static/scripts/app/views/group-settings.js:365 +msgid "Quit Group" +msgstr "" + +#: static/scripts/app/views/group-settings.js:366 +msgid "Are you sure you want to quit this group?" +msgstr "" + +#: static/scripts/app/views/repo.js:74 msgid "Really want to delete {lib_name}?" msgstr "" -#: static/scripts/app/views/repo.js:73 static/scripts/app/views/sub-lib.js:71 +#: static/scripts/app/views/repo.js:99 msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/share.js:63 +#: static/scripts/app/views/repo.js:234 +msgid "Transfer Library {library_name} To" +msgstr "" + +#: static/scripts/app/views/repo.js:273 +msgid "Successfully transferred the library." +msgstr "" + +#: static/scripts/app/views/share.js:57 msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:132 +#: static/scripts/app/views/share.js:126 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:160 static/scripts/app/views/share.js:176 +#: static/scripts/app/views/share.js:154 static/scripts/app/views/share.js:170 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:173 +#: static/scripts/app/views/share.js:167 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:228 +#: static/scripts/app/views/share.js:222 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:232 +#: static/scripts/app/views/share.js:226 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:313 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:336 +#: static/scripts/app/views/share.js:330 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:340 +#: static/scripts/app/views/share.js:334 msgid "Failed to send to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:609 -msgid "Failed to share to {placeholder}" -msgstr "" - #: static/scripts/app/views/shared-repo.js:26 msgid "Success" msgstr "" @@ -489,3 +622,23 @@ msgstr "" #: static/scripts/app/views/starred-file-item.js:45 msgid "Successfully unstared {placeholder}" msgstr "" + +#: static/scripts/common.js:671 +msgid "Search users or enter emails and press Enter" +msgstr "" + +#: static/scripts/common.js:679 +msgid "Please enter 1 or more character" +msgstr "" + +#: static/scripts/common.js:680 +msgid "No matches" +msgstr "" + +#: static/scripts/common.js:681 +msgid "Searching..." +msgstr "" + +#: static/scripts/common.js:682 +msgid "Loading failed" +msgstr "" diff --git a/seahub/api2/endpoints/upload_links.py b/seahub/api2/endpoints/upload_links.py index d86a5b7019..ff5e541140 100644 --- a/seahub/api2/endpoints/upload_links.py +++ b/seahub/api2/endpoints/upload_links.py @@ -132,7 +132,7 @@ class UploadLinks(APIView): password = request.data.get('password', None) if password and len(password) < config.SHARE_LINK_PASSWORD_MIN_LENGTH: - error_msg = _('Password is too short.') + error_msg = _('Password is too short') return api_error(status.HTTP_400_BAD_REQUEST, error_msg) user_perm = check_folder_permission(request, repo_id, '/') diff --git a/seahub/seahub2.db b/seahub/seahub2.db new file mode 100644 index 0000000000..96b4387caa Binary files /dev/null and b/seahub/seahub2.db differ diff --git a/seahub/templates/sysadmin/sys_inst_admin.html b/seahub/templates/sysadmin/sys_inst_admin.html index 2b4bcc9a6f..b5b7026b33 100644 --- a/seahub/templates/sysadmin/sys_inst_admin.html +++ b/seahub/templates/sysadmin/sys_inst_admin.html @@ -57,7 +57,7 @@ $('#add-inst-form').submit(function() { name = $.trim(form.find('[name="name"]').val()); if (!name) { - apply_form_error(form_id, "{% trans "Name cannot be blank" %}"); + apply_form_error(form_id, "{% trans "Name can not be blank" %}"); return false; } diff --git a/seahub/templates/sysadmin/sys_inst_info_user.html b/seahub/templates/sysadmin/sys_inst_info_user.html index 001cc1107b..f75525f665 100644 --- a/seahub/templates/sysadmin/sys_inst_info_user.html +++ b/seahub/templates/sysadmin/sys_inst_info_user.html @@ -36,7 +36,7 @@ {{ user.ctime|tsstr_sec }} / {% if user.last_login %}{{user.last_login|translate_seahub_time}} {% else %} -- {% endif %} - {% if user.inst_admin %}{% trans "Revoke InstAdmin" %}{% else %}{% trans "Set InstAdmin" %}{% endif %} + {% if user.inst_admin %}{% trans "Revoke Admin" %}{% else %}{% trans "Set Admin" %}{% endif %} {% endfor %} @@ -52,8 +52,8 @@