From c760c1a26decee49c60337349205a815d3f4bc4d Mon Sep 17 00:00:00 2001 From: poetwang Date: Sat, 5 Dec 2015 23:14:49 +0800 Subject: [PATCH 01/29] [api2] Add api to check missing blocks before uploading --- seahub/api2/views.py | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/seahub/api2/views.py b/seahub/api2/views.py index 1bfb2ed116..01a28e03aa 100644 --- a/seahub/api2/views.py +++ b/seahub/api2/views.py @@ -1357,6 +1357,48 @@ class UploadBlksLinkView(APIView): url = gen_file_upload_url(token, 'upload-blks-api') return Response(url) + + def get_blklist_missing(self, repo_id, blks): + if not blks: + return [] + + blklist = blks.split(',') + try: + return json.loads(seafile_api.check_repo_blocks_missing( + repo_id, json.dumps(blklist))) + except Exception as e: + pass + + return blklist + + + def post(self, request, repo_id, format=None): + parent_dir = request.GET.get('p', '/') + if check_folder_permission(request, repo_id, parent_dir) != 'rw': + return api_error(status.HTTP_403_FORBIDDEN, + 'You do not have permission to access this folder.') + + if check_quota(repo_id) < 0: + return api_error(HTTP_520_OPERATION_FAILED, 'Above quota') + + token = seafile_api.get_fileserver_access_token( + repo_id, 'dummy', 'upload', request.user.username, + use_onetime = False) + blksurl = gen_file_upload_url(token, 'upload-raw-blks-api') + commiturl = '%s?commitonly=true&ret-json=true' % gen_file_upload_url( + token, 'upload-blks-api') + blks = request.POST.get('blklist', None) + blklist = self.get_blklist_missing(repo_id, blks) + res = { + 'rawblksurl': blksurl, + 'commiturl': commiturl, + 'blklist': blklist + } + + return HttpResponse(json.dumps(res), status=200, + content_type=json_content_type) + + class UpdateBlksLinkView(APIView): authentication_classes = (TokenAuthentication, ) permission_classes = (IsAuthenticated, ) From db81d636b8e407d1882ca81e336f3f6804c8891b Mon Sep 17 00:00:00 2001 From: lian Date: Fri, 29 Apr 2016 11:07:48 +0800 Subject: [PATCH 02/29] notice group member when share library to group --- seahub/api2/endpoints/dir_shared_items.py | 6 +- seahub/api2/views.py | 32 ++-- .../management/commands/send_notices.py | 54 ++++-- seahub/notifications/models.py | 174 ++++++++++++------ .../templates/notifications/notice_email.html | 3 + .../notifications/user_notification_tr.html | 3 + seahub/notifications/views.py | 8 + seahub/share/signals.py | 1 + seahub/templates/snippets/notice_html.html | 3 + 9 files changed, 194 insertions(+), 90 deletions(-) diff --git a/seahub/api2/endpoints/dir_shared_items.py b/seahub/api2/endpoints/dir_shared_items.py index f456e2e3ff..3c71cc58de 100644 --- a/seahub/api2/endpoints/dir_shared_items.py +++ b/seahub/api2/endpoints/dir_shared_items.py @@ -17,7 +17,8 @@ from seahub.api2.throttling import UserRateThrottle from seahub.api2.utils import api_error from seahub.base.templatetags.seahub_tags import email2nickname from seahub.base.accounts import User -from seahub.share.signals import share_repo_to_user_successful +from seahub.share.signals import share_repo_to_user_successful, \ + share_repo_to_group_successful from seahub.utils import (is_org_context, is_valid_username, send_perm_audit_msg) @@ -345,6 +346,9 @@ class DirSharedItemsEndpoint(APIView): seafile_api.set_group_repo(shared_repo.repo_id, gid, username, permission) + share_repo_to_group_successful.send(sender=None, + from_user=username, group_id=gid, repo=shared_repo) + result['success'].append({ "share_type": "group", "group_info": { diff --git a/seahub/api2/views.py b/seahub/api2/views.py index 86fca1815f..712ff7506b 100644 --- a/seahub/api2/views.py +++ b/seahub/api2/views.py @@ -22,7 +22,7 @@ from django.contrib.auth.hashers import check_password from django.contrib.sites.models import RequestSite from django.db import IntegrityError from django.db.models import F, Q -from django.http import HttpResponse, Http404 +from django.http import HttpResponse from django.template import RequestContext from django.template.loader import render_to_string from django.template.defaultfilters import filesizeformat @@ -40,31 +40,24 @@ from .utils import get_diff_details, \ api_repo_user_folder_perm_check, api_repo_setting_permission_check, \ api_repo_group_folder_perm_check -from seahub.avatar.settings import AVATAR_DEFAULT_SIZE from seahub.avatar.templatetags.avatar_tags import api_avatar_url, avatar from seahub.avatar.templatetags.group_avatar_tags import api_grp_avatar_url, \ grp_avatar from seahub.base.accounts import User -from seahub.base.models import FileDiscuss, UserStarredFiles, DeviceToken +from seahub.base.models import UserStarredFiles, DeviceToken from seahub.base.templatetags.seahub_tags import email2nickname, \ - translate_commit_desc, translate_seahub_time, translate_commit_desc_escape -from seahub.group.models import GroupMessage, MessageReply, MessageAttachment -from seahub.group.signals import grpmsg_added -from seahub.group.views import group_check, remove_group_common, \ + translate_seahub_time, translate_commit_desc_escape +from seahub.group.views import remove_group_common, \ rename_group_with_new_name, is_group_staff from seahub.group.utils import BadGroupNameError, ConflictGroupNameError, \ validate_group_name from seahub.thumbnail.utils import generate_thumbnail -from seahub.message.models import UserMessage from seahub.notifications.models import UserNotification from seahub.options.models import UserOptions from seahub.contacts.models import Contact from seahub.profile.models import Profile, DetailedProfile -from seahub.shortcuts import get_first_object_or_none from seahub.signals import (repo_created, repo_deleted) from seahub.share.models import FileShare, OrgFileShare, UploadLinkShare -from seahub.share.signals import share_repo_to_user_successful -from seahub.share.views import list_shared_repos from seahub.utils import gen_file_get_url, gen_token, gen_file_upload_url, \ check_filename_with_rename, is_valid_username, EVENTS_ENABLED, \ get_user_events, EMPTY_SHA1, get_ccnet_server_addr_port, is_pro_version, \ @@ -75,11 +68,11 @@ from seahub.utils import gen_file_get_url, gen_token, gen_file_upload_url, \ from seahub.utils.devices import get_user_devices, do_unlink_device from seahub.utils.repo import get_sub_repo_abbrev_origin_path from seahub.utils.star import star_file, unstar_file -from seahub.utils.file_types import IMAGE, DOCUMENT +from seahub.utils.file_types import DOCUMENT from seahub.utils.file_size import get_file_size_unit from seahub.utils.timeutils import utc_to_local, datetime_to_isoformat_timestr -from seahub.views import validate_owner, is_registered_user, check_file_lock, \ - group_events_data, get_diff, create_default_library, get_owned_repo_list, \ +from seahub.views import is_registered_user, check_file_lock, \ + group_events_data, get_diff, create_default_library, \ list_inner_pub_repos, get_virtual_repos_by_owner, \ check_folder_permission from seahub.views.ajax import get_share_in_repo_list, get_groups_by_user, \ @@ -93,7 +86,7 @@ if HAS_OFFICE_CONVERTER: import seahub.settings as settings from seahub.settings import THUMBNAIL_EXTENSION, THUMBNAIL_ROOT, \ ENABLE_GLOBAL_ADDRESSBOOK, FILE_LOCK_EXPIRATION_DAYS, \ - ENABLE_THUMBNAIL, ENABLE_SUB_LIBRARY, ENABLE_FOLDER_PERM + ENABLE_THUMBNAIL, ENABLE_FOLDER_PERM try: from seahub.settings import CLOUD_MODE except ImportError: @@ -119,15 +112,14 @@ except ImportError: from pysearpc import SearpcError, SearpcObjEncoder import seaserv -from seaserv import seafserv_rpc, seafserv_threaded_rpc, \ +from seaserv import seafserv_threaded_rpc, \ get_personal_groups_by_user, get_session_info, is_personal_repo, \ get_repo, check_permission, get_commits, is_passwd_set,\ - list_personal_repos_by_owner, check_quota, \ - list_share_repos, get_group_repos_by_owner, get_group_repoids, \ + check_quota, list_share_repos, get_group_repos_by_owner, get_group_repoids, \ list_inner_pub_repos_by_owner, is_group_user, \ - remove_share, unshare_group_repo, unset_inner_pub_repo, get_group, \ + remove_share, unset_inner_pub_repo, get_group, \ get_commit, get_file_id_by_path, MAX_DOWNLOAD_DIR_SIZE, edit_repo, \ - ccnet_threaded_rpc, get_personal_groups, seafile_api, check_group_staff, \ + ccnet_threaded_rpc, get_personal_groups, seafile_api, \ create_org, ccnet_api from constance import config diff --git a/seahub/notifications/management/commands/send_notices.py b/seahub/notifications/management/commands/send_notices.py index 6b013fd3c4..6dd3f549f3 100644 --- a/seahub/notifications/management/commands/send_notices.py +++ b/seahub/notifications/management/commands/send_notices.py @@ -13,7 +13,7 @@ from django.utils import translation from django.utils.translation import ugettext as _ import seaserv -from seaserv import seafile_api +from seaserv import seafile_api, ccnet_api from seahub.base.models import CommandsLastCheck from seahub.notifications.models import UserNotification from seahub.utils import send_html_email, get_service_url, \ @@ -83,9 +83,7 @@ class Command(BaseCommand): d = notice.group_message_detail_to_dict() group_id = d['group_id'] message = d['message'] - group = seaserv.get_group(int(group_id)) - if group is None: - notice.delete() + group = ccnet_api.get_group(int(group_id)) notice.group_url = reverse('group_discuss', args=[group.id]) notice.notice_from = escape(email2nickname(d['msg_from'])) @@ -96,16 +94,31 @@ class Command(BaseCommand): def format_repo_share_msg(self, notice): d = json.loads(notice.detail) - repo_id = d['repo_id'] repo = seafile_api.get_repo(repo_id) - if repo is None: - notice.delete() notice.repo_url = reverse("view_common_lib_dir", args=[repo_id, '']) notice.notice_from = escape(email2nickname(d['share_from'])) notice.repo_name = repo.name notice.avatar_src = self.get_avatar_src(d['share_from']) + + return notice + + def format_repo_share_to_group_msg(self, notice): + d = json.loads(notice.detail) + + repo_id = d['repo_id'] + repo = seafile_api.get_repo(repo_id) + group_id = d['group_id'] + group = ccnet_api.get_group(group_id) + + notice.repo_url = reverse("view_common_lib_dir", args=[repo_id, '']) + notice.notice_from = escape(email2nickname(d['share_from'])) + notice.repo_name = repo.name + notice.avatar_src = self.get_avatar_src(d['share_from']) + notice.group_url = reverse("group_info", args=[group.id]) + notice.group_name = group.group_name + return notice def format_file_uploaded_msg(self, notice): @@ -132,9 +145,7 @@ class Command(BaseCommand): group_id = d['group_id'] join_request_msg = d['join_request_msg'] - group = seaserv.get_group(group_id) - if group is None: - notice.delete() + group = ccnet_api.get_group(group_id) notice.grpjoin_user_profile_url = reverse('user_profile', args=[username]) @@ -150,9 +161,7 @@ class Command(BaseCommand): group_staff = d['group_staff'] group_id = d['group_id'] - group = seaserv.get_group(group_id) - if group is None: - notice.delete() + group = ccnet_api.get_group(group_id) notice.notice_from = group_staff notice.avatar_src = self.get_avatar_src(group_staff) @@ -208,6 +217,22 @@ class Command(BaseCommand): for notice in unseen_notices: logger.info('Processing unseen notice: [%s]' % (notice)) + d = json.loads(notice.detail) + + repo_id = d.get('repo_id', None) + group_id = d.get('group_id', None) + try: + if repo_id and not seafile_api.get_repo(repo_id): + notice.delete() + continue + + if group_id and not ccnet_api.get_group(group_id): + notice.delete() + continue + except Exception as e: + logger.error(e) + continue + if notice.to_user != to_user: continue @@ -220,6 +245,9 @@ class Command(BaseCommand): elif notice.is_repo_share_msg(): notice = self.format_repo_share_msg(notice) + elif notice.is_repo_share_to_group_msg(): + notice = self.format_repo_share_to_group_msg(notice) + elif notice.is_file_uploaded_msg(): notice = self.format_file_uploaded_msg(notice) diff --git a/seahub/notifications/models.py b/seahub/notifications/models.py index 679f38c975..2f535a8945 100644 --- a/seahub/notifications/models.py +++ b/seahub/notifications/models.py @@ -5,14 +5,12 @@ import json import logging from django.db import models -from django.db.models.signals import post_save from django.forms import ModelForm, Textarea -from django.utils.http import urlquote from django.utils.html import escape from django.utils.translation import ugettext as _ import seaserv -from seaserv import seafile_api +from seaserv import seafile_api, ccnet_api from seahub.base.fields import LowerCaseCharField from seahub.base.templatetags.seahub_tags import email2nickname @@ -42,6 +40,7 @@ MSG_TYPE_GROUP_JOIN_REQUEST = 'group_join_request' MSG_TYPE_ADD_USER_TO_GROUP = 'add_user_to_group' MSG_TYPE_FILE_UPLOADED = 'file_uploaded' MSG_TYPE_REPO_SHARE = 'repo_share' +MSG_TYPE_REPO_SHARE_TO_GROUP = 'repo_share_to_group' MSG_TYPE_USER_MESSAGE = 'user_message' def file_uploaded_msg_to_json(file_name, repo_id, uploaded_to): @@ -53,6 +52,9 @@ def file_uploaded_msg_to_json(file_name, repo_id, uploaded_to): def repo_share_msg_to_json(share_from, repo_id): return json.dumps({'share_from': share_from, 'repo_id': repo_id}) +def repo_share_to_group_msg_to_json(share_from, repo_id, group_id): + return json.dumps({'share_from': share_from, 'repo_id': repo_id, 'group_id': group_id}) + def group_msg_to_json(group_id, msg_from, message): return json.dumps({'group_id': group_id, 'msg_from': msg_from, 'message': message}) @@ -72,7 +74,7 @@ def add_user_to_group_to_json(group_staff, group_id): class UserNotificationManager(models.Manager): def _add_user_notification(self, to_user, msg_type, detail): """Add generic user notification. - + Arguments: - `self`: - `username`: @@ -85,11 +87,11 @@ class UserNotificationManager(models.Manager): def get_all_notifications(self, seen=None, time_since=None): """Get all notifications of all users. - + Arguments: - `self`: - `seen`: - - `time_since`: + - `time_since`: """ qs = super(UserNotificationManager, self).all() if seen is not None: @@ -97,10 +99,10 @@ class UserNotificationManager(models.Manager): if time_since is not None: qs = qs.filter(timestamp__gt=time_since) return qs - + def get_user_notifications(self, username, seen=None): """Get all notifications(group_msg, grpmsg_reply, etc) of a user. - + Arguments: - `self`: - `username`: @@ -112,23 +114,23 @@ class UserNotificationManager(models.Manager): def remove_user_notifications(self, username): """Remove all user notifications. - + Arguments: - `self`: - `username`: """ self.get_user_notifications(username).delete() - + def count_unseen_user_notifications(self, username): """ - + Arguments: - `self`: - `username`: """ return super(UserNotificationManager, self).filter( to_user=username, seen=False).count() - + def bulk_add_group_msg_notices(self, to_users, detail): """Efficiently add group message notices. @@ -179,10 +181,10 @@ class UserNotificationManager(models.Manager): super(UserNotificationManager, self).filter( to_user=to_user, msg_type=MSG_TYPE_GROUP_MSG, detail=str(group_id)).delete() - + def add_group_join_request_notice(self, to_user, detail): """ - + Arguments: - `self`: - `to_user`: @@ -205,7 +207,7 @@ class UserNotificationManager(models.Manager): def add_file_uploaded_msg(self, to_user, detail): """ - + Arguments: - `self`: - `to_user`: @@ -217,7 +219,7 @@ class UserNotificationManager(models.Manager): def add_repo_share_msg(self, to_user, detail): """Notify ``to_user`` that others shared a repo to him/her. - + Arguments: - `self`: - `to_user`: @@ -226,9 +228,20 @@ class UserNotificationManager(models.Manager): return self._add_user_notification(to_user, MSG_TYPE_REPO_SHARE, detail) + def add_repo_share_to_group_msg(self, to_user, detail): + """Notify ``to_user`` that others shared a repo to group. + + Arguments: + - `self`: + - `to_user`: + - `detail`: + """ + return self._add_user_notification(to_user, + MSG_TYPE_REPO_SHARE_TO_GROUP, detail) + def add_user_message(self, to_user, detail): """Notify ``to_user`` that others sent a message to him/her. - + Arguments: - `self`: - `to_user`: @@ -236,7 +249,7 @@ class UserNotificationManager(models.Manager): """ return self._add_user_notification(to_user, MSG_TYPE_USER_MESSAGE, detail) - + class UserNotification(models.Model): to_user = LowerCaseCharField(db_index=True, max_length=255) msg_type = models.CharField(db_index=True, max_length=30) @@ -250,7 +263,7 @@ class UserNotification(models.Model): class Meta: ordering = ["-timestamp"] - + def __unicode__(self): return '%s|%s|%s' % (self.to_user, self.msg_type, self.detail) @@ -259,7 +272,7 @@ class UserNotification(models.Model): Use this in a template to mark an unseen notice differently the first time it is shown. - + Arguments: - `self`: """ @@ -268,10 +281,10 @@ class UserNotification(models.Model): self.seen = True self.save() return seen - + def is_group_msg(self): """Check whether is a group message notification. - + Arguments: - `self`: """ @@ -279,7 +292,7 @@ class UserNotification(models.Model): def is_file_uploaded_msg(self): """ - + Arguments: - `self`: """ @@ -287,15 +300,23 @@ class UserNotification(models.Model): def is_repo_share_msg(self): """ - + Arguments: - `self`: """ return self.msg_type == MSG_TYPE_REPO_SHARE + def is_repo_share_to_group_msg(self): + """ + + Arguments: + - `self`: + """ + return self.msg_type == MSG_TYPE_REPO_SHARE_TO_GROUP + def is_user_message(self): """ - + Arguments: - `self`: """ @@ -303,7 +324,7 @@ class UserNotification(models.Model): def is_group_join_request(self): """ - + Arguments: - `self`: """ @@ -322,7 +343,7 @@ class UserNotification(models.Model): ``msg_from``. NOTE: ``msg_from`` may be ``None``. - + Arguments: - `self`: @@ -374,7 +395,7 @@ class UserNotification(models.Model): ########## functions used in templates def format_file_uploaded_msg(self): """ - + Arguments: - `self`: """ @@ -416,7 +437,7 @@ class UserNotification(models.Model): def format_repo_share_msg(self): """ - + Arguments: - `self`: """ @@ -439,6 +460,44 @@ class UserNotification(models.Model): 'href': reverse('view_common_lib_dir', args=[repo.id, '']), 'repo_name': escape(repo.name), } + + return msg + + def format_repo_share_to_group_msg(self): + """ + + Arguments: + - `self`: + """ + try: + d = json.loads(self.detail) + except Exception as e: + logger.error(e) + return _(u"Internal error") + + share_from = email2nickname(d['share_from']) + repo_id = d['repo_id'] + group_id = d['group_id'] + + try: + repo = seafile_api.get_repo(repo_id) + group = ccnet_api.get_group(group_id) + except Exception as e: + logger.error(e) + return None + + if not repo or not group: + self.delete() + return None + + msg = _(u"%(user)s has shared a library named %(repo_name)s to group %(group_name)s.") % { + 'user': escape(share_from), + 'repo_href': reverse('view_common_lib_dir', args=[repo.id, '']), + 'repo_name': escape(repo.name), + 'group_href': reverse('group_info', args=[group.id]), + 'group_name': escape(group.group_name), + } + return msg def format_user_message_title(self): @@ -450,6 +509,7 @@ class UserNotification(models.Model): try: d = self.user_message_detail_to_dict() except self.InvalidDetailError as e: + logger.error(e) return _(u"Internal error") msg_from = d.get('msg_from') @@ -470,6 +530,7 @@ class UserNotification(models.Model): try: d = self.user_message_detail_to_dict() except self.InvalidDetailError as e: + logger.error(e) return _(u"Internal error") message = d.get('message') @@ -480,17 +541,18 @@ class UserNotification(models.Model): def format_group_message_title(self): """ - + Arguments: - `self`: """ try: d = self.group_message_detail_to_dict() except self.InvalidDetailError as e: + logger.error(e) return _(u"Internal error") group_id = d.get('group_id') - group = seaserv.get_group(group_id) + group = ccnet_api.get_group(group_id) if group is None: self.delete() return None @@ -517,6 +579,7 @@ class UserNotification(models.Model): try: d = self.group_message_detail_to_dict() except self.InvalidDetailError as e: + logger.error(e) return _(u"Internal error") message = d.get('message') @@ -527,7 +590,7 @@ class UserNotification(models.Model): def format_group_join_request(self): """ - + Arguments: - `self`: """ @@ -541,7 +604,7 @@ class UserNotification(models.Model): group_id = d['group_id'] join_request_msg = d['join_request_msg'] - group = seaserv.get_group(group_id) + group = ccnet_api.get_group(group_id) if group is None: self.delete() return None @@ -570,7 +633,7 @@ class UserNotification(models.Model): group_staff = d['group_staff'] group_id = d['group_id'] - group = seaserv.get_group(group_id) + group = ccnet_api.get_group(group_id) if group is None: self.delete() return None @@ -588,10 +651,9 @@ from django.core.urlresolvers import reverse from django.dispatch import receiver from seahub.signals import upload_file_successful -from seahub.group.models import GroupMessage, MessageReply from seahub.group.signals import grpmsg_added, group_join_request, add_user_to_group -from seahub.share.signals import share_repo_to_user_successful -from seahub.message.models import UserMessage +from seahub.share.signals import share_repo_to_user_successful, \ + share_repo_to_group_successful from seahub.message.signals import user_message_sent @receiver(upload_file_successful) @@ -606,24 +668,6 @@ def add_upload_file_msg_cb(sender, **kwargs): filename = os.path.basename(file_path) folder_path = os.path.dirname(file_path) - folder_name = os.path.basename(folder_path) - - detail = file_uploaded_msg_to_json(filename, repo_id, folder_path) - UserNotification.objects.add_file_uploaded_msg(owner, detail) - -@receiver(upload_file_successful) -def add_upload_file_msg_cb(sender, **kwargs): - """Notify repo owner when others upload files to his/her folder from shared link. - """ - repo_id = kwargs.get('repo_id', None) - file_path = kwargs.get('file_path', None) - owner = kwargs.get('owner', None) - - assert repo_id and file_path and owner is not None, 'Arguments error' - - filename = os.path.basename(file_path) - folder_path = os.path.dirname(file_path) - folder_name = os.path.basename(folder_path) detail = file_uploaded_msg_to_json(filename, repo_id, folder_path) UserNotification.objects.add_file_uploaded_msg(owner, detail) @@ -635,12 +679,30 @@ def add_share_repo_msg_cb(sender, **kwargs): from_user = kwargs.get('from_user', None) to_user = kwargs.get('to_user', None) repo = kwargs.get('repo', None) - + assert from_user and to_user and repo is not None, 'Arguments error' detail = repo_share_msg_to_json(from_user, repo.id) UserNotification.objects.add_repo_share_msg(to_user, detail) +@receiver(share_repo_to_group_successful) +def add_share_repo_to_group_msg_cb(sender, **kwargs): + """Notify group member when others share repos to group. + """ + from_user = kwargs.get('from_user', None) + group_id = kwargs.get('group_id', None) + repo = kwargs.get('repo', None) + + assert from_user and group_id and repo is not None, 'Arguments error' + + members = ccnet_api.get_group_members(int(group_id)) + for member in members: + to_user = member.user_name + if to_user == from_user: + continue + detail = repo_share_to_group_msg_to_json(from_user, repo.id, group_id) + UserNotification.objects.add_repo_share_to_group_msg(to_user, detail) + @receiver(user_message_sent) def add_user_message_cb(sender, **kwargs): """Notify user when he/she got a new mesaage. diff --git a/seahub/notifications/templates/notifications/notice_email.html b/seahub/notifications/templates/notifications/notice_email.html index 56a5ddbbc7..a5bb0a78ad 100644 --- a/seahub/notifications/templates/notifications/notice_email.html +++ b/seahub/notifications/templates/notifications/notice_email.html @@ -32,6 +32,9 @@ You've got {{num}} new notices on {{ site_name }}: {% elif notice.is_repo_share_msg %}

{% blocktrans with user=notice.notice_from lib_url=notice.repo_url lib_name=notice.repo_name%}{{user}} has shared a library named {{lib_name}} to you.{% endblocktrans %}

+ {% elif notice.is_repo_share_to_group_msg %} +

{% blocktrans with user=notice.notice_from lib_url=notice.repo_url lib_name=notice.repo_name group_url=notice.group_url group_name=notice.group_name %}{{user}} has shared a library named {{lib_name}} to {{group_name}}.{% endblocktrans %}

+ {% elif notice.is_user_message %}

{% blocktrans with msg_url=notice.user_msg_url user=notice.notice_from %}You have received a new message from {{user}}.{% endblocktrans %}

{% if notice.user_msg %} diff --git a/seahub/notifications/templates/notifications/user_notification_tr.html b/seahub/notifications/templates/notifications/user_notification_tr.html index cff94bcbc1..b162e96ff7 100644 --- a/seahub/notifications/templates/notifications/user_notification_tr.html +++ b/seahub/notifications/templates/notifications/user_notification_tr.html @@ -32,6 +32,9 @@ {% elif notice.is_repo_share_msg %}

{{ notice.format_repo_share_msg|safe }}

+ {% elif notice.is_repo_share_to_group_msg %} +

{{ notice.format_repo_share_to_group_msg|safe }}

+ {% elif notice.is_group_join_request %}

{{ notice.format_group_join_request|safe }}

{% endif %} diff --git a/seahub/notifications/views.py b/seahub/notifications/views.py index d841961b7c..68abe6b3db 100644 --- a/seahub/notifications/views.py +++ b/seahub/notifications/views.py @@ -163,6 +163,14 @@ def add_notice_from_info(notices): logger.error(e) notice.default_avatar_url = default_avatar_url + elif notice.is_repo_share_to_group_msg(): + try: + d = json.loads(notice.detail) + notice.msg_from = d['share_from'] + except Exception as e: + logger.error(e) + notice.default_avatar_url = default_avatar_url + elif notice.is_group_join_request(): try: d = json.loads(notice.detail) diff --git a/seahub/share/signals.py b/seahub/share/signals.py index 0935163a8d..f9dbddaa6e 100644 --- a/seahub/share/signals.py +++ b/seahub/share/signals.py @@ -1,3 +1,4 @@ import django.dispatch share_repo_to_user_successful = django.dispatch.Signal(providing_args=["from_user", "to_user", "repo"]) +share_repo_to_group_successful = django.dispatch.Signal(providing_args=["from_user", "group_id", "repo"]) diff --git a/seahub/templates/snippets/notice_html.html b/seahub/templates/snippets/notice_html.html index 9d7991a8f5..4953cf934b 100644 --- a/seahub/templates/snippets/notice_html.html +++ b/seahub/templates/snippets/notice_html.html @@ -30,6 +30,9 @@ {% elif notice.is_repo_share_msg %}

{{ notice.format_repo_share_msg|safe }}

+ {% elif notice.is_repo_share_to_group_msg %} +

{{ notice.format_repo_share_to_group_msg|safe }}

+ {% elif notice.is_group_join_request %}

{{ notice.format_group_join_request|safe }}

From 62aa7ed4c1b1f987a9d4aae463e2ae6355cb6b1c Mon Sep 17 00:00:00 2001 From: lian Date: Fri, 29 Apr 2016 13:59:31 +0800 Subject: [PATCH 03/29] send file audit msg & update quota when view raw shared file --- seahub/views/file.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/seahub/views/file.py b/seahub/views/file.py index 59fb28ff47..42a40ddc94 100644 --- a/seahub/views/file.py +++ b/seahub/views/file.py @@ -779,6 +779,15 @@ def view_shared_file(request, fileshare): use_onetime=False) raw_path = gen_file_get_url(access_token, filename) if request.GET.get('raw', '') == '1': + # check whether owner's traffic over the limit + if user_traffic_over_limit(shared_by): + messages.error(request, _(u'Unable to view raw file, share link traffic is used up.')) + return HttpResponseRedirect(next) + + send_file_access_msg(request, repo, path, 'share-link') + send_message('seahub.stats', 'file-download\t%s\t%s\t%s\t%s' % + (repo_id, shared_by, obj_id, file_size)) + # view raw shared file, directly show/download file depends on # browsers return HttpResponseRedirect(raw_path) From 6a0e5f9f79909af18e8921527f09cd9296942ec8 Mon Sep 17 00:00:00 2001 From: lian Date: Fri, 29 Apr 2016 14:18:44 +0800 Subject: [PATCH 04/29] update user view raw shared file --- seahub/views/file.py | 1 + 1 file changed, 1 insertion(+) diff --git a/seahub/views/file.py b/seahub/views/file.py index 42a40ddc94..6a17595618 100644 --- a/seahub/views/file.py +++ b/seahub/views/file.py @@ -782,6 +782,7 @@ def view_shared_file(request, fileshare): # check whether owner's traffic over the limit if user_traffic_over_limit(shared_by): messages.error(request, _(u'Unable to view raw file, share link traffic is used up.')) + next = request.META.get('HTTP_REFERER', settings.SITE_ROOT) return HttpResponseRedirect(next) send_file_access_msg(request, repo, path, 'share-link') From 65dc2ff54bebe012622f361a302a7bc26c36f9ff Mon Sep 17 00:00:00 2001 From: lian Date: Fri, 29 Apr 2016 15:32:57 +0800 Subject: [PATCH 05/29] add admin clean device errors api --- seahub/api2/endpoints/admin/device_errors.py | 16 ++++++++++- seahub/templates/js/sysadmin-templates.html | 1 + .../sysadmin-app/views/device-errors.js | 27 +++++++++++++++++++ .../api/endpoints/admin/test_device_errors.py | 27 +++++++++++++++++-- 4 files changed, 68 insertions(+), 3 deletions(-) diff --git a/seahub/api2/endpoints/admin/device_errors.py b/seahub/api2/endpoints/admin/device_errors.py index 76000e0907..c5273b8b13 100644 --- a/seahub/api2/endpoints/admin/device_errors.py +++ b/seahub/api2/endpoints/admin/device_errors.py @@ -26,7 +26,7 @@ class AdminDeviceErrors(APIView): def get(self, request, format=None): if not is_pro_version(): - error_msg = 'Permission denied.' + error_msg = 'Feature disabled.' return api_error(status.HTTP_403_FORBIDDEN, error_msg) return_results = [] @@ -61,3 +61,17 @@ class AdminDeviceErrors(APIView): return_results.append(result) return Response(return_results) + + def delete(self, request, format=None): + if not is_pro_version(): + error_msg = 'Feature disabled.' + return api_error(status.HTTP_403_FORBIDDEN, error_msg) + + try: + seafile_api.clear_repo_sync_errors() + except SearpcError as e: + logger.error(e) + error_msg = 'Internal Server Error' + return api_error(status.HTTP_500_INTERNAL_SERVER_ERROR, error_msg) + + return Response({'success': True}) diff --git a/seahub/templates/js/sysadmin-templates.html b/seahub/templates/js/sysadmin-templates.html index 43cb0632d8..1d03126216 100644 --- a/seahub/templates/js/sysadmin-templates.html +++ b/seahub/templates/js/sysadmin-templates.html @@ -180,6 +180,7 @@ {% trans "Errors" %} + diff --git a/static/scripts/sysadmin-app/views/device-errors.js b/static/scripts/sysadmin-app/views/device-errors.js index e66a4c684a..9b528d3027 100644 --- a/static/scripts/sysadmin-app/views/device-errors.js +++ b/static/scripts/sysadmin-app/views/device-errors.js @@ -21,12 +21,38 @@ define([ this.render(); }, + events: { + 'click #clean-device-errors': 'cleanDeviceErrors' + }, + + cleanDeviceErrors: function() { + var _this = this; + $.ajax({ + url: Common.getUrl({name: 'admin-device-errors'}), + type: 'DELETE', + beforeSend: Common.prepareCSRFToken, + success: function() { + _this.$table.hide(); + _this.$cleanBtn.hide(); + _this.$emptyTip.show(); + _this.deviceErrorsCollection.reset(); + var msg = gettext("Successfully clean all errors."); + Common.feedback(msg, 'success'); + }, + error: function(xhr) { + Common.ajaxErrorHandler(xhr); + } + }); + return false; + }, + render: function() { this.$el.html(this.template({'cur_tab': 'errors'})); this.$table = this.$('table'); this.$tableBody = $('tbody', this.$table); this.$loadingTip = this.$('.loading-tip'); this.$emptyTip = this.$('.empty-tips'); + this.$cleanBtn = this.$('#clean-device-errors'); }, hide: function() { @@ -75,6 +101,7 @@ define([ if (this.deviceErrorsCollection.length) { this.deviceErrorsCollection.each(this.addOne, this); this.$table.show(); + this.$cleanBtn.show(); } else { this.$emptyTip.show(); } diff --git a/tests/api/endpoints/admin/test_device_errors.py b/tests/api/endpoints/admin/test_device_errors.py index 3a6f8ee475..7d41425366 100644 --- a/tests/api/endpoints/admin/test_device_errors.py +++ b/tests/api/endpoints/admin/test_device_errors.py @@ -7,7 +7,7 @@ try: except ImportError: LOCAL_PRO_DEV_ENV = False -class DevicesTest(BaseTestCase): +class DeviceErrorsTest(BaseTestCase): @patch('seahub.views.file.is_pro_version') def test_can_get(self, mock_is_pro_version): @@ -18,7 +18,7 @@ class DevicesTest(BaseTestCase): mock_is_pro_version.return_value = True self.login_as(self.admin) - url = reverse('api-v2.1-admin-devices') + url = reverse('api-v2.1-admin-device-errors') resp = self.client.get(url) self.assertEqual(200, resp.status_code) @@ -31,3 +31,26 @@ class DevicesTest(BaseTestCase): url = reverse('api-v2.1-admin-device-errors') resp = self.client.get(url) self.assertEqual(403, resp.status_code) + + @patch('seahub.views.file.is_pro_version') + def test_can_clean(self, mock_is_pro_version): + + if not LOCAL_PRO_DEV_ENV: + return + + mock_is_pro_version.return_value = True + self.login_as(self.admin) + + url = reverse('api-v2.1-admin-device-errors') + resp = self.client.delete(url) + self.assertEqual(200, resp.status_code) + + def test_can_not_clean_if_not_admin(self): + + if not LOCAL_PRO_DEV_ENV: + return + + self.login_as(self.user) + url = reverse('api-v2.1-admin-device-errors') + resp = self.client.delete(url) + self.assertEqual(403, resp.status_code) From d50f919880534670b934f05bcea23bcbc63878c1 Mon Sep 17 00:00:00 2001 From: lian Date: Tue, 3 May 2016 13:44:43 +0800 Subject: [PATCH 06/29] sort admin pub links --- .../templates/sysadmin/sys_publink_admin.html | 51 +++++++++++++++++-- seahub/views/sysadmin.py | 21 +++++--- 2 files changed, 61 insertions(+), 11 deletions(-) diff --git a/seahub/templates/sysadmin/sys_publink_admin.html b/seahub/templates/sysadmin/sys_publink_admin.html index 0697a3ced8..d8785ee6f9 100644 --- a/seahub/templates/sysadmin/sys_publink_admin.html +++ b/seahub/templates/sysadmin/sys_publink_admin.html @@ -11,8 +11,8 @@ - - + + {% for publink in publinks %} @@ -28,7 +28,33 @@ {% endfor %}
{% trans "Name" %} {% trans "Owner" %}{% trans "Create At" %}{% trans "Count" %}{% trans "Create At" %} {% if sort_by == 'time_down' %}{% elif sort_by == 'time_up' %}{% endif %}{% trans "Count" %} {% if sort_by == 'count_down' %}{% elif sort_by == 'count_up' %}{% endif %} {% trans "Operations" %}
-{% include "snippets/admin_paginator.html" %} +
+ {% if current_page != 1 %} + {% trans "Previous" %} + {% endif %} + {% if page_next %} + {% trans "Next" %} + {% endif %} + {% if current_page != 1 or page_next %} + | + {% endif %} + {% trans "Per page: " %} + {% if per_page == 25 %} + 25 + {% else %} + 25 + {% endif %} + {% if per_page == 50 %} + 50 + {% else %} + 50 + {% endif %} + {% if per_page == 100 %} + 100 + {% else %} + 100 + {% endif %} +
{% else %}

{% trans "Empty" %}

{% endif %} @@ -52,5 +78,24 @@ $('.rm-link').click(function() { }); return false; }); + +var sort_by = '{{ sort_by }}'; +var url = '{% url 'sys_publink_admin' %}' + '?per_page={{ per_page }}'; +$(".by-time").on('click', function () { + if (sort_by == 'time_down') { + location.href = url + '&sort_by=time_up'; + } else { + location.href = url + '&sort_by=time_down'; + } + return false; +}); +$(".by-count").on('click', function () { + if (sort_by == 'count_down') { + location.href = url + '&sort_by=count_up'; + } else { + location.href = url + '&sort_by=count_down'; + } + return false; +}); {% endblock %} diff --git a/seahub/views/sysadmin.py b/seahub/views/sysadmin.py index 4d0b8ad166..52feb9591f 100644 --- a/seahub/views/sysadmin.py +++ b/seahub/views/sysadmin.py @@ -17,7 +17,6 @@ from django.http import HttpResponse, Http404, HttpResponseRedirect, HttpRespons from django.shortcuts import render_to_response from django.template import RequestContext from django.utils import timezone -from django.template.defaultfilters import filesizeformat from django.utils.translation import ugettext as _ import seaserv @@ -29,8 +28,7 @@ from seahub.base.accounts import User from seahub.base.models import UserLastLogin from seahub.base.decorators import sys_staff_required, require_POST from seahub.base.sudo_mode import update_sudo_mode_ts -from seahub.base.templatetags.seahub_tags import tsstr_sec, email2nickname, \ - translate_seahub_time_str +from seahub.base.templatetags.seahub_tags import tsstr_sec, email2nickname from seahub.auth import authenticate from seahub.auth.decorators import login_required, login_required_ajax from seahub.constants import GUEST_USER, DEFAULT_USER @@ -74,10 +72,6 @@ logger = logging.getLogger(__name__) @login_required @sys_staff_required def sysadmin(request): - """ - """ - username = request.user.username - max_upload_file_size = get_max_upload_file_size() folder_perm_enabled = True if is_pro_version() and settings.ENABLE_FOLDER_PERM else False @@ -1771,7 +1765,16 @@ def sys_publink_admin(request): offset = per_page * (current_page -1) limit = per_page + 1 - publinks = FileShare.objects.all()[offset:offset+limit] + sort_by = request.GET.get('sort_by', 'time_up') + + if sort_by == 'time_down': + publinks = FileShare.objects.all().order_by('ctime')[offset:offset+limit] + elif sort_by == 'count_up': + publinks = FileShare.objects.all().order_by('-view_cnt')[offset:offset+limit] + elif sort_by == 'count_down': + publinks = FileShare.objects.all().order_by('view_cnt')[offset:offset+limit] + else: + publinks = FileShare.objects.all().order_by('-ctime')[offset:offset+limit] if len(publinks) == per_page + 1: page_next = True @@ -1792,6 +1795,8 @@ def sys_publink_admin(request): 'next_page': current_page+1, 'per_page': per_page, 'page_next': page_next, + 'per_page': per_page, + 'sort_by': sort_by, }, context_instance=RequestContext(request)) From ef980da1ec4081c665716260ce2092b063aa1650 Mon Sep 17 00:00:00 2001 From: Daniel Pan Date: Sun, 24 Apr 2016 23:18:48 +0800 Subject: [PATCH 07/29] Add accessiblity support to simplemodal --- seahub/templates/js/templates.html | 10 +++++----- static/scripts/lib/jquery.simplemodal.js | 11 ++++++++--- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/seahub/templates/js/templates.html b/seahub/templates/js/templates.html index fee286c830..8c9e28b9c0 100644 --- a/seahub/templates/js/templates.html +++ b/seahub/templates/js/templates.html @@ -1,12 +1,12 @@ {% load avatar_tags i18n %} - @@ -846,7 +836,7 @@ <%- repo_name %> <%= mtime_relative %> - + @@ -989,14 +979,14 @@
-
- - <% if (can_delete_msg) { %> - - <% } %> -
<%- user_name %> <%- time_from_now %> +
+ + <% if (can_delete_msg) { %> + + <% } %> +
<%= content_marked %>
@@ -1154,16 +1144,25 @@

{% trans "Setting library history is disabled by Admin" %}

+ +
+ +
+ +
diff --git a/seahub/templates/libraries.html b/seahub/templates/libraries.html index acc2bf18a3..83232b769b 100644 --- a/seahub/templates/libraries.html +++ b/seahub/templates/libraries.html @@ -11,7 +11,7 @@ @@ -1032,7 +1048,7 @@ diff --git a/static/scripts/app/views/group-member.js b/static/scripts/app/views/group-member.js index 6d6eeeb043..9539640de1 100644 --- a/static/scripts/app/views/group-member.js +++ b/static/scripts/app/views/group-member.js @@ -18,11 +18,16 @@ define([ 'click': 'visitMemberProfile' }, - initialize: function() { + initialize: function(options) { + this.is_owner = options.is_owner; }, render: function() { - this.$el.html(this.template(this.model.attributes)); + var obj = { + is_owner: this.is_owner, + }; + $.extend(obj, this.model.attributes); + this.$el.html(this.template(obj)); return this; }, diff --git a/static/scripts/app/views/group-members.js b/static/scripts/app/views/group-members.js index a31c4862ea..6460b6d4f6 100644 --- a/static/scripts/app/views/group-members.js +++ b/static/scripts/app/views/group-members.js @@ -29,7 +29,13 @@ define([ }, addOne: function(item, collection, options) { + var is_owner = false; + if (item.get('email') === this.groupView.group.owner) { + is_owner = true; + } + console.log(this.groupView.group.owner + " " + is_owner); var view = new ItemView({ + is_owner: is_owner, model: item }); this.$listContainer.append(view.render().el); diff --git a/static/scripts/app/views/group-settings.js b/static/scripts/app/views/group-settings.js index a56f1a03be..fda20f7f2b 100644 --- a/static/scripts/app/views/group-settings.js +++ b/static/scripts/app/views/group-settings.js @@ -160,7 +160,7 @@ define([ if (!email) { return false; } - if (email == _this.group.owner) { + if (email == _this.groupView.group.owner) { return false; } @@ -179,6 +179,7 @@ define([ }, success: function() { // after the transfer, the former owner becomes a common admin of the group. + Common.feedback(gettext("Successfully transferred the group. You are now a normal member of the group."), 'success'); $.modal.close(); }, error: function(xhr) { From e71ca6d84bd138da604bbdc159854334f273c477 Mon Sep 17 00:00:00 2001 From: lian Date: Fri, 6 May 2016 14:52:28 +0800 Subject: [PATCH 14/29] unset admin after transfer success --- seahub/api2/endpoints/groups.py | 9 +++++---- tests/api/endpoints/test_groups.py | 3 +++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/seahub/api2/endpoints/groups.py b/seahub/api2/endpoints/groups.py index 8490dd904b..6e670a0fbf 100644 --- a/seahub/api2/endpoints/groups.py +++ b/seahub/api2/endpoints/groups.py @@ -10,7 +10,7 @@ from rest_framework.views import APIView from rest_framework import status import seaserv -from seaserv import seafile_api +from seaserv import seafile_api, ccnet_api from pysearpc import SearpcError from seahub.api2.utils import api_error @@ -256,12 +256,13 @@ class Group(APIView): # transfer a group if not is_group_member(group_id, new_owner): - seaserv.ccnet_threaded_rpc.group_add_member(group_id, username, new_owner) + ccnet_api.group_add_member(group_id, username, new_owner) if not is_group_admin(group_id, new_owner): - seaserv.ccnet_threaded_rpc.group_set_admin(group_id, new_owner) + ccnet_api.group_set_admin(group_id, new_owner) - seaserv.ccnet_threaded_rpc.set_group_creator(group_id, new_owner) + ccnet_api.set_group_creator(group_id, new_owner) + ccnet_api.group_unset_admin(group_id, username) except SearpcError as e: logger.error(e) diff --git a/tests/api/endpoints/test_groups.py b/tests/api/endpoints/test_groups.py index 2181e425d9..a35c2edde6 100644 --- a/tests/api/endpoints/test_groups.py +++ b/tests/api/endpoints/test_groups.py @@ -124,7 +124,10 @@ class GroupsTest(BaseTestCase): self.assertEqual(200, resp.status_code) json_resp = json.loads(resp.content) + assert json_resp['owner'] == new_creator + assert new_creator in json_resp['admins'] + assert self.user.email not in json_resp['admins'] def test_can_not_transfer_group_to_group_owner(self): new_creator = self.user.email From 6665908bca00a90e410543e502c2d0455eeb3945 Mon Sep 17 00:00:00 2001 From: lian Date: Fri, 6 May 2016 15:27:55 +0800 Subject: [PATCH 15/29] rm console log --- static/scripts/app/views/group-members.js | 1 - 1 file changed, 1 deletion(-) diff --git a/static/scripts/app/views/group-members.js b/static/scripts/app/views/group-members.js index 6460b6d4f6..7b339ab2f6 100644 --- a/static/scripts/app/views/group-members.js +++ b/static/scripts/app/views/group-members.js @@ -33,7 +33,6 @@ define([ if (item.get('email') === this.groupView.group.owner) { is_owner = true; } - console.log(this.groupView.group.owner + " " + is_owner); var view = new ItemView({ is_owner: is_owner, model: item From 73ae8b1399e1847509fb1b10a48237e20174ee63 Mon Sep 17 00:00:00 2001 From: zhengxie Date: Fri, 6 May 2016 16:37:33 +0800 Subject: [PATCH 16/29] [i18n] Update source file --- locale/en/LC_MESSAGES/django.po | 1610 ++++++++++++++++------------- locale/en/LC_MESSAGES/djangojs.po | 263 ++--- seahub/base/accounts.py | 5 +- 3 files changed, 1045 insertions(+), 833 deletions(-) diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po index 11ae1642da..ccd74d6318 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-04-20 10:12+0800\n" +"POT-Creation-Date: 2016-05-06 16:36+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -51,8 +52,8 @@ msgstr "" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "" @@ -62,34 +63,34 @@ msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please " "contact administrator." msgstr "" -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "" @@ -98,14 +99,15 @@ msgstr "" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "" @@ -141,7 +143,7 @@ msgid "No activity now or the function is not supported." msgstr "" #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "" @@ -156,7 +158,8 @@ msgstr "" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -164,8 +167,8 @@ msgstr "" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -181,7 +184,7 @@ msgstr "" #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -207,13 +210,16 @@ msgstr "" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -241,10 +247,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -304,7 +311,7 @@ msgid "New password confirmation" msgstr "" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "" @@ -316,7 +323,7 @@ msgstr "" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "" -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "" @@ -325,15 +332,19 @@ msgstr "" msgid "Enter a valid e-mail address." msgstr "" -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "" -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "" @@ -420,6 +431,7 @@ msgstr "" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -431,24 +443,24 @@ msgstr "" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -509,43 +521,48 @@ msgstr "" msgid "Successfully deleted the requested avatars." msgstr "" -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "" -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "" @@ -614,7 +631,7 @@ msgid "Recovered deleted directory" msgstr "" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "" @@ -662,22 +679,22 @@ msgstr[1] "" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -690,21 +707,21 @@ msgstr "" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -776,15 +793,16 @@ msgstr "" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -812,7 +830,7 @@ msgstr "" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "" @@ -857,11 +875,11 @@ msgstr "" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -882,21 +900,21 @@ msgstr "" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -928,8 +946,9 @@ msgstr "" #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -939,8 +958,8 @@ msgstr "" #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "" @@ -1038,17 +1057,17 @@ msgstr "" msgid "Name %s is not valid" msgstr "" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "" @@ -1110,7 +1129,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:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "" @@ -1260,16 +1279,16 @@ msgstr "" #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1346,21 +1365,21 @@ msgstr "" msgid "Description is required." msgstr "" -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "" @@ -1716,11 +1735,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1728,9 +1750,11 @@ msgstr "" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1741,12 +1765,16 @@ msgid "Libraries" msgstr "" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1806,12 +1834,12 @@ msgstr "" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1824,11 +1852,11 @@ msgid "Size" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1838,7 +1866,7 @@ msgid "Last Update" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1866,10 +1894,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "" @@ -1878,8 +1906,8 @@ msgstr "" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "" @@ -1894,7 +1922,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "" @@ -1914,7 +1942,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "" @@ -1926,7 +1954,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "" @@ -1935,7 +1963,7 @@ msgstr "" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "" @@ -1953,33 +1981,32 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "" @@ -2003,6 +2030,7 @@ msgstr "" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "" @@ -2049,16 +2077,22 @@ msgid "Send a message..." msgstr "" #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2075,18 +2109,20 @@ msgstr "" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "" @@ -2128,57 +2164,65 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "" -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "" -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "" -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "" -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(group_staff)s has added you to group " @@ -2226,11 +2270,18 @@ msgstr "" #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named " +"%(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from " "%(user)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2238,7 +2289,7 @@ msgid "" "%(folder_name)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2246,14 +2297,14 @@ msgid "" "message: %(msg)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "" @@ -2283,6 +2334,7 @@ msgid "Delete Notification" msgstr "" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2290,6 +2342,7 @@ msgstr "" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "" @@ -2358,14 +2411,17 @@ msgstr "" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "" @@ -2599,40 +2655,46 @@ msgstr "" msgid "Email is not longer than 512 characters" msgstr "" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "" +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 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/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "" @@ -2643,7 +2705,7 @@ msgstr "" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2659,7 +2721,7 @@ msgstr "" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2692,7 +2754,7 @@ msgid "Folders - Share" msgstr "" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "" @@ -2703,15 +2765,15 @@ msgstr "" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "" @@ -2777,174 +2839,210 @@ msgid "" "groups you are in." msgstr "" -#: seahub/share/views.py:81 -msgid "Failed to share to all members, please try again later." +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." msgstr "" #: seahub/share/views.py:83 +msgid "Failed to share to all members, please try again later." +msgstr "" + +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "" -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "" -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "" -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "" -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "" -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured, " "please contact administrator." msgstr "" -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "" #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: 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:71 -msgid "See All Notifications" -msgstr "" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2952,7 +3050,7 @@ msgid "" msgstr "" #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "" @@ -2982,28 +3080,31 @@ msgid "Please enter the password." msgstr "" #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: 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:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3012,9 +3113,12 @@ msgstr "" msgid "Current Path:" msgstr "" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "" @@ -3024,11 +3128,16 @@ msgstr "" msgid "Type" msgstr "" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "" @@ -3042,6 +3151,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3067,10 +3177,6 @@ msgstr "" 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 "" @@ -3195,7 +3301,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "" @@ -3220,10 +3326,10 @@ msgid "Password is required." msgstr "" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "" @@ -3319,85 +3425,90 @@ msgstr "" msgid "About Us" msgstr "" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "" @@ -3415,18 +3526,12 @@ msgid "Shared Libs" msgstr "" #: 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/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" msgstr "" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "" @@ -3444,8 +3549,7 @@ msgstr "" #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "" @@ -3509,7 +3613,123 @@ msgstr "" msgid "Don't replace" msgstr "" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "" @@ -3523,13 +3743,14 @@ msgid "Encrypt" msgstr "" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "" @@ -3539,34 +3760,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3589,58 +3810,59 @@ msgid "Folder Permission" msgstr "" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3648,175 +3870,177 @@ msgstr "" msgid "Trash" msgstr "" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "" -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 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:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3827,181 +4051,190 @@ msgstr "" msgid "Members" msgstr "" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "" -#: seahub/templates/js/templates.html:989 -msgid "Reply" +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" msgstr "" #: seahub/templates/js/templates.html:1007 +msgid "Reply" +msgstr "" + #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" msgstr "" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" msgstr "" #: seahub/templates/libraries.html:21 @@ -4019,6 +4252,11 @@ msgstr "" msgid "No library is shared to you" msgstr "" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "" @@ -4065,10 +4303,6 @@ msgid "" "on libraries. Groups you join will be listed here." msgstr "" -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4108,14 +4342,6 @@ msgid "" "page, and they will be listed here." msgstr "" -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "" @@ -4145,7 +4371,7 @@ msgstr "" #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4165,33 +4391,33 @@ msgstr "" msgid "Not clear? Refresh it." msgstr "" -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "" -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4232,10 +4458,6 @@ msgstr "" msgid "Current Password" msgstr "" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4372,11 +4594,6 @@ msgstr "" 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 "" @@ -4398,12 +4615,12 @@ msgid "1 month ago" msgstr "" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "" @@ -4632,7 +4849,7 @@ msgid "Please enter password" msgstr "" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "" @@ -4773,6 +4990,15 @@ msgstr "" msgid "Successfully unstarred." msgstr "" +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "" @@ -4798,88 +5024,62 @@ msgstr "" msgid "Failed to get upload url" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: 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/sysadmin/admin_repo_view.html:290 #: 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/sysadmin/admin_repo_view.html:291 #: 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/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "" -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "" @@ -4931,6 +5131,13 @@ msgstr "" msgid "Files / Size" msgstr "" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-data/" +"constance_config). They have a higher priority over the settings in config " +"files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "" @@ -4961,10 +5168,6 @@ msgstr "" msgid "No library has shared to this group" msgstr "" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4976,30 +5179,6 @@ msgstr "" msgid "Delete Group" msgstr "" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5163,12 +5342,12 @@ msgid "Max User Number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "" @@ -5308,7 +5487,7 @@ msgstr "" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "" @@ -5321,7 +5500,7 @@ msgid "Admins" msgstr "" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "" @@ -5347,7 +5526,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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "" @@ -5435,6 +5614,11 @@ msgstr "" msgid "Password: %(password)s" msgstr "" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5512,24 +5696,24 @@ msgstr "" msgid "Sorry, this user is not registered yet." msgstr "" -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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_base.html:46 #: 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 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "" @@ -5625,8 +5809,8 @@ msgstr "" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "" @@ -5655,8 +5839,8 @@ msgid "Duplicated filename" msgstr "" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "" @@ -5715,11 +5899,11 @@ msgstr "" msgid "No revisions found" msgstr "" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "" @@ -5748,12 +5932,12 @@ msgstr "" msgid "\"%s\" does not exist." msgstr "" -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "" @@ -5763,11 +5947,11 @@ msgstr "" msgid "Unable to download \"%s\"" msgstr "" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "" -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "" @@ -5784,7 +5968,7 @@ msgid "The group doesn't exist" msgstr "" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "" @@ -5862,262 +6046,266 @@ msgstr "" msgid "Wrong repo id" msgstr "" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "" -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "" -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "" -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "" -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "" -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "" -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "" -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "" -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "" -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "" -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "" -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "" -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "" -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "" -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "" -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "" -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, 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:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "" -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6125,107 +6313,107 @@ msgid "" "configured." msgstr "" -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "" -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "" -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification, " "please check your email configuration." msgstr "" -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "" -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, 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:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "" -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "" -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "" -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "" -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "" -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "" -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "" diff --git a/locale/en/LC_MESSAGES/djangojs.po b/locale/en/LC_MESSAGES/djangojs.po index e30b46f072..62520160c8 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-04-20 10:12+0800\n" +"POT-Creation-Date: 2016-05-06 16:36+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,12 +17,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,37 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +594,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +606,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +647,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/seahub/base/accounts.py b/seahub/base/accounts.py index a534fe020b..e720045850 100644 --- a/seahub/base/accounts.py +++ b/seahub/base/accounts.py @@ -249,7 +249,10 @@ class User(object): send_html_email_with_dj_template( u.email, dj_template='sysadmin/user_freeze_email.html', - subject=_('Account %s froze on %s.') % (self.email, settings.SITE_NAME), + subject=_('Account %(account)s froze on %(site)s.') % { + "account": self.email, + "site": settings.SITE_NAME, + }, context={'user': self.email}, priority=MAIL_PRIORITY.now ) From c2f07f22d100d878ea88e7737c23187f07280be9 Mon Sep 17 00:00:00 2001 From: zhengxie Date: Fri, 6 May 2016 17:04:34 +0800 Subject: [PATCH 17/29] [i18n] Update settings.html and source file --- locale/en/LC_MESSAGES/django.po | 4 ++-- locale/en/LC_MESSAGES/djangojs.po | 2 +- seahub/templates/sysadmin/settings.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po index ccd74d6318..472966e901 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-05-06 16:36+0800\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5133,7 +5133,7 @@ msgstr "" #: seahub/templates/sysadmin/settings.html:11 msgid "" -"Note: Settings via web interface are saved in database table (seahub-data/" +"Note: Settings via web interface are saved in database table (seahub-db/" "constance_config). They have a higher priority over the settings in config " "files." msgstr "" diff --git a/locale/en/LC_MESSAGES/djangojs.po b/locale/en/LC_MESSAGES/djangojs.po index 62520160c8..8a937f1ad5 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-05-06 16:36+0800\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/seahub/templates/sysadmin/settings.html b/seahub/templates/sysadmin/settings.html index 30fd2e7c1d..75c94215c9 100644 --- a/seahub/templates/sysadmin/settings.html +++ b/seahub/templates/sysadmin/settings.html @@ -8,7 +8,7 @@
-

{% trans "Note: Settings via web interface are saved in database table (seahub-data/constance_config). They have a higher priority over the settings in config files." %}

+

{% trans "Note: Settings via web interface are saved in database table (seahub-db/constance_config). They have a higher priority over the settings in config files." %}

URL

From 93befba419d32817ac412cfeb165166db1fc1ced Mon Sep 17 00:00:00 2001 From: lian Date: Sat, 7 May 2016 11:48:26 +0800 Subject: [PATCH 18/29] add avatar_url info when get activities --- seahub/api2/views.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/seahub/api2/views.py b/seahub/api2/views.py index 712ff7506b..4d470a87ab 100644 --- a/seahub/api2/views.py +++ b/seahub/api2/views.py @@ -3425,9 +3425,12 @@ class EventsView(APIView): time_diff = local - epoch d['time'] = time_diff.seconds + (time_diff.days * 24 * 3600) + size = request.GET.get('size', 36) + url, is_default, date_uploaded = api_avatar_url(d['author'], size) d['nick'] = email2nickname(d['author']) d['name'] = email2nickname(d['author']) - d['avatar'] = avatar(d['author'], 36) + d['avatar'] = avatar(d['author'], size) + d['avatar_url'] = request.build_absolute_uri(url) d['time_relative'] = translate_seahub_time(utc_to_local(e.timestamp)) d['date'] = utc_to_local(e.timestamp).strftime("%Y-%m-%d") From 2d7f2a8416575d3b3fab974c4eb2b7d4b8e90773 Mon Sep 17 00:00:00 2001 From: lian Date: Mon, 9 May 2016 15:01:35 +0800 Subject: [PATCH 19/29] rm encrypted repo password check when get repo history --- seahub/api2/views.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/seahub/api2/views.py b/seahub/api2/views.py index 30fa841265..05a1ae9587 100644 --- a/seahub/api2/views.py +++ b/seahub/api2/views.py @@ -3965,11 +3965,6 @@ class RepoHistoryChange(APIView): if not check_folder_permission(request, repo_id, '/'): return api_error(status.HTTP_403_FORBIDDEN, 'Permission denied.') - if repo.encrypted and not is_passwd_set(repo_id, request.user.username): - return HttpResponse(json.dumps({"err": 'Library is encrypted'}), - status=400, - content_type=json_content_type) - commit_id = request.GET.get('commit_id', '') if not commit_id: return HttpResponse(json.dumps({"err": 'Invalid argument'}), From 7fc60fb5cc35ffd4acaa5955f31c32a9c9501fe6 Mon Sep 17 00:00:00 2001 From: lian Date: Tue, 10 May 2016 10:44:23 +0800 Subject: [PATCH 20/29] update share link api url to make it more RESTful --- seahub/api2/endpoints/share_links.py | 40 ++++++++++++++-------------- seahub/urls.py | 4 +-- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/seahub/api2/endpoints/share_links.py b/seahub/api2/endpoints/share_links.py index ca69929fe3..3da0fc6199 100644 --- a/seahub/api2/endpoints/share_links.py +++ b/seahub/api2/endpoints/share_links.py @@ -24,11 +24,27 @@ from seahub.utils import gen_shared_link, is_org_context logger = logging.getLogger(__name__) +def get_share_link_info(fileshare): + data = {} + token = fileshare.token + + data['repo_id'] = fileshare.repo_id + data['path'] = fileshare.path + data['ctime'] = fileshare.ctime + data['view_cnt'] = fileshare.view_cnt + data['link'] = gen_shared_link(token, fileshare.s_type) + data['token'] = token + data['expire_date'] = fileshare.expire_date + data['is_expired'] = fileshare.is_expired() + data['username'] = fileshare.username + + return data + class ShareLinks(APIView): authentication_classes = (TokenAuthentication, SessionAuthentication) permission_classes = (IsAuthenticated,) - throttle_classes = (UserRateThrottle, ) + throttle_classes = (UserRateThrottle,) def _can_generate_shared_link(self, request): @@ -46,22 +62,6 @@ class ShareLinks(APIView): return (None, None) - def _get_share_link_info(self, fileshare): - data = {} - token = fileshare.token - - data['repo_id'] = fileshare.repo_id - data['path'] = fileshare.path - data['ctime'] = fileshare.ctime - data['view_cnt'] = fileshare.view_cnt - data['link'] = gen_shared_link(token, fileshare.s_type) - data['token'] = token - data['expire_date'] = fileshare.expire_date - data['is_expired'] = fileshare.is_expired() - data['username'] = fileshare.username - - return data - def get(self, request): """ get share links. """ @@ -112,7 +112,7 @@ class ShareLinks(APIView): result = [] for fs in fileshares: - link_info = self._get_share_link_info(fs) + link_info = get_share_link_info(fs) result.append(link_info) if len(result) == 1: @@ -194,7 +194,7 @@ class ShareLinks(APIView): org_id = request.user.org.org_id OrgFileShare.objects.set_org_file_share(org_id, fs) - link_info = self._get_share_link_info(fs) + link_info = get_share_link_info(fs) return Response(link_info) class ShareLink(APIView): @@ -214,7 +214,7 @@ class ShareLink(APIView): error_msg = 'token %s not found.' % token return api_error(status.HTTP_404_NOT_FOUND, error_msg) - link_info = self._get_share_link_info(fs) + link_info = get_share_link_info(fs) return Response(link_info) def delete(self, request, token): diff --git a/seahub/urls.py b/seahub/urls.py index d295f1022c..340ca5a316 100644 --- a/seahub/urls.py +++ b/seahub/urls.py @@ -187,9 +187,9 @@ urlpatterns = patterns( url(r'^api/v2.1/groups/(?P\d+)/members/bulk/$', GroupMembersBulk.as_view(), name='api-v2.1-group-members-bulk'), url(r'^api/v2.1/groups/(?P\d+)/members/(?P[^/]+)/$', GroupMember.as_view(), name='api-v2.1-group-member'), url(r'^api/v2.1/share-links/$', ShareLinks.as_view(), name='api-v2.1-share-links'), - url(r'^api/v2.1/share-link/(?P[a-f0-9]{10})/$', ShareLink.as_view(), name='api-v2.1-share-link'), + url(r'^api/v2.1/share-links/(?P[a-f0-9]{10})/$', ShareLink.as_view(), name='api-v2.1-share-link'), url(r'^api/v2.1/upload-links/$', UploadLinks.as_view(), name='api-v2.1-upload-links'), - url(r'^api/v2.1/upload-link/(?P[a-f0-9]{10})/$', UploadLink.as_view(), name='api-v2.1-upload-link'), + url(r'^api/v2.1/upload-links/(?P[a-f0-9]{10})/$', UploadLink.as_view(), name='api-v2.1-upload-link'), url(r'^api/v2.1/repos/(?P[-0-9a-f]{36})/file/$', FileView.as_view(), name='api-v2.1-file-view'), url(r'^api/v2.1/repos/(?P[-0-9a-f]{36})/dirents/download-link/$', DirentsDownloadLinkView.as_view(), name='api-v2.1-dirents-download-link-view'), url(r'^api/v2.1/repos/(?P[-0-9a-f]{36})/dir/$', DirView.as_view(), name='api-v2.1-dir-view'), From 13cc30c33c1206b4051826abbf8efd3857cd1b9a Mon Sep 17 00:00:00 2001 From: zhengxie Date: Wed, 11 May 2016 10:36:54 +0800 Subject: [PATCH 21/29] Update locales and add missing trans context --- locale/ar/LC_MESSAGES/djangojs.po | 266 ++-- locale/bg/LC_MESSAGES/djangojs.po | 266 ++-- locale/bg_BG/LC_MESSAGES/djangojs.po | 266 ++-- locale/ca/LC_MESSAGES/django.po | 1619 +++++++++++++----------- locale/ca/LC_MESSAGES/djangojs.po | 266 ++-- locale/cs/LC_MESSAGES/djangojs.po | 266 ++-- locale/cs_CZ/LC_MESSAGES/djangojs.po | 266 ++-- locale/da_DK/LC_MESSAGES/djangojs.po | 266 ++-- locale/de/LC_MESSAGES/django.po | 1663 ++++++++++++++----------- locale/de/LC_MESSAGES/djangojs.po | 274 +++-- locale/el/LC_MESSAGES/djangojs.po | 266 ++-- locale/el_GR/LC_MESSAGES/djangojs.po | 266 ++-- locale/en/LC_MESSAGES/django.po | 29 +- locale/en_US/LC_MESSAGES/djangojs.po | 266 ++-- locale/es/LC_MESSAGES/django.po | 1621 +++++++++++++----------- locale/es/LC_MESSAGES/djangojs.po | 266 ++-- locale/es_AR/LC_MESSAGES/django.po | 1621 +++++++++++++----------- locale/es_AR/LC_MESSAGES/djangojs.po | 266 ++-- locale/es_MX/LC_MESSAGES/django.po | 1621 +++++++++++++----------- locale/es_MX/LC_MESSAGES/djangojs.po | 266 ++-- locale/fr/LC_MESSAGES/django.po | 1639 ++++++++++++++----------- locale/fr/LC_MESSAGES/djangojs.po | 275 +++-- locale/he/LC_MESSAGES/django.po | 1617 +++++++++++++----------- locale/he/LC_MESSAGES/djangojs.po | 266 ++-- locale/hr/LC_MESSAGES/djangojs.po | 266 ++-- locale/hr_HR/LC_MESSAGES/djangojs.po | 266 ++-- locale/hu/LC_MESSAGES/django.po | 1621 +++++++++++++----------- locale/hu/LC_MESSAGES/djangojs.po | 266 ++-- locale/is/LC_MESSAGES/django.po | 1697 ++++++++++++++------------ locale/is/LC_MESSAGES/djangojs.po | 332 ++--- locale/it/LC_MESSAGES/django.po | 1623 +++++++++++++----------- locale/it/LC_MESSAGES/djangojs.po | 266 ++-- locale/ja/LC_MESSAGES/django.po | 1623 +++++++++++++----------- locale/ja/LC_MESSAGES/djangojs.po | 266 ++-- locale/ko/LC_MESSAGES/django.po | 1641 ++++++++++++++----------- locale/ko/LC_MESSAGES/djangojs.po | 272 +++-- locale/lv/LC_MESSAGES/django.po | 1621 +++++++++++++----------- locale/lv/LC_MESSAGES/djangojs.po | 266 ++-- locale/lv_LV/LC_MESSAGES/djangojs.po | 266 ++-- locale/nb/LC_MESSAGES/djangojs.po | 266 ++-- locale/nb_NO/LC_MESSAGES/djangojs.po | 266 ++-- locale/nl_NL/LC_MESSAGES/djangojs.po | 272 +++-- locale/pl/LC_MESSAGES/django.po | 1621 +++++++++++++----------- locale/pl/LC_MESSAGES/djangojs.po | 266 ++-- locale/pt_BR/LC_MESSAGES/django.po | 1623 +++++++++++++----------- locale/pt_BR/LC_MESSAGES/djangojs.po | 266 ++-- locale/pt_PT/LC_MESSAGES/djangojs.po | 266 ++-- locale/ru/LC_MESSAGES/django.po | 1621 +++++++++++++----------- locale/ru/LC_MESSAGES/djangojs.po | 266 ++-- locale/sk_SK/LC_MESSAGES/djangojs.po | 266 ++-- locale/sl_SI/LC_MESSAGES/djangojs.po | 266 ++-- locale/sv/LC_MESSAGES/django.po | 1623 +++++++++++++----------- locale/sv/LC_MESSAGES/djangojs.po | 266 ++-- locale/th_TH/LC_MESSAGES/djangojs.po | 266 ++-- locale/tr/LC_MESSAGES/django.po | 1623 +++++++++++++----------- locale/tr/LC_MESSAGES/djangojs.po | 266 ++-- locale/uk/LC_MESSAGES/django.po | 1623 +++++++++++++----------- locale/uk/LC_MESSAGES/djangojs.po | 266 ++-- locale/vi/LC_MESSAGES/djangojs.po | 266 ++-- locale/zh_CN/LC_MESSAGES/django.po | 1626 +++++++++++++----------- locale/zh_CN/LC_MESSAGES/djangojs.po | 269 ++-- locale/zh_TW/LC_MESSAGES/django.po | 1619 +++++++++++++----------- locale/zh_TW/LC_MESSAGES/djangojs.po | 266 ++-- seahub/templates/libraries.html | 2 +- 64 files changed, 25079 insertions(+), 20162 deletions(-) diff --git a/locale/ar/LC_MESSAGES/djangojs.po b/locale/ar/LC_MESSAGES/djangojs.po index 3fb0ad5385..a0b47cbd75 100644 --- a/locale/ar/LC_MESSAGES/djangojs.po +++ b/locale/ar/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Arabic (http://www.transifex.com/haiwen/seahub/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/bg/LC_MESSAGES/djangojs.po b/locale/bg/LC_MESSAGES/djangojs.po index 15ddb03c27..1b1dbf7c2a 100644 --- a/locale/bg/LC_MESSAGES/djangojs.po +++ b/locale/bg/LC_MESSAGES/djangojs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Bulgarian (http://www.transifex.com/haiwen/seahub/language/bg/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -31,19 +31,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -59,6 +59,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -88,35 +113,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Грешка. Моля проверете връзката." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -146,12 +176,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -204,8 +234,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -221,39 +251,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -262,7 +273,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -270,150 +281,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -453,10 +464,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -500,19 +511,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -521,7 +532,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -542,32 +553,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -579,11 +596,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -591,35 +608,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -631,22 +649,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/bg_BG/LC_MESSAGES/djangojs.po b/locale/bg_BG/LC_MESSAGES/djangojs.po index a257dc336a..c0c4a1a9bf 100644 --- a/locale/bg_BG/LC_MESSAGES/djangojs.po +++ b/locale/bg_BG/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/haiwen/seahub/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/ca/LC_MESSAGES/django.po b/locale/ca/LC_MESSAGES/django.po index 8015b35f0d..679f822afb 100644 --- a/locale/ca/LC_MESSAGES/django.po +++ b/locale/ca/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Catalan (http://www.transifex.com/haiwen/seahub/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,14 +18,15 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -52,8 +53,8 @@ msgstr "La contrasenya no és correcte" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Error intern al servidor" @@ -63,34 +64,34 @@ msgstr "S'ha produït un error al desencriptar la llibreria" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "No s'ha pogut enviar l'enllaç. El servei de missatgeria no està ben configurat, aviseu l'administrador." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "" @@ -99,14 +100,15 @@ msgstr "" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "La contrasenya és massa curta" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Equip d'organització de fitxers" @@ -142,7 +144,7 @@ msgid "No activity now or the function is not supported." msgstr "Actualment no hi ha activitat o bé aquesta funció no està implementada" #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "S'ha creat la llibreria " @@ -157,7 +159,8 @@ msgstr "S'ha eliminat la llibreria %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -165,8 +168,8 @@ msgstr "S'ha eliminat la llibreria %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -182,7 +185,7 @@ msgstr "Verifiqueu la connexió a la xarxa" #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -208,13 +211,16 @@ msgstr "Dates importants" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -242,10 +248,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -305,7 +312,7 @@ msgid "New password confirmation" msgstr "Confirma la nova contrasenya" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Les contrasenyes no coincideixen" @@ -317,7 +324,7 @@ msgstr "Contrasenya antiga" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "La contrasenya antiga no coincideix. Torneu a introduir-la." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Repetiu la contrasenya" @@ -326,15 +333,19 @@ msgstr "Repetiu la contrasenya" msgid "Enter a valid e-mail address." msgstr "Introduïu un correu electrònic vàlid." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "S'ha finalitzat la sessió" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "No s'ha pogut enviar el correu. Aviseu l'administrador." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "" @@ -421,6 +432,7 @@ msgstr "Avatar actual:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -432,24 +444,24 @@ msgstr "Avatar actual:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -510,43 +522,48 @@ msgstr "L'avatar s'ha actualitzat correctament" msgid "Successfully deleted the requested avatars." msgstr "Els avatars s'han eliminat correctament" -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Correu electrònic" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Nom d'usuari" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Aquest valor ha de ser de longitud 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "" -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Ja existeix un usuari amb aquest correu electrònic" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "L'identificador d'usuari no és vàlid" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "nom" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "departament" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "telèfon" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "nota" @@ -615,7 +632,7 @@ msgid "Recovered deleted directory" msgstr "S'ha recuperat el directori eliminat" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "S'ha canviat el nom o descripció de la llibreria" @@ -663,22 +680,22 @@ msgstr[1] "Fa %(seconds)d segons" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -691,21 +708,21 @@ msgstr "Lectura-Escriptura" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -777,15 +794,16 @@ msgstr "Correu electrònic" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -813,7 +831,7 @@ msgstr "Correu electrònic" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nom" @@ -858,11 +876,11 @@ msgstr "Operacions" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -883,21 +901,21 @@ msgstr "Edita" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -929,8 +947,9 @@ msgstr "Afegiu nous contactes per compartir llibreries més fàcilment" #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -940,8 +959,8 @@ msgstr "Afegiu nous contactes per compartir llibreries més fàcilment" #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Correu electrònic" @@ -1039,17 +1058,17 @@ msgstr "La descripció és massa llarga (màxim de 100 caràcters)" msgid "Name %s is not valid" msgstr "El nom %s no és vàlid" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Falta un paràmetre" @@ -1111,7 +1130,7 @@ msgid "Permission error: only group staff can add member" msgstr "No tens permís per afegir membres en aquest grup" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Aquest grup no existeix" @@ -1261,16 +1280,16 @@ msgstr "Seleccioneu una llibreria." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1347,21 +1366,21 @@ msgstr "El nom és obligatori." msgid "Description is required." msgstr "La descripció és obligatoria." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "S'ha denegat l'accés " @@ -1714,11 +1733,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Usuaris" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1726,9 +1748,11 @@ msgstr "Informació" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1739,12 +1763,16 @@ msgid "Libraries" msgstr "Llibreries" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1804,12 +1832,12 @@ msgstr "" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1822,11 +1850,11 @@ msgid "Size" msgstr "Mida" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1836,7 +1864,7 @@ msgid "Last Update" msgstr "Última actualització" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1864,10 +1892,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "" @@ -1876,8 +1904,8 @@ msgstr "" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Creat el" @@ -1892,7 +1920,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Estat" @@ -1912,7 +1940,7 @@ msgstr "Alta / Última sessió" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Actiu" @@ -1924,7 +1952,7 @@ msgstr "Actiu" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Inactiu" @@ -1933,7 +1961,7 @@ msgstr "Inactiu" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Buit" @@ -1951,33 +1979,32 @@ msgstr "Elimina l'usuari" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Propietari" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Administra" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "S'ha eliminat %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "No s'ha pogut eliminar: l'usuari no existeix" @@ -2001,6 +2028,7 @@ msgstr "Missatge" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Data" @@ -2047,16 +2075,22 @@ msgid "Send a message..." msgstr "Envia un missatge..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Anterior" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2073,18 +2107,20 @@ msgstr "Esteu segurs que voleu eliminar aquest missatge?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Sí" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "No" @@ -2126,57 +2162,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Error intern" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s ha compartit la llibreria %(repo_name)s amb vós." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "" -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "" -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "" -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s ha sol·licitat unir-se a %(group_name)s. Missatge de verificació: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2224,11 +2269,19 @@ msgstr "" #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2236,7 +2289,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2244,14 +2297,14 @@ msgid "" "message: %(msg)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "" @@ -2281,6 +2334,7 @@ msgid "Delete Notification" msgstr "Elimina la notificació" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2288,6 +2342,7 @@ msgstr "Elimina la notificació" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "" @@ -2356,14 +2411,17 @@ msgstr "Configuració " #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Configuració" @@ -2597,40 +2655,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "El correu electrònic no pot ser de més de 512 caràcters" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "La contrasenya és obligatòria" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "" +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Enllaços - Compartit" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Enllaços descarregues" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Enllaços de pujada" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Llibreria" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Visites" @@ -2641,7 +2705,7 @@ msgstr "" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2657,7 +2721,7 @@ msgstr "Mostra" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2690,7 +2754,7 @@ msgid "Folders - Share" msgstr "Directoris - Compartit" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Directoris" @@ -2701,15 +2765,15 @@ msgstr "Comparteix amb" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Permís" @@ -2775,175 +2839,211 @@ msgid "" "groups you are in." msgstr "Podeu compartir llibreries amb altres usuaris clicant la icona de comparteix a la pàgina d'inici o bé creant una nova llibreria en un dels grups que en sou membre." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "No s'ha pogut compartir amb tots els membres. Torneu-ho a provar més tard." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "S'ha compartit amb tots els membres, podeu comprovar-ho a Compartit." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Només el propietari de la llibreria pot compartir-la." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "La llibreria no existeix" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "El paràmetre no és vàlid" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "No s'ha pogut eliminar la compartició" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "L'identificador de grup no és vàlid" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "No s'ha pogut deixar de compartir perquè el grup no existeix." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "S'ha eliminat la compartició" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "Tots el membres" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Aquest enllaç no existeix" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Seleccioneu un directori." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "S'ha guardat correctament." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "" -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Els arguments no són vàlids" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Aquesta llibreria no existeix" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "No s'ha pogut localitzar la pàgina sol·licitada." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Surt de l'administrador de sistema" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Tanca" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Notificacions" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Tanca la sessió" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Administrador de sistema" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Notificacions" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Benvingut a Seafile" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2951,7 +3051,7 @@ msgid "" msgstr "" #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Registra't" @@ -2981,28 +3081,31 @@ msgid "Please enter the password." msgstr "Introduïu la contrasenya." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Descarrega" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3011,9 +3114,12 @@ msgstr "" msgid "Current Path:" msgstr "Ruta actual:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "" @@ -3023,11 +3129,16 @@ msgstr "" msgid "Type" msgstr "" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "" @@ -3041,6 +3152,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3066,10 +3178,6 @@ msgstr "S'ha guardat un esborrany." msgid "is encrypted" msgstr "està encriptat" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Contrasenya: " - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "El servidor guardarà la contrasenya només 1 hora." @@ -3194,7 +3302,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "" @@ -3219,10 +3327,10 @@ msgid "Password is required." msgstr "Es requereix contrasenya." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Historial" @@ -3318,85 +3426,90 @@ msgstr "Seafile" msgid "About Us" msgstr "" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Fitxers" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Pròpies" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Compartides" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "Organització" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Tots els grups" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Activa mòduls" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Destacades" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Activitat" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Wiki personal" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Comparteix l'administració" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Enllaços" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "" @@ -3414,18 +3527,12 @@ msgid "Shared Libs" msgstr "" #: 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 "Crea un directori" - -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Nom del directori" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Crea un fitxer" @@ -3443,8 +3550,7 @@ msgstr "Tipus de format \"simple markup\"" #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Detalls" @@ -3508,7 +3614,123 @@ msgstr "" msgid "Don't replace" msgstr "" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Error" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Crea una llibreria" @@ -3522,13 +3744,14 @@ msgid "Encrypt" msgstr "Encripta" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(longitud mínima de %(repo_password_min_length)s caràcters)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Repeteix la contrasenya" @@ -3538,34 +3761,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Comparteix" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Més operacions" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Reanomena" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3588,58 +3811,59 @@ msgid "Folder Permission" msgstr "" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Mou" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Còpia" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Puja" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Puja fitxers" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3647,175 +3871,177 @@ msgstr "" msgid "Trash" msgstr "Paperera" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Sub-llibreries" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Més operacions" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "destacat" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "no destacat" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Enllaç de descarrega" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Enllaç de pujada" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Genera" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Enllaç:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Envia" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Envia a:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Correus electrònics separats per ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Enviant..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Pots compartir aquest enllaç amb qui vulguis i podrà penjar fitxers directament en aquest directori." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Enllaç de pujada:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Grup" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Deixa de compartir" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3826,181 +4052,190 @@ msgstr "Wiki" msgid "Members" msgstr "Membres" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Missatges" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "icona" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "No destaquis" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Compartit per" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Detall de la modificació" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Cerca fitxers al wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Cerca fitxers a la llibreria" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Cerca fitxers" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "Avançat" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Respon" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Ignora" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Reanomena el grup a" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Transfereix el grup a " -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Conserva tot l'historial" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "No conservis l'historial" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Només conserva l'historial dels darrers:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "dies" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" msgstr "" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" msgstr "" #: seahub/templates/libraries.html:21 @@ -4018,6 +4253,11 @@ msgstr "Podeu crear una llibreria per organitzar els vostres fitxers. Per exempl msgid "No library is shared to you" msgstr "No s'està compartint cap llibreria" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organització" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "" @@ -4064,10 +4304,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "" -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Nom del grup" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4107,14 +4343,6 @@ msgid "" " page, and they will be listed here." msgstr "Podeu destacar els fitxers importants clicant \"Destaca\" a la pàgina de visualització del fitxer." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "" @@ -4144,7 +4372,7 @@ msgstr "" #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4164,33 +4392,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Genera una nova imatge." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "La contrasenya o correu electrònic són incorrectes" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Recorda la sessió durant %(remember_days)s dies" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "No s'ha pogut carregar el CAPTCHA, torna-ho a provar. " -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4231,10 +4459,6 @@ msgstr "" msgid "Current Password" msgstr "" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4371,11 +4595,6 @@ msgstr "El correu electrònic és obligatori" 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 "Elimina la data" @@ -4397,12 +4616,12 @@ msgid "1 month ago" msgstr "" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "" @@ -4632,7 +4851,7 @@ msgid "Please enter password" msgstr "Introduïu la contrasenya" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "S'ha eliminat correctament." @@ -4773,6 +4992,15 @@ msgstr "Destaca" msgid "Successfully unstarred." msgstr "S'ha deixat de destacar." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Crea un directori" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Nom del directori" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "" @@ -4798,88 +5026,62 @@ msgstr "" msgid "Failed to get upload url" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "El fitxer és massa gran" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "El fitxer és massa petit" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Aquest tipus de fitxer no està permès" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "S'han excedit el nombre màxim de fitxers" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "El total de bytes pujats és superior a la mida del fitxer" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "S'ha pujat un fitxer buit" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Error" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Inicia" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "És obligatori." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Autor" @@ -4931,6 +5133,13 @@ msgstr "" msgid "Files / Size" msgstr "" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "" @@ -4961,10 +5170,6 @@ msgstr "" msgid "No library has shared to this group" msgstr "" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4976,30 +5181,6 @@ msgstr "" msgid "Delete Group" msgstr "Elimina el grup" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5163,12 +5344,12 @@ msgid "Max User Number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "" @@ -5308,7 +5489,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "" @@ -5321,7 +5502,7 @@ msgid "Admins" msgstr "Administradors" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "" @@ -5347,7 +5528,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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "" @@ -5435,6 +5616,12 @@ msgstr "Correu electrònic: %(email)s" msgid "Password: %(password)s" msgstr "" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5512,24 +5699,24 @@ msgstr "a" msgid "Sorry, this user is not registered yet." msgstr "Aquest usuari encara no està registrat." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Ruta actual:" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "S'ha actualitzat el fitxer" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "" @@ -5625,8 +5812,8 @@ msgstr "" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Permís denegat." @@ -5655,8 +5842,8 @@ msgid "Duplicated filename" msgstr "Nom de fitxer duplicat" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "El fitxer no existeix" @@ -5715,11 +5902,11 @@ msgstr "No s'ha pogut deixar de compartir \"%s\"." msgid "No revisions found" msgstr "" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "" @@ -5747,12 +5934,12 @@ msgstr "S'ha revertit %(path)s al directori arrel." msgid "\"%s\" does not exist." msgstr "" -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Error intern" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "No s'ha pogut descarregar el directori \"%s\" perquè és massa gran." @@ -5762,11 +5949,11 @@ msgstr "No s'ha pogut descarregar el directori \"%s\" perquè és massa gran." msgid "Unable to download \"%s\"" msgstr "No s'ha pogut descarregar \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "S'ha activat la Wiki personal." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "S'ha desactivat la Wiki personal." @@ -5783,7 +5970,7 @@ msgid "The group doesn't exist" msgstr "Aquest grup no existeix" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "La llibreria està encriptada." @@ -5861,262 +6048,266 @@ msgstr "No s'ha pogut obtenir els blocs del fitxer" msgid "Wrong repo id" msgstr "Identificador incorrecte" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "S'ha sincronitzat correctament" -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "No s'ha pogut editar la informació de la llibreria." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "No s'ha pogut guardar la configuració al servidor" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "S'ha guardat la configuració." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "El nom d'usuari %s no és vàlid." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "No s'ha trobat l'usuari %s." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "" -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "" -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "" -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTPError: no s'ha pogut obrir el fitxer" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URLError: No s'ha pogut obrir el fitxer" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "La codificació seleccionada no és vàlida." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Codificació de fitxer desconeguda" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "El fitxers és més gran de %s i no es pot obrir a la web." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "No es pot visualitzar el fitxer" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Format de fitxer no vàlid." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "La llibreria no existeix." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "La llibreria està encriptada." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "No es pot editar el fitxer" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "El fitxer no existeix." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Aquest tipus de fitxer no es pot editar a la web." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "" -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "S'ha revocat el permís d'administrador a %s" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "L'usuari no existeix i no s'ha revocat el permís d'administrador" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "S'ha reinicialitzar la contrasenya a %(passwd)s. S'ha notificat per correu a %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "S'ha reinicialitzat la contrasenya a %(passwd)s, però no s'ha pogut enviar un correu electrònic a %(user)s. Reviseu la configuració del correu." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "S'ha reinicialitzat la contrasenya a %(passwd)s per l'usuari %(user)s." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6124,107 +6315,107 @@ msgid "" "configured." msgstr "S'ha reinicialitzat la contrasenya %(passwd)s de l'usuari %(user)s. Però no s'ha pogut notificar per correu electrònic. El servei de missatgeria no està ben configurat." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "L'usuari no existeix i no s'ha pogut reinicialitzar la contrasenya" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "" -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "S'ha registrat l'usuari %s. S'ha enviat una notificació per correu electrònic." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "S'ha registrat l'usuari %s. Però no s'ho pogut notificar per correu electrònic. Reviseu la configuració del correu." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "S'ha registrat l'usuari %s." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "S'ha registrat l'usuari %s. No s'ha pogut notificar per correu electrònic. Reviseu la configuració del servei de missatgeria." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "No s'ha transferit perquè el paràmetres no són vàlids." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "No s'ha transferit perquè no s'ha trobat l'usuari %s" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "S'ha transferit correctament." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "" -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "" -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "" -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "" -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "" diff --git a/locale/ca/LC_MESSAGES/djangojs.po b/locale/ca/LC_MESSAGES/djangojs.po index 4a863fa1c2..af44558b2d 100644 --- a/locale/ca/LC_MESSAGES/djangojs.po +++ b/locale/ca/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Catalan (http://www.transifex.com/haiwen/seahub/language/ca/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/cs/LC_MESSAGES/djangojs.po b/locale/cs/LC_MESSAGES/djangojs.po index b8668427e1..fbdf5f13dc 100644 --- a/locale/cs/LC_MESSAGES/djangojs.po +++ b/locale/cs/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Czech (http://www.transifex.com/haiwen/seahub/language/cs/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/cs_CZ/LC_MESSAGES/djangojs.po b/locale/cs_CZ/LC_MESSAGES/djangojs.po index 3bad3a36f7..fc81ec8ad0 100644 --- a/locale/cs_CZ/LC_MESSAGES/djangojs.po +++ b/locale/cs_CZ/LC_MESSAGES/djangojs.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/haiwen/seahub/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -20,12 +20,12 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Právě teď" @@ -33,19 +33,19 @@ msgstr "Právě teď" msgid "Name is required" msgstr "Vyžadováno jméno" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Zadejte prosím heslo" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Zadejte prosím heslo znovu" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Heslo je příliž krátké" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Hesla se neshodují" @@ -61,6 +61,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Prosím, zkontrolujte síť." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Nové soubory" @@ -90,35 +115,40 @@ msgstr "Smazané adresáře" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Chyba. Prosím zkontrolujte síť." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -148,12 +178,12 @@ msgstr "Chyba." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Zrušeno." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Neplatná cílová cesta" @@ -206,8 +236,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -223,39 +253,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Chyba oprávnění" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Prosím, zkontrolujte síť." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "" @@ -264,7 +275,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -272,150 +283,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Zavřít (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Nahrávám..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Předchozí (šipkou vlevo)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Následující (šipkou vpravo)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% z %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "Obrázek nejde načíst." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Otebřít na nové kartě" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Heslo je vyžadováno." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Vyžadováno." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Pouze rozšíření, prosím zadejte jméno." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Zpracovávám..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Úspěšně smazán %(name)s." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "Úspěšně smazáno %(name)s a 1 další položka." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Úspěšně smazáno %(name)s a %(amount)s dalších položek." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Smazání selhalo: %(name)." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Smazání selhalo: %(name)s a 1 dalších položek." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Smazání selhalo %(name)s a %(amount)s dalších položek." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Vymazat položky" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Opravdu chcete smazat tyto položky?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Přesunout označenou položku(ky) do:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Zkopírovat označenou položku(ky) do:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "Úspěšně přesunut %(name)s." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "Úspěšně přesunut %(name)s a 1 další položka." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "Úspěšně přesunut %(name)s a %(amount)s dalších položek." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "Úspěšně zkopírován %(name)s." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "Úspěšně zkopírován %(name)s a 1 další položka." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "Úspěšně zkopírován %(name)s a %(amount)s dalších položek." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Interní chyba. Chyba při přesunu %(name)s a %(amount)s další položka(y)." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Interní chyba. Chyba při přesunu %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Interní chyba. Chyba při kopírování %(name)s a %(amount)s další položka(y)." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Interní chyba. Chyba při kopírování %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Přesun souboru %(index)s z %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Kopírování souboru %(index)s ze %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Chyba při přesunu %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Chyba při kopírování %(name)s" @@ -455,10 +466,10 @@ msgstr "Prázdný výsledek nahrávání souboru" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -502,19 +513,19 @@ msgstr "Nahrávání souboru zrušeno" msgid "File Upload failed" msgstr "Nahrávání souboru selhalo" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Chyba při získávání url nahrávání" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Chyba při získávání url aktualizace" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Přepsat soubor {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Soubor je uzamčen" @@ -523,7 +534,7 @@ msgid "Set {placeholder}'s permission" msgstr "Nastavení {placeholder}'s oprávnění" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Vyberte skupiny" @@ -544,32 +555,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "Sdílení úspěšně zrušeno {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -581,11 +598,11 @@ msgstr "Opravdu smazat {lib_name}?" msgid "Delete succeeded." msgstr "Mazání dokončeno." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -593,35 +610,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "Sdílení {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Vypršený" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Skrýt" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Zobraz" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Prosím zadejte dnů." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Prosím zadejte platné dny" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Prosím zadejte nejméně email." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Úspěšně nahráno do {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Chyba při odesílání do {placeholder}" @@ -633,22 +651,26 @@ msgstr "Dokončeno" msgid "Successfully unstared {placeholder}" msgstr "Úspěšně zrušen příznak {placeholder}" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Zadejte prosím 1 a více znaků" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Žádné shody" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Vyhledávám..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Nahrávání selhalo" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/da_DK/LC_MESSAGES/djangojs.po b/locale/da_DK/LC_MESSAGES/djangojs.po index 5934b50393..7dc3a0427d 100644 --- a/locale/da_DK/LC_MESSAGES/djangojs.po +++ b/locale/da_DK/LC_MESSAGES/djangojs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/haiwen/seahub/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Lige nu" @@ -31,19 +31,19 @@ msgstr "Lige nu" msgid "Name is required" msgstr "Navn er nødvendigt" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Indtast venligst kodeord" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Indtast venligst kodeordet igen" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Kodeord er for kort" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Kodeordene er ikke ens" @@ -59,6 +59,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Tjek venligst netværksforbindelsen" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -88,35 +113,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Fejl. Tjek venligst netværksforbindelse." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -146,12 +176,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -204,8 +234,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -221,39 +251,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Tjek venligst netværksforbindelsen" - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "" @@ -262,7 +273,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -270,150 +281,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Luk (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Henter..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Forrige (Venstre piletast)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Næste (Højre piletast)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% af %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "Billedet kunne ikke hentes" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Åben i ny fane" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Kodeord er nødvendigt" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Dette er nødvendigt" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Arbejder..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Slettet med success %(name)s." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "Slettet med success %(name)s og 1 andet object." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Slette med success %(name)s og %(amount)s andre objekter." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -453,10 +464,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -500,19 +511,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -521,7 +532,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -542,32 +553,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -579,11 +596,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -591,35 +608,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -631,22 +649,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/de/LC_MESSAGES/django.po b/locale/de/LC_MESSAGES/django.po index d7164a92b5..fc9f667cc6 100644 --- a/locale/de/LC_MESSAGES/django.po +++ b/locale/de/LC_MESSAGES/django.po @@ -55,8 +55,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 08:59+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:41+0000\n" "Last-Translator: Andreas Vollmer | HU Berlin \n" "Language-Team: German (http://www.transifex.com/haiwen/seahub/language/de/)\n" "MIME-Version: 1.0\n" @@ -65,14 +65,15 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." -msgstr "Benutzer %s ist bereits ein Mitglied der Gruppe." +msgstr "%s ist bereits ein Mitglied der Gruppe." -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "Benutzer %s konnte in Organisation nicht gefunden werden." @@ -99,8 +100,8 @@ msgstr "Falsches Passwort" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Interner Serverfehler" @@ -110,34 +111,34 @@ msgstr "Fehler beim Entschlüsseln der Bibliothek" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Senden des freigegebenen Links ist fehlgeschlagen. Der E-Mail-Dienst ist nicht korrekt konfiguriert. Bitte wenden Sie sich an die Administration." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "Datei" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Es wurde eine Datei freigegeben unter %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "Ordner" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Ein Ordner wurde für Sie freigegeben auf %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Für Sie wurde ein Upload-Link auf %s freigegeben." @@ -146,14 +147,15 @@ msgstr "Für Sie wurde ein Upload-Link auf %s freigegeben." msgid "Password is too short." msgstr "Passwort zu kurz." -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Passwort ist zu kurz" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "File Collaboration Team Organization" @@ -189,7 +191,7 @@ msgid "No activity now or the function is not supported." msgstr "Keine Aktivität, oder Funktion nicht unterstützt." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Bibliothek erstellt" @@ -204,7 +206,8 @@ msgstr "Bibliothek %(library_name)s gelöscht" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -212,8 +215,8 @@ msgstr "Bibliothek %(library_name)s gelöscht" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -229,7 +232,7 @@ msgstr "Fehlgeschlagen. Bitte überprüfen Sie die Netzwerkverbindung." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -255,13 +258,16 @@ msgstr "Wichtige Daten" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -286,13 +292,14 @@ msgstr "Bitte anmelden." #: seahub/auth/forms.py:22 seahub/templates/registration/login.html:10 msgid "Email or Username" -msgstr "E-Mail oder Benutzername" +msgstr "E-Mail-Adresse oder Benutzername" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -306,7 +313,7 @@ msgstr "Passwort" msgid "" "Please enter a correct email/username and password. Note that both fields " "are case-sensitive." -msgstr "Bitte geben Sie Ihre E-Mailadresse bzw. den Benutzernamen korrekt ein. Beachten Sie auch die Groß- und Kleinschreibung in beiden Feldern." +msgstr "Bitte geben Sie Ihre E-Mail-Adresse bzw. den Benutzernamen korrekt ein. Beachten Sie auch die Groß- und Kleinschreibung in beiden Feldern." #: seahub/auth/forms.py:63 msgid "This account is inactive." @@ -320,7 +327,7 @@ msgstr "Ihr Browser scheint keine Cookies zu erlauben. Diese sind aber zum Anmel #: seahub/auth/forms.py:84 msgid "E-mail" -msgstr "E-Mail" +msgstr "E-Mail-Adresse" #: seahub/auth/forms.py:91 msgid "" @@ -341,7 +348,7 @@ msgstr "Das Passwort kann nicht zurückgesetzt werden. Bitte LDAP-Admin benachri #: seahub/auth/forms.py:126 #, python-format msgid "Reset Password on %s" -msgstr "Passwort an %s zurückstellen" +msgstr "Passwort für %s zurücksetzen" #: seahub/auth/forms.py:134 msgid "New password" @@ -352,7 +359,7 @@ msgid "New password confirmation" msgstr "Neues Passwort bestätigen" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Die Passwortfelder stimmen nicht überein." @@ -364,7 +371,7 @@ msgstr "Altes Passwort" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Das alte Passwort, das Sie eingegeben haben, war nicht korrekt. Bitte geben Sie es erneut ein." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Passwort erneut eingeben:" @@ -373,15 +380,19 @@ msgstr "Passwort erneut eingeben:" msgid "Enter a valid e-mail address." msgstr "Bitte eine gültige E-Mail-Adresse eingeben." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "Dieses Konto ist wegen zu vieler fehlgeschlagener Anmeldeversuche gesperrt." + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Abgemeldet" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Versand der E-Mail fehlgeschlagen. Bitte kontaktieren Sie die Administration." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Das Passwort kann nicht aktualisiert werden. Bitte LDAP-Administration benachrichtigen." @@ -468,6 +479,7 @@ msgstr "Aktueller Avatar: " #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -479,24 +491,24 @@ msgstr "Aktueller Avatar: " #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -557,43 +569,48 @@ msgstr "Ihr Avatar ist geändert." msgid "Successfully deleted the requested avatars." msgstr "Avatar ist gelöscht." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "Konto %(account)s is auf %(site)s gesperrt." + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "E-Mail-Adresse" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Benutzername" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Dieser Wert muss 40 Zeichen lang sein." -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Bitte eine gültige E-Mail-Adresse eingeben." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Benutzer/in mit dieser E-Mail-Adresse ist bereits vorhanden" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Ungültiger Benutzername." -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "Name" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "Abteilung" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "Telefon" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "Anmerkung" @@ -662,7 +679,7 @@ msgid "Recovered deleted directory" msgstr "Gelöschter Ordner wieder hergestellt" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Bibliotheksname oder -beschreibung geändert." @@ -710,22 +727,22 @@ msgstr[1] "vor %(seconds)d Sekunden" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -738,21 +755,21 @@ msgstr "Lesen + Schreiben" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -795,7 +812,7 @@ msgstr "%s PB" #: seahub/contacts/models.py:77 #: seahub/contacts/templates/contacts/contact_list.html:119 msgid "Email is required." -msgstr "E-Mail ist erforderlich." +msgstr "E-Mail-Adresse ist erforderlich." #: seahub/contacts/templates/contacts/contact_list.html:4 #: seahub/contacts/templates/contacts/contact_list.html:10 @@ -810,7 +827,7 @@ msgstr "Kontakte hinzufügen" #: seahub/contacts/templates/contacts/contact_list.html:17 msgid "Email " -msgstr "E-Mail " +msgstr "E-Mail-Adresse" #: seahub/contacts/templates/contacts/contact_list.html:18 #: seahub/group/templates/group/group_wiki.html:46 @@ -824,15 +841,16 @@ msgstr "E-Mail " #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -860,7 +878,7 @@ msgstr "E-Mail " #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Name" @@ -905,11 +923,11 @@ msgstr "Aktion" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -930,21 +948,21 @@ msgstr "Bearbeiten" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -976,8 +994,9 @@ msgstr "Fügen Sie Kontakte hinzu, um schneller Bibliotheken freizugeben oder Li #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -987,10 +1006,10 @@ msgstr "Fügen Sie Kontakte hinzu, um schneller Bibliotheken freizugeben oder Li #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" -msgstr "E-Mail" +msgstr "E-Mail-Adresse" #: seahub/contacts/templates/contacts/contact_list.html:46 #: seahub/contacts/templates/contacts/contact_list.html:55 @@ -1030,7 +1049,7 @@ msgstr "Sie können sich nicht selbst hinzufügen." #: seahub/contacts/views.py:67 #, python-format msgid "%s is not a valid email." -msgstr "%s ist keine gültige E-Mail." +msgstr "%s ist keine gültige E-Mail-Adresse." #: seahub/contacts/views.py:72 #, python-format @@ -1086,17 +1105,17 @@ msgstr "Beschreibung ist zu lang (maximal 100 Zeichen)" msgid "Name %s is not valid" msgstr "Name %s ist ungültig" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Argument fehlt" @@ -1119,7 +1138,7 @@ msgstr "Name „%s“ ist nicht gültig" #: seahub/forms.py:135 seahub/share/forms.py:19 seahub/share/forms.py:32 msgid "Email is required" -msgstr "E-Mail wird benötigt" +msgstr "E-Mail-Adresse ist erforderlich" #: seahub/forms.py:137 msgid "Space quota can't be empty" @@ -1158,7 +1177,7 @@ msgid "Permission error: only group staff can add member" msgstr "Weitergehende Rechte erforderlich: Nur mit Administrationsrecht können Mitglieder hinzugefügt werden" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Die Gruppe ist nicht vorhanden" @@ -1308,16 +1327,16 @@ msgstr "Bitte eine Bibliothek auswählen." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1394,21 +1413,21 @@ msgstr "Name erforderlich." msgid "Description is required." msgstr "Beschreibung erforderlich." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Zugriff verweigert" @@ -1469,7 +1488,7 @@ msgstr "Das Wiki ist nicht vorhanden." #: seahub/group/views.py:517 seahub/group/views.py:542 #: seahub/views/wiki.py:160 seahub/views/wiki.py:183 msgid "Failed to create home page. Please retry later" -msgstr "Anlegen der Seite fehlgeschlagen. Bitte versuchen Sie es später erneut." +msgstr "Erstellen der Seite fehlgeschlagen. Bitte versuchen Sie es später erneut." #: seahub/group/views.py:533 seahub/views/wiki.py:174 msgid "Failed to set wiki library." @@ -1706,7 +1725,7 @@ msgstr "Sie können nun lokal Dateien zu der Bibliothek hinzufügen. Die Dateien #: seahub/help/templates/help/help_install_v2.html:32 msgid "4. (Optional) Create a library" -msgstr "4. (optional) Eine Bibliothek anlegen" +msgstr "4. (optional) Eine Bibliothek erstellen" #: seahub/help/templates/help/help_install_v2.html:34 msgid "You can also create a library from a local folder." @@ -1761,11 +1780,14 @@ msgstr "Ende" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Benutzer/innen" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1773,9 +1795,11 @@ msgstr "Info" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1786,12 +1810,16 @@ msgid "Libraries" msgstr "Bibliotheken" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Aktive Benutzer/innen" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1851,12 +1879,12 @@ msgstr "Eigene Bibliotheken" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1869,11 +1897,11 @@ msgid "Size" msgstr "Größe" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1883,7 +1911,7 @@ msgid "Last Update" msgstr "Letzte Änderung" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1908,13 +1936,13 @@ msgstr "Bibliotheks-Icon" #: seahub/institutions/templates/institutions/user_info.html:92 #: seahub/templates/sysadmin/userinfo.html:112 msgid "This user has not created any libraries" -msgstr "Benutzer/in hat keine Bibliotheken angelegt" +msgstr "Benutzer/in hat keine Bibliotheken erstellt" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Rolle" @@ -1923,15 +1951,15 @@ msgstr "Rolle" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Erstellt am" #: 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 "Benutzer/in ist nicht Mitglied einer Gruppe und hat keine angelegt" +msgstr "Benutzer/in ist nicht Mitglied einer Gruppe und hat keine erstellet" #: seahub/institutions/templates/institutions/useradmin.html:17 #: seahub/templates/sysadmin/sys_inst_info_user.html:15 @@ -1939,7 +1967,7 @@ msgstr "Benutzer/in ist nicht Mitglied einer Gruppe und hat keine angelegt" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Status" @@ -1959,7 +1987,7 @@ msgstr "Erstellt am /\nLetzte Anmeldung" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Aktiv" @@ -1971,7 +1999,7 @@ msgstr "Aktiv" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Inaktiv" @@ -1980,7 +2008,7 @@ msgstr "Inaktiv" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Leer" @@ -1998,33 +2026,32 @@ msgstr "Benutzer/in löschen" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Eigentümer/in" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Administration" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Mitglied" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s ist gelöscht." -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Löschen fehlgeschlagen: Benutzer/in nicht gefunden." @@ -2048,6 +2075,7 @@ msgstr "Nachricht" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Zeit" @@ -2094,16 +2122,22 @@ msgid "Send a message..." msgstr "Nachricht senden …" #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Vorherige" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2120,18 +2154,20 @@ msgstr "Möchten Sie die Diskussion wirklich löschen?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Ja" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Nein" @@ -2173,57 +2209,66 @@ msgid "Virus detected on %s" msgstr "Virus auf %s gefunden" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Neue Mitteilungen auf %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Interner Fehler" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Die Datei %(file_name)s wurde in %(name)s hochgeladen." -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Eine Datei mit dem Namen %(file_name)s wurde in die Bibliothek Deleted Library hochgeladen." -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s hat die Bibliothek %(repo_name)s für Sie freigegeben." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "%(user)s hat die Bibliothek %(repo_name)s für die Gruppe %(group_name)s freigegeben." + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "%(user)s hat Ihnen eine neue Nachricht geschickt." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s hat eine neue Diskussion." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s hat eine neue Diskussion begonnen in %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s hat die Gruppenmitgliedschaft für die Gruppe %(group_name)s angefragt, Bestätigungsnachricht: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2271,11 +2316,19 @@ msgstr "%(user)s hat eine Bibliothek namens #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "%(user)s hat die Bibliothek %(lib_name)s für die Gruppe %(group_name)s freigegeben." + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Sie haben eine neue Nachricht von %(user)s erhalten." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2283,7 +2336,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "Die Datei names %(file_name)s wurde in den Ordner %(folder_name)s hochgeladen." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2291,14 +2344,14 @@ msgid "" "message: %(msg)s" msgstr "%(user)s hat gebeten, in die Gruppe %(grp_name)s aufgenommen zu werden, Bestätigungsnachricht: %(msg)s." -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "Benutzer/in %(user)s hat Sie zu der Gruppe %(grp_name)s hinzugefügt" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Bitte besuchen Sie die folgende Seite:" @@ -2328,6 +2381,7 @@ msgid "Delete Notification" msgstr "Mitteilung löschen" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2335,6 +2389,7 @@ msgstr "Mitteilung löschen" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Guten Tag," @@ -2403,14 +2458,17 @@ msgstr "Profileinstellungen" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Einstellungen" @@ -2463,7 +2521,7 @@ msgstr "E-Mail-Kontakt:" #: seahub/profile/templates/profile/set_profile.html:51 msgid "Your notifications will be sent to this email." -msgstr "Benachrichtigungen werden an diese E-Mailadresse geschickt." +msgstr "Benachrichtigungen werden an diese E-Mail-Adresse geschickt." #: seahub/profile/templates/profile/set_profile.html:56 msgid "Department:" @@ -2644,40 +2702,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "E-Mail darf nicht länger als 512 Zeichen sein" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "Passwort darf nicht leer sein" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Bitte geben sie ein korrektes Passwort ein. " +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "Ihr Code lautet %(code)s. Er ist für eine Stunde gültig." + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Links – Freigaben" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Download-Links" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Upload-Links" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Bibliothek" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Aufrufe" @@ -2688,7 +2752,7 @@ msgstr "Ablaufdatum" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2704,7 +2768,7 @@ msgstr "Anzeigen" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2737,7 +2801,7 @@ msgid "Folders - Share" msgstr "Ordner – Freigaben" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Ordner" @@ -2748,15 +2812,15 @@ msgstr "Von mir freigegeben für" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Rechte" @@ -2820,177 +2884,213 @@ msgid "" "You can share libraries to your friends and colleagues by clicking the share" " icon of your own libraries in your home page or creating a new library in " "groups you are in." -msgstr "Mit dem „Freigeben“-Icon können Sie Ihre eigenen Dateien und Bibliotheken an andere weitergeben. \nSie können auch eine ganz neue Bibliothek in einer Ihrer Gruppen anlegen und diese freigeben." +msgstr "Mit dem „Freigeben“-Icon können Sie Ihre eigenen Dateien und Bibliotheken an andere weitergeben. \nSie können auch eine ganz neue Bibliothek in einer Ihrer Gruppen erstellen und diese freigeben." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "E-Mail-Bestätigung" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "Bitte geben Sie Ihre E-Mail-Adresse zum Fortfahren ein." + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "Code abrufen" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "Bestätigungs-Code" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "Ein Bestätigungs-Code ist an die angegebene E-Mail-Adresse verschickt worden." + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Freigeben an alle Mitglieder ist fehlgeschlagen, bitte versuchen Sie es später wieder." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Für alle Mitglieder freigegeben. Sie können den Status unter Freigaben prüfen." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Die Bibliothek kann nur von der Eigentümerin oder dem Eigentümer freigegeben werden." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "Die Bibliothek ist nicht vorhanden" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Ungültiges Argument" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Argument ist nicht gültig." -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Entfernen der Freigabe fehlgeschlagen" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "Gruppenkennung ist ungültig" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Die Freigabe konnte nicht rückgängig gemacht werden: Gruppe ist nicht vorhanden." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Freigabe ist entfernt." -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "Alle Mitglieder" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Der Link ist nicht vorhanden." -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Interner Serverfehler. Oder überprüfen Sie die eingegebene/n E-Mail-Adresse/n." -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Bitte wählen Sie einen Ordner aus." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Erfolgreich gespeichert." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "Senden des freigegebenen Upload-Links ist fehlgeschlagen. Der E-Mail-Dienst ist nicht korrekt konfiguriert. Bitte wenden Sie sich an die Administration." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "Sie haben nicht die erforderlichen Rechte, um einen Freigabe-Link zu erstellen" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Ungültige Argumente" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Die Bibliothek ist nicht vorhanden." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "Der Ordner ist nicht vorhanden." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" -msgstr "Bitte überprüfen Sie die eingegebene/n E-Mail-Adresse/n." +msgstr "Bitte überprüfen Sie die E-Mail-Adresse/n, die Sie eingegeben haben." + +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "Die E-Mail-adresse ist nicht gültig" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "Freigabe-Link nicht gefunden" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "Bestätigungs-Code für den Aufruf von Freigabe-Links" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "Der Bestätigungs-Code konnte nicht verschickt werden, bitte versuchen Sie es später noch einmal." #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Es tut uns leid, aber die angefragte Seite wurde nicht gefunden." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "System-Administration verlassen" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Schließen" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Mitteilungen" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Alle Mitteilungen" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "Profil und weiteres ansehen" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Abmelden" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "System-Administration" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Diese Version von IE wird nicht länger unterstützt. Bitte aktualisieren Sie auf Version 10 oder höher." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Mitteilungen" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Willkommen bei Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile verwaltet Dateien in Bibliotheken. Jede Bibliothek kann synchronisiert und separat freigeben werden. Wir haben hier bereits eine persönliche Bibliothek für Sie erstellt, Sie können aber natürlich weitere Bibliotheken hinzufügen." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2998,7 +3098,7 @@ msgid "" msgstr "Seafile verwaltet Dateien in Bibliotheken. Jede Bibliothek kann synchronisiert und separat freigegeben werden. Da Sie als Gast angemeldet sind, können Sie leider keine neuen Bibliotheken erstellen." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Registrieren" @@ -3028,28 +3128,31 @@ msgid "Please enter the password." msgstr "Bitte das Passwort eingeben." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Herunterladen" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Nutzungsdaten" @@ -3058,9 +3161,12 @@ msgstr "Nutzungsdaten" msgid "Current Path:" msgstr "Aktueller Pfad:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Benutzer/in" @@ -3070,11 +3176,16 @@ msgstr "Benutzer/in" msgid "Type" msgstr "Typ" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP-Adresse" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Name des Geräts" @@ -3088,6 +3199,7 @@ msgstr "Nutzer/in anonym" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3113,10 +3225,6 @@ msgstr "Entwurf gespeichert." msgid "is encrypted" msgstr "ist verschlüsselt" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Passwort: " - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "Das Passwort wird nur für eine Stunde auf dem Server behalten." @@ -3241,7 +3349,7 @@ msgstr "Spalten" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Standard" @@ -3266,10 +3374,10 @@ msgid "Password is required." msgstr "Passwort erforderlich." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Versionen" @@ -3365,85 +3473,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Über uns" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Dateien" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Meine Bibliotheken" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Für mich freigegeben" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" msgstr "Organisation" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Alle Gruppen" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "Werkzeuge" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Module aktivieren" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Favoriten" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Aktivitäten" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Mein Wiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Geräte" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Freigaben verwalten" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Links" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Ordner hochladen" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Befristung hinzufügen" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Tage" @@ -3461,18 +3574,12 @@ msgid "Shared Libs" msgstr "Freigegebene Bibliotheken" #: 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" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" msgstr "Neuer Ordner" -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Ordnername" - #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Neue Datei" @@ -3490,8 +3597,7 @@ msgstr "einfaches Markup Format." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Details" @@ -3555,7 +3661,123 @@ msgstr "Ersetzen" msgid "Don't replace" msgstr "Nicht ersetzen" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organisationen" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "Einrichtungen" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Datenvolumen" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Protokolle" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Viren-Scan" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "System-Info" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Professional Edition" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "läuft ab am" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Community Edition" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Upgrade auf die Pro Edition" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Maximum" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "Desktop" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "Mobilgerät" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "Fehlermeldungen" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Plattform" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "Version" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Letzter Zugriff" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "Keine Geräte verbunden" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Link entfernen" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Aufräumen" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "Gerät" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Fehler" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "Keine Fehler beim Synchronisieren" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Neue Bibliothek" @@ -3569,13 +3791,14 @@ msgid "Encrypt" msgstr "Verschlüsseln" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(mindestens %(repo_password_min_length)s Zeichen)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Passwort erneut eingeben" @@ -3585,34 +3808,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Fehler (bitte wenden Sie sich zur Wiederherstellung dieser Bibliothek an Ihre Administration)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Freigeben" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Weitere Aktionen" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Umbenennen" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3635,58 +3858,59 @@ msgid "Folder Permission" msgstr "Ordner-Freigabe" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Verschieben" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Kopieren" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Hochladen" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Dateien hochladen" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Neuer Ordner" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Liste" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "Listenansicht" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Gitter" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "Gitteransicht" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3694,175 +3918,177 @@ msgstr "Gitteransicht" msgid "Trash" msgstr "Papierkorb" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Unter-Bibliotheken" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "Aktionen" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Weitere Aktionen" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Lokal öffnen" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "Favorit" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "Kein Favorit" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "gesperrt" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Entsperren" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Sperren" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Abholen gescheitert" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Download-Link" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Upload-Link" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Freigabe für Benutzer/in" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Freigabe für Gruppe" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Passwort hinzufügen" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(mindestens %(share_link_password_min_length)s Zeichen)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Anzeigen" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Zufälliges Passwort erstellen" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Erstellen" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Link: " -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Download-Link:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Senden" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Senden an:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "E-Mail-Adressen, getrennt durch Komma" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Nachricht (optional):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Wird gesendet …" -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Sie können diesen Upload-Link an andere weitergeben. \nAlle, die über diesen Link verfügen, können Dateien in den Ordner hochladen." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Upload-Link: " -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Gruppe" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Freigegebene Bibliothek verlassen" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3873,182 +4099,191 @@ msgstr "Wiki" msgid "Members" msgstr "Mitglieder" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Diskussionen" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Benutzer-Rechte" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Gruppenrechte" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "Symbol" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Favoriten-Markierung entfernen" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "Art der Bibliothek" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Freigegeben von" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Bibliotheken zum Freigeben auswählen" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Gelöschte Bibliothek" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Änderungsdetails" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Dateien suchen in diesem Wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Dateien suchen in dieser Bibliothek" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Dateien suchen" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "erweitert" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "Für diese Gruppe sind keine Bibliotheken freigegeben" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "Eigentümer/in" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "Admin" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Antworten" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "Wiki hinzufügen" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "Wiki entfernen" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Mitglieder importieren" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "Mitglieder verwalten" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Löschen" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Gruppe verlassen" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Gruppe umbenennen in" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Gruppe übertragen auf" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Gruppenmitglieder per CSV importieren" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Dateiformat: user@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "Hinzufügen" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "Die Einstellungen von Versionen für Bibliotheken ist von der Administration nicht freigegeben" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Alle Versionen speichern" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Versionen nicht speichern" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Versionen nur für einen bestimmten Zeitraum speichern:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "Tage" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Erstellt von" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Ordner" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Ordner auswählen" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Altes Passwort" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Neues Passwort (mindestens %(repo_password_min_length)s Zeichen)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Neues Passwort" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Passwort erneut eingeben" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Link entfernen" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Alle Mitteilungen" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4065,6 +4300,11 @@ msgstr "Sie können eine Bibliothek erstellen um Ihre Dateien zu organisieren. Z msgid "No library is shared to you" msgstr "Für Sie sind keine Bibliotheken freigegeben" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organisation" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Bibliothek hinzufügen" @@ -4111,15 +4351,11 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "In einer Gruppe können alle Mitglieder Nachrichten austauschen und gemeinsam an Dateien und Bibliotheken arbeiten. Gruppen, denen Sie angehören, werden hier aufgelistet." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Gruppenname" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " "\"Share\" icon on your libraries list." -msgstr "Sie können eine Bibliothek freigeben, indem Sie in der Liste Ihrer vorhandenen Bibliotheken auf das Freigeben-Icon klicken oder hier oben eine „Neue Bibliothek“ anlegen." +msgstr "Sie können eine Bibliothek freigeben, indem Sie in der Liste Ihrer vorhandenen Bibliotheken auf das Freigeben-Icon klicken oder hier oben eine „Neue Bibliothek“ erstellen." #: seahub/templates/libraries.html:109 msgid "" @@ -4154,14 +4390,6 @@ msgid "" " page, and they will be listed here." msgstr "Markieren Sie häufig benutzte Dateien, indem Sie den Favoriten-Stern auf der Seite der jeweiligen Datei oder der Liste anklicken. Favoriten werden hier angezeigt." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Plattform" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Letzter Zugriff" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "Bibliotheken" @@ -4191,7 +4419,7 @@ msgstr "Um Ihr Benutzerkonto zu aktivieren, klicken Sie in den nächsten %(expir #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4211,33 +4439,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Nicht lesbar? Jetzt aktualisieren." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "E-Mail-Adresse oder Passwort sind falsch" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Für %(remember_days)s Tage an mich erinnern" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "CAPTCHA-Aktualisierung fehlgeschlagen, bitte versuchen Sie es später noch einmal." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "E-Mailadresse bzw. Benutzername darf nicht leer sein" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4278,10 +4506,6 @@ msgstr "Bitte aktualisieren Sie Ihr Passwort, bevor Sie fortfahren." msgid "Current Password" msgstr "Aktuelles Passwort" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Neues Passwort" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4373,7 +4597,7 @@ msgstr "Ihre E-Mail-Adresse, welche Sie beim Anmelden verwendet haben: " #: seahub/templates/registration/password_reset_form.html:12 msgid "We will send you an email to set new password" -msgstr "Wir werden Ihnen eine E-Mail senden, um das neue Passwort zu setzen." +msgstr "Zur Änderung des Passworts schicken wir Ihnen eine E-Mail." #: seahub/templates/registration/registration_complete.html:4 #: seahub/templates/shibboleth/complete.html:4 @@ -4411,18 +4635,13 @@ msgstr "Registrieren" #: seahub/templates/registration/registration_form.html:84 #: seahub/templates/sysadmin/sys_useradmin.html:153 msgid "Email cannot be blank" -msgstr "E-Mail-Adress darf nicht leer sein" +msgstr "E-Mail-Adresse darf nicht leer sein" #: seahub/templates/repo_dir_recycle_view.html:7 #, python-format msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Papierkorb" -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "Aufräumen" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Löschzeit" @@ -4444,12 +4663,12 @@ msgid "1 month ago" msgstr "vor 1 Monat" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Erfolg" @@ -4679,7 +4898,7 @@ msgid "Please enter password" msgstr "Bitte geben Sie ein Passwort ein" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Erfolgreich gelöscht." @@ -4820,6 +5039,15 @@ msgstr "Favoriten" msgid "Successfully unstarred." msgstr "Favoriten-Markierung ist entfernt." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Neuer Ordner" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Ordnername" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "Schließen" @@ -4845,88 +5073,62 @@ msgstr "Datei Upload fehlgeschlagen" msgid "Failed to get upload url" msgstr "Der Upload-Link konnte nicht abgerufen werden" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Datei ist zu groß" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Datei ist zu klein" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Dateityp is nicht erlaubt" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Maximale Anzahl Dateien wurde überschritten" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Hochgeladene Bytes überschreitet tatsächliche Dateigröße " -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Leere Datei hochgeladen" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Fehler" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "hochgeladen" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "abgebrochen" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Start" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Erforderlich." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organisationen" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "Einrichtungen" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Datenvolumen" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Protokolle" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Viren-Scan" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Ersteller/in" @@ -4978,6 +5180,13 @@ msgstr "Bibliothek löschen" msgid "Files / Size" msgstr "Dateien / Größe" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "Hinweis: Einstellungen per Weboberfläche werden in einer Datenbanktabelle gespeichert (seahub-db/constance_config) und habe höhere Priorität als Einstellungen in den Config-dateien." + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Zum Fortfahren das Passwort bestätigen" @@ -5008,10 +5217,6 @@ msgstr "Gruppeninfo" msgid "No library has shared to this group" msgstr "Für diese Gruppe sind keine Bibliotheken freigegeben" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "Admin" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -5023,30 +5228,6 @@ msgstr "Excel-Export" msgid "Delete Group" msgstr "Gruppe löschen" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "System-Info" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Professional Edition" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "läuft ab am" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Community Edition" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Upgrade auf die Pro Edition" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Maximum" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "Alle Einrichtungen" @@ -5210,12 +5391,12 @@ msgid "Max User Number" msgstr "Maximale Benutzerzahl" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Eingabe sollte eine Zahl sein" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "Eingabe sollte eine Zahl größer als 0 sein" @@ -5355,7 +5536,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP (Import)" @@ -5368,7 +5549,7 @@ msgid "Admins" msgstr "Admins" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Letzte Anmeldung" @@ -5394,7 +5575,7 @@ msgstr "Sie können Benutzer/innen auch als Gäste hinzufügen. Diese können da #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Gast" @@ -5482,6 +5663,12 @@ msgstr "E-Mail: %(email)s" msgid "Password: %(password)s" msgstr "Passwort: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "Konto %(user)s ist wegen zu vieler fehlgeschlagener Anmeldeversuche gesperrt. Bitte überprüfen auf:" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5559,24 +5746,24 @@ msgstr "zu" msgid "Sorry, this user is not registered yet." msgstr "Benutzer/in hat sich leider noch nicht registriert." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Aktueller Pfad: " -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "Datei wurde aktualisiert" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Zurück zum Anfang" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "oben" @@ -5672,8 +5859,8 @@ msgstr "Ungültige Argumente" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -5702,8 +5889,8 @@ msgid "Duplicated filename" msgstr "Doppelter Dateiname" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Die Datei ist nicht vorhanden" @@ -5762,11 +5949,11 @@ msgstr "Freigeben von „%s“ ist fehlgeschlagen." msgid "No revisions found" msgstr "Keine Revisionen gefunden" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Fehlerhafte Sperrung prüfen" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "Datei ist gesperrt" @@ -5794,12 +5981,12 @@ msgstr "%(path)s wurde zum Hauptverzeichnis zurückgeset msgid "\"%s\" does not exist." msgstr "„%s“ ist nicht vorhanden." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Interner Fehler" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "„%s“ konnte nicht heruntergeladen werden, da der Ordner zu groß ist." @@ -5809,11 +5996,11 @@ msgstr "„%s“ konnte nicht heruntergeladen werden, da der Ordner zu groß ist msgid "Unable to download \"%s\"" msgstr "„%s“ konnte nicht heruntergeladen werden" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "„Persönliches Wiki“ ist aktiviert." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "„Persönliches Wiki“ ist deaktiviert." @@ -5830,7 +6017,7 @@ msgid "The group doesn't exist" msgstr "Die Gruppe ist nicht vorhanden." #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Diese Bibliothek ist verschlüsselt." @@ -5908,262 +6095,266 @@ msgstr "Die Blockliste konnte nicht abgerufen werden" msgid "Wrong repo id" msgstr "Falsche Bibliotheks-ID" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Fehlgeschlagen" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Falscher Schlüssel im Upload-Link." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Falsche Bibliotheks-ID im Upload-Link." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Kein Konflikt bei der Zusammenführung." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Kann Bibliotheksinformationen nicht ändern." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Speichern der Einstellungen auf dem Server fehlgeschlagen" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Einstellungen gespeichert." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Benutzername %s ist ungültig." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "%s nicht als Benutzer/in gefunden." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "%s nicht als Benutzer/in in der aktuellen Organisation gefunden." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "Die Bibliothek kann nicht auf Benutzer/in %s der Organisation übertragen werden." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Ändern des Passworts fehlgeschlagen. Sie sind nicht die Eigentümerin oder der Eigentümer." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Ungültige Ordner-Rechte. Diese sollten „rw“ oder „r“ sein." -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "Pfad sollte mit „/“ starten." -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "Pfad sollte nicht mit „/“ enden." -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Ungültiger Pfad" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Benutzer/in ungültig, sollte erst registriert werden." -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Aktion fehlgeschlagen" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Ungültige Ordner-Rechte" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Bitte zuerst die Ordner-Rechte setzen." -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" -msgstr "Bitte überprüfen Sie die eingegebene/n E-Mail-Adresse/n und die ausgewählten Kontakte." +msgstr "Bitte überprüfen Sie die E-Mail-Adresse/n, die Sie eingegeben haben, und die ausgewählten Kontakte." -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Ungültige Gruppe" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "Gruppe ist nicht vorhanden." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Fehlgeschlagen, Datei ist zu groß" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTP-Fehler: Datei konnte online nicht geöffnet werden" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "Adressefehler: Datei konnte online nicht geöffnet werden" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "Der gewählte Zeichensatz ist ungültig." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Unbekannte Datenkodierung" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "Dateien größer als %s, können online nicht geöffnet werden." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "Die Bibliothek ist verschlüsselt und kann nicht online geöffnet werden." -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Kann die Datei nicht anzeigen" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Ungültiges Dateiformat." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "Kann die Datei nicht herunterladen, ungültiger Pfad" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "Kann die Datei nicht herunterladen, falscher Pfad" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "Die Datei konnte nicht heruntergeladen werden: Das Datenvolumen für freigegebene Links ist aufgebraucht." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "RAW-Datei kann nicht angezeigt werden. Das Datenvolumen des Freigabe-Links ist verbraucht." + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "Die Bibliothek ist nicht vorhanden." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "Diese Bibliothek ist verschlüsselt." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Die Datei kann nicht bearbeitet werden" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Die Datei ist nicht vorhanden." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Onlinebearbeitung ist für diesen Dateityp nicht verfügbar." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Kann die Datei nicht herunterladen" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Auf die Datei kann nicht zugegriffen werden: Das Datenvolumen ist aufgebraucht." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "Herunterladen nicht möglich: Ordner nicht gefunden." -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "Bibliothek kann nicht angezeigt werden" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "Bibliothek kann nicht angezeigt werden, der Pfad zum Ordner ist falsch." -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Benutzername ungültig" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "Excel-Export fehlgeschlagen" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Quota konnte nicht gesetzt werden: Maximale Quota ist %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Quota konnte nicht gesetzt werden: Interner Fehler" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" -msgstr "Löschen fehlgeschlagen: Benutzer/in hat eine Organisation angelegt." +msgstr "Löschen fehlgeschlagen: Benutzer/in hat eine Organisation erstellt." -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Probezeit für %s ist entfernt." -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "%s sind die Adminrechte entzogen." -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Adminrechte konnten nicht entzogen werden: Benutzer/in nicht gefunden." -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Ihr Benutzerkonto auf %s wurde aktiviert" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "Passwort auf %s wurde zurückgesetzt" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Passwort auf %(passwd)s gesetzt, eine E-Mail wurde an %(user)s gesendet." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Passwort erfolgreich auf %(passwd)s gesetzt, aber es konnte keine E-Mail an %(user)s gesendet werden. Bitte überprüfen Sie die Konfiguration Ihres E-Mail-Dienstes." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Passwort von %(user)s auf %(passwd)s zurückgesetzt." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6171,107 +6362,107 @@ msgid "" "configured." msgstr "Passwort von %(user)s erfolgreich auf %(passwd)s zurückgesetzt. Es konnte jedoch keine E-Mail gesendet werden, da der E-Mail-Dienst nicht korrekt konfiguriert ist." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Zurücksetzen des Passworts fehlgeschlagen: Benutzer/in nicht gefunden" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Sie wurden eingeladen %s beizutreten" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Hinzufügen des Kontakts %s fehlgeschlagen." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "%s wurde hinzugefügt und per E-Mail benachrichtigt." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "%s wurde erfolgreich hinzugefügt. Es trat jedoch ein Fehler beim Senden der Benachrichtigung auf. Bitte überprüfen Sie die Konfiguration Ihres E-Mail-Dienstes." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "%s wurde hinzugefügt." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "%s wurde erfolgreich hinzugefügt. Es konnte jedoch keine Benachrichtigung gesendet werden, da der E-Mail-Dienst nicht korrekt konfiguriert ist." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Fehler beim Umbenennen der Organisation" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Erfolgreich gelöscht." -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Übertragung fehlgeschlagen, Argumente ungültig." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Übertragung fehlgeschlagen: Benutzer/in %s nicht gefunden" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "Die Bibliothek der Organisation kann nicht übertragen werden" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "Die Bibliothek kann nicht auf Benutzer/in %s der Organisation übertragen werden." -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Übertragung erfolgreich." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "Eine System-Bibliothek kann nicht gelöscht werden. " -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Löschen fehlgeschlagen, versuchen Sie es bitte später noch einmal." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s hat die Adminrechte verliehen bekommen." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "%s konnten die Adminrechte nicht verliehen werden: Benutzer/in nicht gefunden." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Import erfolgreich" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Bitte zuerst eine CSV-Datei auswählen." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Ungültige Einstellung" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Ungültiger Wert" diff --git a/locale/de/LC_MESSAGES/djangojs.po b/locale/de/LC_MESSAGES/djangojs.po index f0b8cfc1f1..6e3316e574 100644 --- a/locale/de/LC_MESSAGES/djangojs.po +++ b/locale/de/LC_MESSAGES/djangojs.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 20:52+0000\n" -"Last-Translator: 1resu \n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:02+0000\n" +"Last-Translator: Andreas Vollmer | HU Berlin \n" "Language-Team: German (http://www.transifex.com/haiwen/seahub/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,12 +24,12 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Gerade eben" @@ -37,19 +37,19 @@ msgstr "Gerade eben" msgid "Name is required" msgstr "Name erforderlich" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Bitte geben Sie ein Passwort ein" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Bitte geben Sie das Passwort erneut ein" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Passwort ist zu kurz" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Passwörter stimmen nicht überein" @@ -65,6 +65,31 @@ msgstr "Bibliothek zum Lesen + Schreiben" msgid "Read-Only library" msgstr "Bibliothek nur zum Lesen" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Bitte überprüfen Sie die Netzwerkverbindung." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Neue Dateien" @@ -94,35 +119,40 @@ msgstr "Gelöschte Ordner" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Fehlgeschlagen. Bitte überprüfen Sie die Netzwerkverbindung." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "%(name)s ist umbenannt" @@ -152,12 +182,12 @@ msgstr "Fehlgeschlagen." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Abgebrochen." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Ungültiger Zielpfad" @@ -210,10 +240,10 @@ msgid "{placeholder} Folder Permission" msgstr "{placeholder} Rechte des Ordners" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" -msgstr "Name oder E-Mail eingeben und Enter drücken" +msgstr "Name oder E-Mail-Adresse eingeben und Enter drücken" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:94 #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:105 @@ -227,39 +257,20 @@ msgstr "Gruppe auswählen" #: 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Berechtigungsfehler" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Bitte überprüfen Sie die Netzwerkverbindung." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "Wählen Sie ein Verzeichnis und klicken es an" @@ -268,7 +279,7 @@ msgstr "Wählen Sie ein Verzeichnis und klicken es an" msgid "{placeholder} History Setting" msgstr "{placeholder} Einstellungen der Versionen" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "Versionen für die Bibliothek sind eingestellt" @@ -276,150 +287,150 @@ msgstr "Versionen für die Bibliothek sind eingestellt" msgid "{placeholder} Share Links" msgstr "{placeholder} Links freigeben" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Schließen (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Wird geladen …" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Zurück (Linke Pfeiltaste)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Weiter (Rechte Pfeiltaste)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% von %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "Das Bild konnte nicht geladen werden." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "In neuem Tab öffnen" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Passwort erforderlich." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Erforderlich." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Nur eine Erweiterung vorhanden, bitte einen Namen angeben." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Verarbeiten …" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "%(name)s ist gelöscht." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "%(name)s und ein weiteres Objekt sind gelöscht." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "%(name)s und %(amount)s weitere Objekte sind gelöscht." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Fehler beim Löschen von: %(name)s" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Fehler beim Löschen von %(name)s und einem anderen Objekt." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Fehler beim Löschen von %(name)s und %(amount)s anderen Objekten." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Einträge löschen" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Möchten Sie die ausgewählten Dateien wirklich löschen?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Auswahl verschieben nach:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Auswahl kopieren nach:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "%(name)s ist verschoben." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "%(name)s und ein weiteres Objekt sind verschoben." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "%(name)s und %(amount)s weitere Objekte sind verschoben." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "%(name)s ist kopiert." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "%(name)s und ein weiteres Objekt sind kopiert." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "%(name)s und %(amount)s weitere Objekte sind kopiert." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Interner Fehler. %(name)s und %(amount)s andere Objekte konnten nicht verschoben werden." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Interner Fehler. %(name)s konnte nicht verschoben werden." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Interner Fehler. %(name)s und %(amount)s andere Objekte konnten nicht kopiert werden." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Interner Fehler. %(name)s konnte nicht kopiert werden." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Verschiebe Datei %(index)s von %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Kopiere Datei %(index)s von %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Fehler beim Verschieben von %(name)s." -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Fehler beim Kopieren von %(name)s." @@ -459,10 +470,10 @@ msgstr "Leere Datei hochgeladen" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -504,21 +515,21 @@ msgstr "Datei Upload abgebrochen" #: static/scripts/app/views/fileupload.js:49 msgid "File Upload failed" -msgstr "Datei Upload fehlgeschlagen" +msgstr "Datei-Upload fehlgeschlagen" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Der Upload-Link konnte nicht abgerufen werden" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Der Update-Link konnte nicht abgerufen werden" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Datei {filename} austauschen?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Datei ist gesperrt" @@ -527,7 +538,7 @@ msgid "Set {placeholder}'s permission" msgstr "Rechte von {placeholder} festlegen" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Gruppen auswählen" @@ -548,32 +559,38 @@ msgstr "{placeholder} Mitglieder" msgid "Successfully unshared {placeholder}" msgstr "Freigabe von {placeholder} ist aufgehoben." -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "Sie können keine weiteren Optionen auswählen" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "Die Gruppe ist übertragen. Sie sind nun ein Gruppenmitglied mit normalen Rechten." + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "Bitte wählen Sie eine CSV-Datei" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "Import erfolgreich." -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "Gruppe löschen" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "Möchten Sie die Gruppe wirklich löschen?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "Gruppe verlassen" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "Möchten sie die Gruppe wirklich verlassen?" @@ -585,11 +602,11 @@ msgstr "Möchten Sie {lib_name} wirklich löschen?" msgid "Delete succeeded." msgstr "Erfolgreich gelöscht." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "Bibliothek {library_name} verschieben nach" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "Bibliothek erfolgreich verschoben" @@ -597,35 +614,36 @@ msgstr "Bibliothek erfolgreich verschoben" msgid "Share {placeholder}" msgstr "Teile {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Abgelaufen" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Verbergen" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Anzeigen" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Bitte Tage eingeben" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Bitte geben Sie eine gültige Anzahl von Tagen ein" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Bitte geben Sie mindestens eine E-Mail-Adresse an." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Erfolgreich an {placeholder} gesendet." -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Senden an {placeholder} fehlgeschlagen" @@ -637,22 +655,26 @@ msgstr "Erfolg" msgid "Successfully unstared {placeholder}" msgstr "{placeholder} ist nicht mehr als Favorit markiert." -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" -msgstr "Name oder E-Mail eingeben und Enter drücken" +msgstr "Name oder E-Mail-Adresse eingeben und Enter drücken" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Bitte mehr als 1 Zeichen eingeben" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Nichts gefunden" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Suche …" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Laden fehlgeschlagen" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "Alle Fehlermeldungen sind gelöscht." diff --git a/locale/el/LC_MESSAGES/djangojs.po b/locale/el/LC_MESSAGES/djangojs.po index 80802583e5..87e67a4055 100644 --- a/locale/el/LC_MESSAGES/djangojs.po +++ b/locale/el/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Greek (http://www.transifex.com/haiwen/seahub/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Ο κωδικός είναι πολυ μικρός" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Ακυρώθηκε." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Εσωτερικό σφάλμα. Αποτυχία μετακίνησης του %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Εσωτερικό σφάλμα. Αποτυχία αντιγραφής του %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Μετακίνηση αρχείου %(index)s από %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Αντιγραφή αρχείου %(index)s από %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Παρακαλώ εισάγετε έναν ή περισσότερους χαρακτήρες" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Δεν υπάρχουν αποτελέσματα" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Αναζήτηση..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Αποτυχία φόρτωσης" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/el_GR/LC_MESSAGES/djangojs.po b/locale/el_GR/LC_MESSAGES/djangojs.po index 6f850912dc..9088f73988 100644 --- a/locale/el_GR/LC_MESSAGES/djangojs.po +++ b/locale/el_GR/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Greek (Greece) (http://www.transifex.com/haiwen/seahub/language/el_GR/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po index 472966e901..21d47923ef 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-05-06 17:04+0800\n" +"POT-Creation-Date: 2016-05-11 10:28+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -991,7 +991,7 @@ msgstr "" #: seahub/templates/sysadmin/useradmin_js.html:4 #: seahub/templates/sysadmin/userinfo.html:297 #, python-format -msgid "Are you sure you want to delete %s ?" +msgid "Are you sure you want to delete %%s ?" msgstr "" #: seahub/contacts/templates/contacts/contact_list.html:123 @@ -2271,7 +2271,8 @@ msgstr "" #, python-format msgid "" "%(user)s has shared a library named " -"%(lib_name)s to %(group_name)s." +"%(lib_name)s to group " +"%(group_name)s." msgstr "" #: seahub/notifications/templates/notifications/notice_email.html:39 @@ -4778,7 +4779,7 @@ msgstr "" #: seahub/templates/snippets/file_share_popup.html:3 #, python-format -msgid "Share %(name)s" +msgid "Share %%(name)s" msgstr "" #: seahub/templates/snippets/list_commit_detail.html:23 @@ -4855,12 +4856,12 @@ msgstr "" #: seahub/templates/snippets/repo_del_popup.html:3 #, python-format -msgid "Really want to delete %(lib_name)s ?" +msgid "Really want to delete %%(lib_name)s ?" msgstr "" #: seahub/templates/snippets/repo_share_form.html:3 #, python-format -msgid "Share %(lib_name)s" +msgid "Share %%(lib_name)s" msgstr "" #: seahub/templates/snippets/repo_share_form.html:6 @@ -5093,7 +5094,7 @@ msgstr "" #: seahub/templates/sysadmin/repo_transfer_form.html:4 #, python-format -msgid "Transfer %(lib_name)s to:" +msgid "Transfer %%(lib_name)s to:" msgstr "" #: seahub/templates/sysadmin/repoadmin_js.html:18 @@ -5292,7 +5293,7 @@ msgstr "" #: seahub/templates/sysadmin/sys_org_admin.html:138 #, python-format -msgid "Are you sure you want to remove trial for %s ?" +msgid "Are you sure you want to remove trial for %%s ?" msgstr "" #: seahub/templates/sysadmin/sys_org_info_base.html:16 @@ -5359,7 +5360,7 @@ msgstr "" #: seahub/templates/sysadmin/sys_org_info_user.html:71 #: seahub/templates/sysadmin/useradmin_js.html:9 #, python-format -msgid "Are you sure you want to reset the password of %s ?" +msgid "Are you sure you want to reset the password of %%s ?" msgstr "" #: seahub/templates/sysadmin/sys_org_search.html:9 @@ -5429,7 +5430,7 @@ msgstr "" #: seahub/templates/sysadmin/sys_repo_trash.html:63 #, python-format -msgid "Are you sure you want to delete all %s's libraries?" +msgid "Are you sure you want to delete all %%s's libraries?" msgstr "" #: seahub/templates/sysadmin/sys_repo_trash.html:69 @@ -5438,12 +5439,12 @@ msgstr "" #: seahub/templates/sysadmin/sys_repo_trash.html:75 #, python-format -msgid "Are you sure you want to restore %s?" +msgid "Are you sure you want to restore %%s?" msgstr "" #: seahub/templates/sysadmin/sys_repo_trash.html:80 #, python-format -msgid "Are you sure you want to delete %s completely?" +msgid "Are you sure you want to delete %%s completely?" msgstr "" #: seahub/templates/sysadmin/sys_trafficadmin.html:8 @@ -5544,7 +5545,7 @@ msgstr "" #: seahub/templates/sysadmin/sys_useradmin.html:83 #, python-format -msgid "A new server version %(v)s is available." +msgid "A new server version %%(v)s is available." msgstr "" #: seahub/templates/sysadmin/sys_useradmin.html:126 @@ -5632,7 +5633,7 @@ msgstr "" #: seahub/templates/sysadmin/useradmin_js.html:14 #, python-format -msgid "Are you sure you want to revoke the admin permission of %s ?" +msgid "Are you sure you want to revoke the admin permission of %%s ?" msgstr "" #: seahub/templates/sysadmin/userinfo.html:48 diff --git a/locale/en_US/LC_MESSAGES/djangojs.po b/locale/en_US/LC_MESSAGES/djangojs.po index dded080325..ee0fb08b16 100644 --- a/locale/en_US/LC_MESSAGES/djangojs.po +++ b/locale/en_US/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: English (United States) (http://www.transifex.com/haiwen/seahub/language/en_US/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: en_US\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po index 1eea7ba05c..aeec4fdab5 100644 --- a/locale/es/LC_MESSAGES/django.po +++ b/locale/es/LC_MESSAGES/django.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 16:40+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 18:12+0000\n" "Last-Translator: Rodolfo Cossalter \n" "Language-Team: Spanish (http://www.transifex.com/haiwen/seahub/language/es/)\n" "MIME-Version: 1.0\n" @@ -24,14 +24,15 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "El usuario %s ya es miembro del grupo." -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "El usuario %s no se encuentra en la organización." @@ -58,8 +59,8 @@ msgstr "Contraseña incorrecta" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Error interno del servidor" @@ -69,34 +70,34 @@ msgstr "Error en el desencriptado de la biblioteca" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Fallo al enviar el enlace compartido. El servicio de correo electrónico no está adecuadamente configurado, por favor, contacta al administrador" -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "archivo" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Un archivo ha sido compartido contigo en %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "carpeta" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Una carpeta fue compartida contigo en %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Un enlace de subida ha sido compartido contigo en %s" @@ -105,14 +106,15 @@ msgstr "Un enlace de subida ha sido compartido contigo en %s" msgid "Password is too short." msgstr "La contraseña es demasiado corta." -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Contraseña demasiado corta" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Organización de equipo de colaboraores" @@ -148,7 +150,7 @@ msgid "No activity now or the function is not supported." msgstr "Sin actividad o función no soportada." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Biblioteca creada" @@ -163,7 +165,8 @@ msgstr "Biblioteca %(library_name)s eliminada" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -171,8 +174,8 @@ msgstr "Biblioteca %(library_name)s eliminada" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -188,7 +191,7 @@ msgstr "Por favor verifique la red." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -214,13 +217,16 @@ msgstr "Fechas importantes" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -248,10 +254,11 @@ msgid "Email or Username" msgstr "Email o Nombre de usuario" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -311,7 +318,7 @@ msgid "New password confirmation" msgstr "Confirmación de nueva contraseña" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Las contraseñas no coinciden" @@ -323,7 +330,7 @@ msgstr "Contraseña anterior" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "La contraseña anterior ingresada es incorrecta. Por favor, ingrésela nuevamente." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Contraseña (de nuevo)" @@ -332,15 +339,19 @@ msgstr "Contraseña (de nuevo)" msgid "Enter a valid e-mail address." msgstr "Ingresa una dirección de correo válida." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "Esta cuenta ha sido inmovilizada debido a muchos intentos de acceso fallidos." + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Desconectado" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Fallo al enviar el correo, por favor, contacta al administrador" -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "No se puede actualizar la contraseña, por favor contacte al administrador de LDAP." @@ -427,6 +438,7 @@ msgstr "Avatar actual:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -438,24 +450,24 @@ msgstr "Avatar actual:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -516,43 +528,48 @@ msgstr "Avatar actualizado con éxito." msgid "Successfully deleted the requested avatars." msgstr "Avatares borrados con éxito." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "Cuenta %(account)s inmovilizada en %(site)s." + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Dirección de correo" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Nombre de usuario" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Debe tener una longitud de 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Ingresa una dirección de correo válida." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Ya existe un usuario con este correo" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "ID de usuario inválido" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "nombre" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "departamento" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "teléfono" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "nota" @@ -621,7 +638,7 @@ msgid "Recovered deleted directory" msgstr "Carpeta borrada recuperada" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Descripción o nombre de la biblioteca modificados." @@ -669,22 +686,22 @@ msgstr[1] "Hace %(seconds)d segundos" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -697,21 +714,21 @@ msgstr "Lectura / Escritura" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -783,15 +800,16 @@ msgstr "E-Mail" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -819,7 +837,7 @@ msgstr "E-Mail" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nombre" @@ -864,11 +882,11 @@ msgstr "Operaciones" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -889,21 +907,21 @@ msgstr "Editar" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -935,8 +953,9 @@ msgstr "Agrega contactos para compartir bibliotecas y enviar enlaces de descarga #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -946,8 +965,8 @@ msgstr "Agrega contactos para compartir bibliotecas y enviar enlaces de descarga #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Email" @@ -1045,17 +1064,17 @@ msgstr "La descripión es demasiado extensa (máximo 100 caracteres)" msgid "Name %s is not valid" msgstr "El nombre %s no es válido" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Argumento faltante" @@ -1117,7 +1136,7 @@ msgid "Permission error: only group staff can add member" msgstr "Error de permiso: sólo miembros del grupo de administradores pueden agregar miembros" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "El grupo no existe" @@ -1267,16 +1286,16 @@ msgstr "Haz click y elije una biblioteca." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1353,21 +1372,21 @@ msgstr "Se requiere nombre." msgid "Description is required." msgstr "Se requiere descripción." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Permiso denegado" @@ -1720,11 +1739,14 @@ msgstr "Salir" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Usuarios" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1732,9 +1754,11 @@ msgstr "Info" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1745,12 +1769,16 @@ msgid "Libraries" msgstr "Bibliotecas" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Usuarios Activos" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1810,12 +1838,12 @@ msgstr "Bibliotecas Propias" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1828,11 +1856,11 @@ msgid "Size" msgstr "Tamaño" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1842,7 +1870,7 @@ msgid "Last Update" msgstr "Última actualización" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1870,10 +1898,10 @@ msgid "This user has not created any libraries" msgstr "Este usuario no ha creado ninguna biblioteca" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Rol" @@ -1882,8 +1910,8 @@ msgstr "Rol" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Creado el" @@ -1898,7 +1926,7 @@ msgstr "Este usuario no ha creado ni se ha unido a ningún grupo" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Estado" @@ -1918,7 +1946,7 @@ msgstr "Creado / Último incio" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Activo" @@ -1930,7 +1958,7 @@ msgstr "Activo" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Inactivo" @@ -1939,7 +1967,7 @@ msgstr "Inactivo" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Vacío" @@ -1957,33 +1985,32 @@ msgstr "Borrar usuario" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Propietario" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Administrar" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Miembro" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "Borrado con éxito %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Fallo al borrar: no existe el usuario" @@ -2007,6 +2034,7 @@ msgstr "Mensaje" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Fecha" @@ -2053,16 +2081,22 @@ msgid "Send a message..." msgstr "Enviar un mensaje..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Anterior" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2079,18 +2113,20 @@ msgstr "¿Seguro que deseas eliminar esta discusión?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Sí" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "No" @@ -2132,57 +2168,66 @@ msgid "Virus detected on %s" msgstr "Virus detectado en %s" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Nueva notificación en %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Error interno" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Un archivo llamado %(file_name)s es subido a %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Un archivo llamado %(file_name)s es subido a Biblioteca Eliminada" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s ha compartido la biblioteca %(repo_name)s contigo." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "%(user)s ha compartido una biblioteca llamada %(repo_name)s al grupo %(group_name)s." + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Has recibido un nuevo mensaje de %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s tiene una nueva discusión." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s publicó una nueva discusión en %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s solicitó unirse al grupo %(group_name)s, mensaje de verificación: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2230,11 +2275,19 @@ msgstr "%(user)s compartió una biblioteca llamada %(lib_name)s to %(group_name)s." +msgstr "%(user)s ha compartido una biblioteca llamada %(lib_name)s a %(group_name)s." + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Recibiste un nuevo mensaje de %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2242,7 +2295,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "Un archivo llamado %(file_name)s fue subido a tu carpeta %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2250,14 +2303,14 @@ msgid "" "message: %(msg)s" msgstr "El usuario %(user)s solicitó unirse al grupo %(grp_name)s, mensaje de verificación: %(msg)s." -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "El usuario %(user)s te ha agregado al grupo %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Verificar en la siguiente página:" @@ -2287,6 +2340,7 @@ msgid "Delete Notification" msgstr "Borrar notificación" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2294,6 +2348,7 @@ msgstr "Borrar notificación" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Hola," @@ -2362,14 +2417,17 @@ msgstr "Configuración del perfil" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Configuración" @@ -2603,40 +2661,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "La dirección de correo no debe superar los 512 caracteres" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "La contraseña no puede estar vacía" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Ingrese la contraseña correcta" +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "Su código es %(code)s, este código será válido por una hora." + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Enlaces - Compartir" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Enlaces de descarga" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Enlaces de subida" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Biblioteca" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Visitas" @@ -2647,7 +2711,7 @@ msgstr "Vencimiento" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2663,7 +2727,7 @@ msgstr "Ver" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2696,7 +2760,7 @@ msgid "Folders - Share" msgstr "Carpetas - Compartir" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Carpetas" @@ -2707,15 +2771,15 @@ msgstr "Compartir con" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Permiso" @@ -2781,175 +2845,211 @@ msgid "" "groups you are in." msgstr "Puedes compartir bibliotecas con contactos dando click al icono de compartir en la página de inicio o creando una nueva biblioteca en los grupos a los cuales pertenezcas" -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "Email de verificación" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "Por favor provea su dirección de email para continuar." + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "Obtener código" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "Código de verificación" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "Se ha enviado un código de verificación al email." + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Fallo al compartir con los miembros, intenta más tarde." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Compartido con éxito con todos los miembros, verifica en Compartidos" -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Sólo el propietario de la biblioteca puede compartirla." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "La biblioteca no existe" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Argumento inválido" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Argumento inválido" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Fallo al remover compartido" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "id de grupo inválido" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Fallo al dejar de compartir: el grupo no existe." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Compartido removido con éxito" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "todos los miembros" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "El enlace no existe" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Error interno del servidor, o por favor verifique el(los) e-mail(s) ingresado(s)." -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Elije una carpeta." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Guardado con éxito." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "El envío del enlace de subida falló. El servicio de Email no está configurado adecuadamente, contacta al administrador." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "No tienes permiso para generar enlace compartido" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Argumentos inválidos" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "La biblioteca no existe." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "La carpeta no existe." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Por favor verifique el(los) e-mail(s) ingresado(s)" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "La dirección de email es inválida" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "No se encuentra el enlace para compartir" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "Código de verificación para visitar enlaces compartidos" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "Fallo al enviar un código de verificación, por favor intente mas tarde." + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "La página solicitada no pudo ser encontrada." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Salir de Administrador" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Cerrar" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Notificaciones" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Ver Todas las Notificaciones" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "Ver perfil y más" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Desconectarse" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Administración del Sistema" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Esta versión de IE no está mas soportada. Por favor actualice a versión 10 o superior." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Notificaciones" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Bienvenido a Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile organiza los archivos en bibliotecas. Cada biblioteca se puede sincronizar y compartir por separado. Se ha creado una biblioteca personal. Puedes crear más después." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2957,7 +3057,7 @@ msgid "" msgstr "Seafile organiza los archivos en bibliotecas. Cada biblioteca se puede sincronizar y compartir por separado. Sin embargo, ya que eres un invitado, no puedes crear bibliotecas." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Registrarse" @@ -2987,28 +3087,31 @@ msgid "Please enter the password." msgstr "Por favor ingresa la contraseña." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Descargar" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Registro de Acceso" @@ -3017,9 +3120,12 @@ msgstr "Registro de Acceso" msgid "Current Path:" msgstr "Ruta actual:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Usuario" @@ -3029,11 +3135,16 @@ msgstr "Usuario" msgid "Type" msgstr "Tipo" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Nombre de dispositivo" @@ -3047,6 +3158,7 @@ msgstr "Usuario Anónimo" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3072,10 +3184,6 @@ msgstr "Borrador guardado." msgid "is encrypted" msgstr "está encriptada" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Contraseña:" - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "La contraseña será almacenada en el servidor por 1 hora." @@ -3200,7 +3308,7 @@ msgstr "Columnas" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Predeterminado" @@ -3225,10 +3333,10 @@ msgid "Password is required." msgstr "Contraseña requerida" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Historial" @@ -3324,85 +3432,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Acerca de nosotros" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Archivos" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Mías" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Compartidas" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" msgstr "Organización" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Todos los grupos" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "Herramientas" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Habilitar Módulos" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Favoritos" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Actividades" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Wiki Personal" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Dispositivos" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Admin de Compartidos" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Enlaces" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Carpeta de Subida" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Agregar vencimiento automático" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Días" @@ -3420,18 +3533,12 @@ msgid "Shared Libs" msgstr "Bibliotecas Compartidas" #: 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 "Nueva carpeta" - -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Nombre de la carpeta" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "Nueva Carpeta" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Nuevo archivo" @@ -3449,8 +3556,7 @@ msgstr "Formateo sencillo." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Detalles" @@ -3514,7 +3620,123 @@ msgstr "Reemplazar" msgid "Don't replace" msgstr "No reemplazar" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organizaciones" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "Instituciones" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Tráfico" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Registros" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Análisis de Virus" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Información del Sistema" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Versión Profesional" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "expira el" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Versión Community" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Actualizar a Versión Pro" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Límites" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "Escritorio" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "Móvil" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "Errores" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Plataforma" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "Versión" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Último acceso" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "No hay dispositivos conectados" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Desvincular" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Limpiar" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "Dispositivo" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Error" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "No hay errores de sincronización" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Nueva biblioteca" @@ -3528,13 +3750,14 @@ msgid "Encrypt" msgstr "Encriptar" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(al menos %(repo_password_min_length)s caracteres)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Repetir contraseña" @@ -3544,34 +3767,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Dañada (por favor contacte al administrador para reparar esta biblioteca)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Compartir" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Más operaciones" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Renombrar" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3594,58 +3817,59 @@ msgid "Folder Permission" msgstr "Permiso de Carpeta" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Mover" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Copiar" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Subir archivo" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Subir archivos" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Nueva Carpeta" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Lista" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "ver como lista" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Grilla" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "ver como grilla" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3653,175 +3877,177 @@ msgstr "ver como grilla" msgid "Trash" msgstr "Papelera" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Sub-bibliotecas" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "Acciones" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Más Operaciones" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Abrir via el Cliente" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "marcado" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "desmarcado" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "bloqueado" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Desbloquear" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Bloquear" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Obtener falló" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Enlace de descarga" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Link de subida" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Compartir con usuario" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Compartir con grupo" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Agregar protección por contraseña" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(al menos %(share_link_password_min_length)s caracteres)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Mostrar" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Generar una contraseña aleatoria" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Generar" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Enlace:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Enlace de Descarga Directa:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Enviar" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Enviar a:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Correos separados por ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Mensaje (opcional):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Enviando…" -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Puedes compartir el enlace generado con otros para que puedan subir archivos a esta carpeta." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Link de Subida:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Grupo" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Dejar de compartir" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3832,182 +4058,191 @@ msgstr "Wiki" msgid "Members" msgstr "Miembros" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Discusión" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Permiso del usuario" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Permiso de grupo" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "icono" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Desmarcar" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "Tipo de Biblioteca" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Compartida por" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Seleccionar bibliotecas para compartir" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Biblioteca eliminada" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Detalles de modificación" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Buscar archivos en el wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Buscar archivos en esta biblioteca" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Buscar Archivos" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "avanzado" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "No se ha compartido ninguna biblioteca con este grupo" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "propietario" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "admin" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Responder" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "Agregar Wiki" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "Remover Wiki" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Importar Miembros" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "Administrar Miembros" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Descartar" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Abandonar el grupo" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Renombrar Grupo a" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Tranferir Grupo a" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Importar miembros del grupo desde un archivo CSV" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Formato de archivo: usuario@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "Agregar" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "La configuración del historial de la biblioteca ha sido deshabilitada por el Administrador" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Mantener historial completo" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "No mantener historial" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Sólo mantener el historial por:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "días" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Creado Por" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Carpeta" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Seleccione una carpeta" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Contraseña anterior" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Nueva contraseña (al menos %(repo_password_min_length)s caracteres)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Nueva Contraseña" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Nueva contraseña otra vez" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Desvincular" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Ver Todas las Notificaciones" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4024,6 +4259,11 @@ msgstr "Puedes crear una biblioteca para organizar sus archivos. Por ejemplo, pu msgid "No library is shared to you" msgstr "No hay bibliotecas compartidas contigo" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organización" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Agregar Biblioteca" @@ -4070,10 +4310,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Un grupo es un espacio para intercambiar mensajes y colaborar en bibliotecas. Aquí estarán listados los grupos a los que pertenezcas." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Nombre del grupo" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4113,14 +4349,6 @@ msgid "" " page, and they will be listed here." msgstr "Los archivos marcados se listarán aquí. Puedes marcar archivos importantes como favoritos haciendo click en el botón \"Marcar\" en la página del archivo." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Plataforma" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Último acceso" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Bibliotecas" @@ -4150,7 +4378,7 @@ msgstr "Para activar esta cuenta, por favor haga click en el siguiente enlace de #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4170,33 +4398,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "No legible? Refrescar." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Correo electrónico o contraseña incorrecta" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Recordarme por %(remember_days)s días" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Fallo al refrescar el CAPTCHA. Intenta más tarde." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "El email o el nombre de usuario no pueden estar en blanco" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4237,10 +4465,6 @@ msgstr "Por favor actualice su contraseña antes de continuar." msgid "Current Password" msgstr "Contraseña Actual" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Nueva Contraseña" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4377,11 +4601,6 @@ msgstr "El correo no puede estar en blanco" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Papelera" -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "Limpiar" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Borrar fecha" @@ -4403,12 +4622,12 @@ msgid "1 month ago" msgstr "más de 1 mes" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Éxito" @@ -4638,7 +4857,7 @@ msgid "Please enter password" msgstr "Ingresa una contraseña" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Borrado con éxito." @@ -4779,6 +4998,15 @@ msgstr "Favoritos" msgid "Successfully unstarred." msgstr "Favorito removido." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Nueva carpeta" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Nombre de la carpeta" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "cerrar" @@ -4804,88 +5032,62 @@ msgstr "Subir archivo falló" msgid "Failed to get upload url" msgstr "Fallo al obtener url de subida" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Archivo demasiado grande" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Archivo demasiado pequeño" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Tipo de archivo no permitido" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Número máximo de archivos excedido" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Bytes actuales exceden el tamaño máximo" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Resultado de subida incompleto" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Error" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "subido" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "cancelado" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Inicio" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Es requerido." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organizaciones" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "Instituciones" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Tráfico" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Registros" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Análisis de Virus" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Creador" @@ -4937,6 +5139,13 @@ msgstr "Eliminar Biblioteca" msgid "Files / Size" msgstr "Archivos / Tamaño" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "Nota: las configuraciones via la interfaz web se guardan en una tabla de la base de datos (seahub-db/constance_config). Tienen prioridad sobre las configuraciones en los archivos." + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Confirmar contraseña para continuar" @@ -4967,10 +5176,6 @@ msgstr "Información del Grupo" msgid "No library has shared to this group" msgstr "No se ha compartido ninguna biblioteca con este grupo" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "admin" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4982,30 +5187,6 @@ msgstr "Exportar Excel" msgid "Delete Group" msgstr "Borrar grupo" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Información del Sistema" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Versión Profesional" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "expira el" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Versión Community" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Actualizar a Versión Pro" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Límites" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "Todas las Instituciones" @@ -5169,12 +5350,12 @@ msgid "Max User Number" msgstr "Máximo Número de Usuarios" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Debe ingresar un número" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "El número ingresado debe ser mayor que 0" @@ -5314,7 +5495,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP (importado)" @@ -5327,7 +5508,7 @@ msgid "Admins" msgstr "Administradores" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Último Ingreso" @@ -5353,7 +5534,7 @@ msgstr "También puedes agregar un usuario como invitado, que no podrá crear bi #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Invitado" @@ -5441,6 +5622,12 @@ msgstr "Correo electrónico: %(email)s" msgid "Password: %(password)s" msgstr "Contraseña: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "Cuenta %(user)s inmovilizada debido a una cantidad excesiva de ingresos fallidos. Por favor verificar en:" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5518,24 +5705,24 @@ msgstr "para" msgid "Sorry, this user is not registered yet." msgstr "Este usuario no está registrado aún." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Ruta actual:" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "actualizó este archivo" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Volver arriba" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "inicio" @@ -5631,8 +5818,8 @@ msgstr "Argumentos inválidos." #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Persmiso denegado." @@ -5661,8 +5848,8 @@ msgid "Duplicated filename" msgstr "Nombre de archivo duplicado" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "El archivo no existe" @@ -5721,11 +5908,11 @@ msgstr "Fallo al dejar de compartir \"%s\"." msgid "No revisions found" msgstr "No se encontraron revisiones" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Verificar error de bloqueo de archivo" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "El archivo está bloqueado" @@ -5753,12 +5940,12 @@ msgstr "Restablecido con éxito %(path)s al directorio raíz msgid "\"%s\" does not exist." msgstr "\"%s\" no existe." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Error interno" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Imposible descargar carpeta \"%s\": tamaño excedido." @@ -5768,11 +5955,11 @@ msgstr "Imposible descargar carpeta \"%s\": tamaño excedido." msgid "Unable to download \"%s\"" msgstr "Imposible descargar \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "\"Wiki Personal\" activado con éxito." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "\"Wiki Personal\" desactivado con éxito" @@ -5789,7 +5976,7 @@ msgid "The group doesn't exist" msgstr "El grupo no existe" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Biblioteca encriptada." @@ -5867,262 +6054,266 @@ msgstr "Falllo al conseguir lista de bloques" msgid "Wrong repo id" msgstr "repo id incorrecto" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Falló" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Identificador del enlace de subida inválido." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Id del repo en el enlace de subida, inválido." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "No hubo conflictos al unir." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Fallo al editar la información de la biblioteca." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Fallo al guardar la configuración en el servidor" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Configuración guardada." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Nombre de usuario %s invalido." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Usuario %s no encontrado." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "El usuario %s no está en la organización." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "No es posible transferir la biblioteca al usuario %s de la organización." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Fallo al cambiar la contraseña, no eres el propietario." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Permiso de carpeta inválido, debe ser \"rw\" o \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "La ruta debe comenzar con \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "La ruta no debe terminar con \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Ruta inválida" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Usuario inválido, debe estar registrado" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Operación falló" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Permiso de carpeta incorrecto" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Por favor, primero agregue el permiso de la carpeta" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Por favor verifique el(los) e-mail(s) ingresado(s) y el(los) contacto(s) seleccionado(s)" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Grupo inválido" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "El grupoa no existe." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Falló, el archivo es demasiado grande" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "Error HTTP: No se pudo abrir el archivo en línea" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "Error URL: No se pudo abrir el archivo en línea" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "La codificación elegida no es correcta." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Codificación de archivo desconocida" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "El tamaño del archivo sobrepasa %s, no se puede abrir en línea." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "La biblioteca está encriptada, no se puede abrir el archivo en línea." -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Imposible visualizar el archivo" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Formato de archivo inválido." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "No es posible descargar el archivo, ruta inválida" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "No es posible descargar el archivo, ruta errónea" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "No es posible descargar el archivo, tráfico para compartir enlaces agotado." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "No es posible ver el archivo, el tráfico para enlaces compartidos ha sido agotado." + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "La biblioteca no existe." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "La biblioteca está encriptada." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Imposible editar el archivo" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "El archivo no existe." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Este tipo de archivo no se puede editar en línea." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Imposible descargar archivo" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "No se puede acceder al archivo: tráfico para compartir enlaces agotado." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "No es posible descargar: carpeta no encontrada" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "No se puede ver la biblioteca " -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "No se puede ver la biblioteca, ruta errónea." -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Nombre de usuario inválido" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "Fallo al exportar Excel" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Fallo al definir cuota: la cuota máxima es %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Fallo al definir cuota: error interno del servidor" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Fallo al borrar: el usuario es el creador de una organización" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Evaluación eliminada con éxito para: %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Los permisos de administrador de %s fueron revocados" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Fallo al revocar admin: el usuario no existe" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Tu cuenta en %s está activada." -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "La contraseña ha sido reestablecida en %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Contraseña restablecida con éxito a %(passwd)s, un correo fue enviado a %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Contraseña restablecida a %(passwd)s, pero hubo un fallo al enviar el correo a %(user)s, revise su configuracion de email." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Contraseña de %(user)s restablecida a %(passwd)s con éxito." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6130,107 +6321,107 @@ msgid "" "configured." msgstr "Contraseña de %(user)s restablecida a %(passwd)s. Pero el correo de notificación no pudo ser enviado, porque el servicio de correo no está configurado correctamente." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Fallo al restablecer la contraseña: el usuario no existe." -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Estás invitado a unirte a %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Fallo al agregar el usuario %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "El usuario %s fue agregado con éxito. Se ha enviado un correo de aviso." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "El usuario %s fue agregado con éxito. Pero hubo un error al enviar la notificación; por favor, revisa la configuración del correo." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "El usuario %s fue agregado con éxito." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "El usuario %s fue agregado con éxito. Pero el correo de aviso no pudo ser enviado, el servicio de correo no esta configurado." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Fallo al renombrar organización" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Eliminado con éxito" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Fallo al transferir, argumentos inválidos." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Fallo al transferir, usuario %s no encontrado" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "No es posible transferir la biblioteca de la organización" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "No es posible transferir la biblioteca al usuario %s de la organización" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Transferida con éxito." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "La bibilioteca del sistema no puede ser eliminada." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Fallo al eliminar, por favor intente más tarde." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s asignado como administrador." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Fallo al definir %s como administrador: el usuario no existe." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Importado exitosamente" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Primero escoja un archivo csv." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Configuración inválida" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Valor inválido" diff --git a/locale/es/LC_MESSAGES/djangojs.po b/locale/es/LC_MESSAGES/djangojs.po index 3eb6408fa9..ca1cfe6991 100644 --- a/locale/es/LC_MESSAGES/djangojs.po +++ b/locale/es/LC_MESSAGES/djangojs.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 16:45+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 18:19+0000\n" "Last-Translator: Rodolfo Cossalter \n" "Language-Team: Spanish (http://www.transifex.com/haiwen/seahub/language/es/)\n" "MIME-Version: 1.0\n" @@ -20,12 +20,12 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Ahora" @@ -33,19 +33,19 @@ msgstr "Ahora" msgid "Name is required" msgstr "Nombre requerido" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Ingresa una contraseña" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Ingresa la contraseña nuevamente" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Contraseña demasiado corta" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Las contraseñas no coinciden" @@ -61,6 +61,31 @@ msgstr "Biblioteca de lectura / escritura" msgid "Read-Only library" msgstr "Biblioteca de sólo lectura" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Por favor verifique la red." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Archivos nuevos" @@ -90,35 +115,40 @@ msgstr "Carpetas eliminadas" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Fallo. Por favor, verifica la red." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "Desvinculado exitosamente %(name)s." @@ -148,12 +178,12 @@ msgstr "Falló." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Cancelado." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Ruta de destino inválida" @@ -206,8 +236,8 @@ msgid "{placeholder} Folder Permission" msgstr "{placeholder} Permiso de Carpeta" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "Buscar usuario o ingresar email y presionar Enter" @@ -223,39 +253,20 @@ msgstr "Seleccione un grupo" #: 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Error de permiso" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Por favor verifique la red." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "Por favor, seleccione una carpeta con un click." @@ -264,7 +275,7 @@ msgstr "Por favor, seleccione una carpeta con un click." msgid "{placeholder} History Setting" msgstr "{placeholder} Configuración del historial" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "Historial de biblioteca establecido con éxito." @@ -272,150 +283,150 @@ msgstr "Historial de biblioteca establecido con éxito." msgid "{placeholder} Share Links" msgstr "{placeholder} Enlaces Compartidos" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Cerrar (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Cargando..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Anterior (Flecha izquierda)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Siguiente (Flecha derecha)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% de %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "La imagen no pudo ser cargada." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Abrir en una nueva pestaña" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Contraseña requerida" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Es requerido." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Define un nombre, no solamente la extensión." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Procesando…" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "%(name)s eliminado con éxito." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "eliminado con éxito %(name)s y otro ítem." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "%(name)s y otros %(amount)s elementos eliminados con éxito." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Fallo al eliminar %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Fallo al eliminar %(name)s y otro ítem." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Fallo al eliminar %(name)s y %(amount)s otros ítems." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Eliminar elementos" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "¿Seguro que deseas eliminar los elementos selecionados?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Mover item(s) seleccionados a:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Copiar item(s) seleccionados a:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "%(name)s movido con éxito." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "%(name)s y 1 otro ítem movidos con éxito." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "%(name)s y otros %(amount)s elementos movidos con éxito." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "%(name)s copiados con éxito." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "%(name)s y 1 otro ítem copiados con éxito." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "%(name)s y otros %(amount)s elementos copiados con éxito." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Error interno. Fallo al mover %(name)s y %(amount)s otro(s) ítem(s)." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Error interno. Fallo al mover %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Error interno. Fallo al copiar %(name)s y %(amount)s otro(s) ítem(s)." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Error interno. Fallo al copiar %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Moviendo archivo %(index)s de %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Copiando archivo %(index)s de %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Fallo al mover %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Fallo al copiar %(name)s" @@ -455,10 +466,10 @@ msgstr "Resultado de subida incompleto" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -502,19 +513,19 @@ msgstr "Subir archivo cancelado" msgid "File Upload failed" msgstr "Subir archivo falló" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Fallo al obtener url de subida" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Fallo al obtener url de actualización" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "¿Reemplazar archivo {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "El archivo está bloqueado" @@ -523,7 +534,7 @@ msgid "Set {placeholder}'s permission" msgstr "Establecer permiso de {placeholder}" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Seleccionar grupos" @@ -544,32 +555,38 @@ msgstr "{placeholder} Miembros" msgid "Successfully unshared {placeholder}" msgstr "Dejado de compartir con éxito {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "No puede hacer más selecciones" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "Grupo transferido con éxito. Ahora eres un miembro normal del grupo." + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "Escoja un archivo CSV" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "Importado con éxito." -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "Descartar Gupo" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "¿Seguro que deseas descartar este grupo?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "Salir del grupo" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "¿Estás seguro que deseas abandonar el grupo?" @@ -581,11 +598,11 @@ msgstr "¿Realmente desea eliminar {lib_name}?" msgid "Delete succeeded." msgstr "Borrado con éxito." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "Transferir Biblioteca {library_name} a" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "Biblioteca transferida con éxito." @@ -593,35 +610,36 @@ msgstr "Biblioteca transferida con éxito." msgid "Share {placeholder}" msgstr "Compartir {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Expirado" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Ocultar" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Mostrar" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Por favor ingrese días." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Ingresa cantidad válida de días" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Ingresa al menos un correo." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Enviado con éxito a {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Fallo al enviar a {placeholder}" @@ -633,22 +651,26 @@ msgstr "Éxito" msgid "Successfully unstared {placeholder}" msgstr "Desmarcado con éxito {placeholder}" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "Buscar usuarios o ingresar emails y presionar Enter" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Por favor ingrese uno o más caracteres" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "No hay coincidencias" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Buscando..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "La carga falló" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "Errores eliminados con éxito." diff --git a/locale/es_AR/LC_MESSAGES/django.po b/locale/es_AR/LC_MESSAGES/django.po index 4269d1ba7e..d06272a6f4 100644 --- a/locale/es_AR/LC_MESSAGES/django.po +++ b/locale/es_AR/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 16:38+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 17:03+0000\n" "Last-Translator: Rodolfo Cossalter \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/haiwen/seahub/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -21,14 +21,15 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "El usuario %s ya es miembro del grupo." -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "El usuario %s no se encuentra en la organización." @@ -55,8 +56,8 @@ msgstr "Contraseña incorrecta" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Error interno del servidor" @@ -66,34 +67,34 @@ msgstr "Error en el desencriptado de la biblioteca" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Fallo al enviar el enlace compartido. El servicio de correo electrónico no está adecuadamente configurado, por favor, contacta al administrador" -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "archivo" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Un archivo ha sido compartido contigo en %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "carpeta" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Una carpeta fue compartida contigo en %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Un enlace de subida ha sido compartido contigo en %s" @@ -102,14 +103,15 @@ msgstr "Un enlace de subida ha sido compartido contigo en %s" msgid "Password is too short." msgstr "La contraseña es demasiado corta." -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Contraseña demasiado corta" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Organización de equipo de colaboraores" @@ -145,7 +147,7 @@ msgid "No activity now or the function is not supported." msgstr "Sin actividad o función no soportada." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Biblioteca creada" @@ -160,7 +162,8 @@ msgstr "Biblioteca %(library_name)s eliminada" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -168,8 +171,8 @@ msgstr "Biblioteca %(library_name)s eliminada" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -185,7 +188,7 @@ msgstr "Por favor verifique la red." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -211,13 +214,16 @@ msgstr "Fechas importantes" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -245,10 +251,11 @@ msgid "Email or Username" msgstr "Email o Nombre de usuario" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -308,7 +315,7 @@ msgid "New password confirmation" msgstr "Confirmación de nueva contraseña" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Las contraseñas no coinciden" @@ -320,7 +327,7 @@ msgstr "Contraseña anterior" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "La contraseña anterior ingresada es incorrecta. Por favor, ingrésela nuevamente." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Contraseña (de nuevo)" @@ -329,15 +336,19 @@ msgstr "Contraseña (de nuevo)" msgid "Enter a valid e-mail address." msgstr "Ingresa una dirección de correo válida." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "Esta cuenta ha sido inmovilizada debido a muchos intentos de acceso fallidos." + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Desconectado" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Fallo al enviar el correo, por favor, contacta al administrador" -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "No se puede actualizar la contraseña, por favor contacte al administrador de LDAP." @@ -424,6 +435,7 @@ msgstr "Avatar actual:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -435,24 +447,24 @@ msgstr "Avatar actual:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -513,43 +525,48 @@ msgstr "Avatar actualizado con éxito." msgid "Successfully deleted the requested avatars." msgstr "Avatares borrados con éxito." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "Cuenta %(account)s inmovilizada en %(site)s." + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Dirección de correo" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Nombre de usuario" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Debe tener una longitud de 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Ingresa una dirección de correo válida." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Ya existe un usuario con este correo" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "ID de usuario inválido" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "nombre" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "departamento" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "teléfono" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "nota" @@ -618,7 +635,7 @@ msgid "Recovered deleted directory" msgstr "Carpeta borrada recuperada" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Descripción o nombre de la biblioteca modificados." @@ -666,22 +683,22 @@ msgstr[1] "Hace %(seconds)d segundos" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -694,21 +711,21 @@ msgstr "Lectura / Escritura" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -780,15 +797,16 @@ msgstr "E-Mail" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -816,7 +834,7 @@ msgstr "E-Mail" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nombre" @@ -861,11 +879,11 @@ msgstr "Operaciones" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -886,21 +904,21 @@ msgstr "Editar" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -932,8 +950,9 @@ msgstr "Agrega contactos para compartir bibliotecas y enviar enlaces de descarga #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -943,8 +962,8 @@ msgstr "Agrega contactos para compartir bibliotecas y enviar enlaces de descarga #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Email" @@ -1042,17 +1061,17 @@ msgstr "La descripión es demasiado extensa (máximo 100 caracteres)" msgid "Name %s is not valid" msgstr "El nombre %s no es válido" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Argumento faltante" @@ -1114,7 +1133,7 @@ msgid "Permission error: only group staff can add member" msgstr "Error de permiso: sólo miembros del grupo de administradores pueden agregar miembros" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "El grupo no existe" @@ -1264,16 +1283,16 @@ msgstr "Haz click y elije una biblioteca." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1350,21 +1369,21 @@ msgstr "Se requiere nombre." msgid "Description is required." msgstr "Se requiere descripción." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Permiso denegado" @@ -1717,11 +1736,14 @@ msgstr "Salir" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Usuarios" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1729,9 +1751,11 @@ msgstr "Info" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1742,12 +1766,16 @@ msgid "Libraries" msgstr "Bibliotecas" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Usuarios Activos" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1807,12 +1835,12 @@ msgstr "Bibliotecas Propias" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1825,11 +1853,11 @@ msgid "Size" msgstr "Tamaño" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1839,7 +1867,7 @@ msgid "Last Update" msgstr "Última actualización" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1867,10 +1895,10 @@ msgid "This user has not created any libraries" msgstr "Este usuario no ha creado ninguna biblioteca" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Rol" @@ -1879,8 +1907,8 @@ msgstr "Rol" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Creado el" @@ -1895,7 +1923,7 @@ msgstr "Este usuario no ha creado ni se ha unido a ningún grupo" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Estado" @@ -1915,7 +1943,7 @@ msgstr "Creado / Último incio" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Activo" @@ -1927,7 +1955,7 @@ msgstr "Activo" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Inactivo" @@ -1936,7 +1964,7 @@ msgstr "Inactivo" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Vacío" @@ -1954,33 +1982,32 @@ msgstr "Borrar usuario" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Propietario" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Administrar" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Miembro" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "Borrado con éxito %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Fallo al borrar: no existe el usuario" @@ -2004,6 +2031,7 @@ msgstr "Mensaje" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Fecha" @@ -2050,16 +2078,22 @@ msgid "Send a message..." msgstr "Enviar un mensaje..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Anterior" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2076,18 +2110,20 @@ msgstr "¿Seguro que deseas eliminar esta discusión?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Sí" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "No" @@ -2129,57 +2165,66 @@ msgid "Virus detected on %s" msgstr "Virus detectado en %s" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Nueva notificación en %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Error interno" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Un archivo llamado %(file_name)s es subido a %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Un archivo llamado %(file_name)s es subido a Biblioteca Eliminada" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s ha compartido la biblioteca %(repo_name)s contigo." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "%(user)s ha compartido una biblioteca llamada %(repo_name)s al grupo %(group_name)s." + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Has recibido un nuevo mensaje de %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s tiene una nueva discusión." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s publicó una nueva discusión en %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s solicitó unirse al grupo %(group_name)s, mensaje de verificación: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2227,11 +2272,19 @@ msgstr "%(user)s compartió una biblioteca llamada %(lib_name)s to %(group_name)s." +msgstr "%(user)s ha compartido una biblioteca llamada %(lib_name)s a %(group_name)s." + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Recibiste un nuevo mensaje de %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2239,7 +2292,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "Un archivo llamado %(file_name)s fue subido a tu carpeta %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2247,14 +2300,14 @@ msgid "" "message: %(msg)s" msgstr "El usuario %(user)s solicitó unirse al grupo %(grp_name)s, mensaje de verificación: %(msg)s." -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "El usuario %(user)s te ha agregado al grupo %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Verificar en la siguiente página:" @@ -2284,6 +2337,7 @@ msgid "Delete Notification" msgstr "Borrar notificación" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2291,6 +2345,7 @@ msgstr "Borrar notificación" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Hola," @@ -2359,14 +2414,17 @@ msgstr "Configuración del perfil" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Configuración" @@ -2600,40 +2658,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "La dirección de correo no debe superar los 512 caracteres" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "La contraseña no puede estar vacía" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Ingrese la contraseña correcta" +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "Su código es %(code)s, este código será válido por una hora." + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Enlaces - Compartir" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Enlaces de descarga" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Enlaces de subida" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Biblioteca" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Visitas" @@ -2644,7 +2708,7 @@ msgstr "Vencimiento" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2660,7 +2724,7 @@ msgstr "Ver" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2693,7 +2757,7 @@ msgid "Folders - Share" msgstr "Carpetas - Compartir" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Carpetas" @@ -2704,15 +2768,15 @@ msgstr "Compartir con" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Permiso" @@ -2778,175 +2842,211 @@ msgid "" "groups you are in." msgstr "Puedes compartir bibliotecas con contactos dando click al icono de compartir en la página de inicio o creando una nueva biblioteca en los grupos a los cuales pertenezcas" -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "Email de verificación" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "Por favor provea su dirección de email para continuar." + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "Obtener código" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "Código de verificación" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "Se ha enviado un código de verificación al email." + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Fallo al compartir con los miembros, intenta más tarde." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Compartido con éxito con todos los miembros, verifica en Compartidos" -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Sólo el propietario de la biblioteca puede compartirla." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "La biblioteca no existe" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Argumento inválido" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Argumento inválido" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Fallo al remover compartido" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "id de grupo inválido" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Fallo al dejar de compartir: el grupo no existe." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Compartido removido con éxito" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "todos los miembros" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "El enlace no existe" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Error interno del servidor, o por favor verifique el(los) e-mail(s) ingresado(s)." -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Elije una carpeta." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Guardado con éxito." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "El envío del enlace de subida falló. El servicio de Email no está configurado adecuadamente, contacta al administrador." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "No tienes permiso para generar enlace compartido" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Argumentos inválidos" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "La biblioteca no existe." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "La carpeta no existe." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Por favor verifique el(los) e-mail(s) ingresado(s)" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "La dirección de email es inválida" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "No se encuentra el enlace para compartir" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "Código de verificación para visitar enlaces compartidos" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "Fallo al enviar un código de verificación, por favor intente mas tarde." + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "La página solicitada no pudo ser encontrada." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Salir de Administrador" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Cerrar" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Notificaciones" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Ver Todas las Notificaciones" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "Ver perfil y más" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Desconectarse" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Administración del Sistema" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Esta versión de IE no está mas soportada. Por favor actualice a versión 10 o superior." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Notificaciones" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Bienvenido a Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile organiza los archivos en bibliotecas. Cada biblioteca se puede sincronizar y compartir por separado. Se ha creado una biblioteca personal. Puedes crear más después." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2954,7 +3054,7 @@ msgid "" msgstr "Seafile organiza los archivos en bibliotecas. Cada biblioteca se puede sincronizar y compartir por separado. Sin embargo, ya que eres un invitado, no puedes crear bibliotecas." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Registrarse" @@ -2984,28 +3084,31 @@ msgid "Please enter the password." msgstr "Por favor ingresa la contraseña." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Descargar" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Registro de Acceso" @@ -3014,9 +3117,12 @@ msgstr "Registro de Acceso" msgid "Current Path:" msgstr "Ruta actual:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Usuario" @@ -3026,11 +3132,16 @@ msgstr "Usuario" msgid "Type" msgstr "Tipo" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Nombre de dispositivo" @@ -3044,6 +3155,7 @@ msgstr "Usuario Anónimo" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3069,10 +3181,6 @@ msgstr "Borrador guardado." msgid "is encrypted" msgstr "está encriptada" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Contraseña:" - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "La contraseña será almacenada en el servidor por 1 hora." @@ -3197,7 +3305,7 @@ msgstr "Columnas" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Predeterminado" @@ -3222,10 +3330,10 @@ msgid "Password is required." msgstr "Contraseña requerida" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Historial" @@ -3321,85 +3429,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Acerca de nosotros" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Archivos" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Mías" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Compartidas" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" msgstr "Organización" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Todos los grupos" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "Herramientas" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Habilitar Módulos" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Favoritos" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Actividades" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Wiki Personal" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Dispositivos" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Admin de Compartidos" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Enlaces" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Carpeta de Subida" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Agregar vencimiento automático" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Días" @@ -3417,18 +3530,12 @@ msgid "Shared Libs" msgstr "Bibliotecas Compartidas" #: 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 "Nueva carpeta" - -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Nombre de la carpeta" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "Nueva Carpeta" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Nuevo archivo" @@ -3446,8 +3553,7 @@ msgstr "Formateo sencillo." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Detalles" @@ -3511,7 +3617,123 @@ msgstr "Reemplazar" msgid "Don't replace" msgstr "No reemplazar" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organizaciones" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "Instituciones" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Tráfico" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Registros" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Análisis de Virus" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Información del Sistema" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Versión Profesional" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "expira el" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Versión Community" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Actualizar a Versión Pro" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Límites" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "Escritorio" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "Móvil" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "Errores" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Plataforma" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "Versión" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Último acceso" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "No hay dispositivos conectados" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Desvincular" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Limpiar" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "Dispositivo" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Error" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "No hay errores de sincronización" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Nueva biblioteca" @@ -3525,13 +3747,14 @@ msgid "Encrypt" msgstr "Encriptar" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(al menos %(repo_password_min_length)s caracteres)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Repetir contraseña" @@ -3541,34 +3764,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Dañada (por favor contacte al administrador para reparar esta biblioteca)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Compartir" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Más operaciones" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Renombrar" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3591,58 +3814,59 @@ msgid "Folder Permission" msgstr "Permiso de Carpeta" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Mover" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Copiar" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Subir archivo" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Subir archivos" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Nueva Carpeta" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Lista" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "ver como lista" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Grilla" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "ver como grilla" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3650,175 +3874,177 @@ msgstr "ver como grilla" msgid "Trash" msgstr "Papelera" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Sub-bibliotecas" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "Acciones" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Más Operaciones" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Abrir via el Cliente" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "marcado" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "desmarcado" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "bloqueado" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Desbloquear" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Bloquear" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Obtener falló" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Enlace de descarga" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Link de subida" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Compartir con usuario" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Compartir con grupo" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Agregar protección por contraseña" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(al menos %(share_link_password_min_length)s caracteres)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Mostrar" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Generar una contraseña aleatoria" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Generar" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Enlace:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Enlace de Descarga Directa:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Enviar" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Enviar a:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Correos separados por ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Mensaje (opcional):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Enviando…" -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Puedes compartir el enlace generado con otros para que puedan subir archivos a esta carpeta." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Link de Subida:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Grupo" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Dejar de compartir" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3829,182 +4055,191 @@ msgstr "Wiki" msgid "Members" msgstr "Miembros" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Discusión" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Permiso del usuario" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Permiso de grupo" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "icono" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Desmarcar" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "Tipo de Biblioteca" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Compartida por" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Seleccionar bibliotecas para compartir" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Biblioteca eliminada" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Detalles de modificación" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Buscar archivos en el wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Buscar archivos en esta biblioteca" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Buscar Archivos" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "avanzado" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "No se ha compartido ninguna biblioteca con este grupo" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "propietario" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "admin" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Responder" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "Agregar Wiki" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "Remover Wiki" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Importar Miembros" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "Administrar Miembros" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Descartar" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Abandonar el grupo" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Renombrar Grupo a" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Tranferir Grupo a" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Importar miembros del grupo desde un archivo CSV" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Formato de archivo: usuario@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "Agregar" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "La configuración del historial de la biblioteca ha sido deshabilitada por el Administrador" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Mantener historial completo" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "No mantener historial" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Sólo mantener el historial por:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "días" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Creado Por" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Carpeta" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Seleccione una carpeta" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Contraseña anterior" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Nueva contraseña (al menos %(repo_password_min_length)s caracteres)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Nueva Contraseña" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Nueva contraseña otra vez" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Desvincular" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Ver Todas las Notificaciones" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4021,6 +4256,11 @@ msgstr "Puedes crear una biblioteca para organizar sus archivos. Por ejemplo, pu msgid "No library is shared to you" msgstr "No hay bibliotecas compartidas contigo" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organización" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Agregar Biblioteca" @@ -4067,10 +4307,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Un grupo es un espacio para intercambiar mensajes y colaborar en bibliotecas. Aquí estarán listados los grupos a los que pertenezcas." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Nombre del grupo" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4110,14 +4346,6 @@ msgid "" " page, and they will be listed here." msgstr "Los archivos marcados se listarán aquí. Puedes marcar archivos importantes como favoritos haciendo click en el botón \"Marcar\" en la página del archivo." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Plataforma" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Último acceso" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Bibliotecas" @@ -4147,7 +4375,7 @@ msgstr "Para activar esta cuenta, por favor haga click en el siguiente enlace de #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4167,33 +4395,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "No legible? Refrescar." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Correo electrónico o contraseña incorrecta" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Recordarme por %(remember_days)s días" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Fallo al refrescar el CAPTCHA. Intenta más tarde." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "El email o el nombre de usuario no pueden estar en blanco" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4234,10 +4462,6 @@ msgstr "Por favor actualice su contraseña antes de continuar." msgid "Current Password" msgstr "Contraseña Actual" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Nueva Contraseña" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4374,11 +4598,6 @@ msgstr "El correo no puede estar en blanco" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Papelera" -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "Limpiar" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Borrar fecha" @@ -4400,12 +4619,12 @@ msgid "1 month ago" msgstr "más de 1 mes" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Éxito" @@ -4635,7 +4854,7 @@ msgid "Please enter password" msgstr "Ingresa una contraseña" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Borrado con éxito." @@ -4776,6 +4995,15 @@ msgstr "Favoritos" msgid "Successfully unstarred." msgstr "Favorito removido." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Nueva carpeta" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Nombre de la carpeta" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "cerrar" @@ -4801,88 +5029,62 @@ msgstr "Subir archivo falló" msgid "Failed to get upload url" msgstr "Fallo al obtener url de subida" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Archivo demasiado grande" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Archivo demasiado pequeño" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Tipo de archivo no permitido" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Número máximo de archivos excedido" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Bytes actuales exceden el tamaño máximo" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Resultado de subida incompleto" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Error" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "subido" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "cancelado" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Inicio" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Es requerido." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organizaciones" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "Instituciones" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Tráfico" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Registros" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Análisis de Virus" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Creador" @@ -4934,6 +5136,13 @@ msgstr "Eliminar Biblioteca" msgid "Files / Size" msgstr "Archivos / Tamaño" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "Nota: las configuraciones via la interfaz web se guardan en una tabla de la base de datos (seahub-db/constance_config). Tienen prioridad sobre las configuraciones en los archivos." + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Confirmar contraseña para continuar" @@ -4964,10 +5173,6 @@ msgstr "Información del Grupo" msgid "No library has shared to this group" msgstr "No se ha compartido ninguna biblioteca con este grupo" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "admin" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4979,30 +5184,6 @@ msgstr "Exportar Excel" msgid "Delete Group" msgstr "Borrar grupo" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Información del Sistema" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Versión Profesional" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "expira el" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Versión Community" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Actualizar a Versión Pro" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Límites" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "Todas las Instituciones" @@ -5166,12 +5347,12 @@ msgid "Max User Number" msgstr "Máximo Número de Usuarios" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Debe ingresar un número" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "El número ingresado debe ser mayor que 0" @@ -5311,7 +5492,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP (importado)" @@ -5324,7 +5505,7 @@ msgid "Admins" msgstr "Administradores" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Último Ingreso" @@ -5350,7 +5531,7 @@ msgstr "También puedes agregar un usuario como invitado, que no podrá crear bi #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Invitado" @@ -5438,6 +5619,12 @@ msgstr "Correo electrónico: %(email)s" msgid "Password: %(password)s" msgstr "Contraseña: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "Cuenta %(user)s inmovilizada debido a una cantidad excesiva de ingresos fallidos. Por favor verificar en:" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5515,24 +5702,24 @@ msgstr "para" msgid "Sorry, this user is not registered yet." msgstr "Este usuario no está registrado aún." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Ruta actual:" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "actualizó este archivo" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Volver arriba" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "inicio" @@ -5628,8 +5815,8 @@ msgstr "Argumentos inválidos." #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Persmiso denegado." @@ -5658,8 +5845,8 @@ msgid "Duplicated filename" msgstr "Nombre de archivo duplicado" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "El archivo no existe" @@ -5718,11 +5905,11 @@ msgstr "Fallo al dejar de compartir \"%s\"." msgid "No revisions found" msgstr "No se encontraron revisiones" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Verificar error de bloqueo de archivo" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "El archivo está bloqueado" @@ -5750,12 +5937,12 @@ msgstr "Restablecido con éxito %(path)s al directorio raíz msgid "\"%s\" does not exist." msgstr "\"%s\" no existe." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Error interno" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Imposible descargar carpeta \"%s\": tamaño excedido." @@ -5765,11 +5952,11 @@ msgstr "Imposible descargar carpeta \"%s\": tamaño excedido." msgid "Unable to download \"%s\"" msgstr "Imposible descargar \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "\"Wiki Personal\" activado con éxito." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "\"Wiki Personal\" desactivado con éxito" @@ -5786,7 +5973,7 @@ msgid "The group doesn't exist" msgstr "El grupo no existe" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Biblioteca encriptada." @@ -5864,262 +6051,266 @@ msgstr "Falllo al conseguir lista de bloques" msgid "Wrong repo id" msgstr "repo id incorrecto" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Falló" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Identificador del enlace de subida inválido." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Id del repo en el enlace de subida, inválido." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "No hubo conflictos al unir." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Fallo al editar la información de la biblioteca." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Fallo al guardar la configuración en el servidor" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Configuración guardada." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Nombre de usuario %s invalido." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Usuario %s no encontrado." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "El usuario %s no está en la organización." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "No es posible transferir la biblioteca al usuario %s de la organización." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Fallo al cambiar la contraseña, no eres el propietario." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Permiso de carpeta inválido, debe ser \"rw\" o \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "La ruta debe comenzar con \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "La ruta no debe terminar con \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Ruta inválida" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Usuario inválido, debe estar registrado" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Operación falló" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Permiso de carpeta incorrecto" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Por favor, primero agregue el permiso de la carpeta" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Por favor verifique el(los) e-mail(s) ingresado(s) y el(los) contacto(s) seleccionado(s)" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Grupo inválido" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "El grupoa no existe." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Falló, el archivo es demasiado grande" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "Error HTTP: No se pudo abrir el archivo en línea" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "Error URL: No se pudo abrir el archivo en línea" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "La codificación elegida no es correcta." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Codificación de archivo desconocida" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "El tamaño del archivo sobrepasa %s, no se puede abrir en línea." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "La biblioteca está encriptada, no se puede abrir el archivo en línea." -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Imposible visualizar el archivo" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Formato de archivo inválido." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "No es posible descargar el archivo, ruta inválida" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "No es posible descargar el archivo, ruta errónea" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "No es posible descargar el archivo, tráfico para compartir enlaces agotado." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "No es posible ver el archivo, el tráfico para enlaces compartidos ha sido agotado." + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "La biblioteca no existe." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "La biblioteca está encriptada." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Imposible editar el archivo" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "El archivo no existe." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Este tipo de archivo no se puede editar en línea." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Imposible descargar archivo" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "No se puede acceder al archivo: tráfico para compartir enlaces agotado." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "No es posible descargar: carpeta no encontrada" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "No se puede ver la biblioteca " -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "No se puede ver la biblioteca, ruta errónea." -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Nombre de usuario inválido" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "Fallo al exportar Excel" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Fallo al definir cuota: la cuota máxima es %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Fallo al definir cuota: error interno del servidor" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Fallo al borrar: el usuario es el creador de una organización" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Evaluación eliminada con éxito para: %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Los permisos de administrador de %s fueron revocados" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Fallo al revocar admin: el usuario no existe" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Tu cuenta en %s está activada." -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "La contraseña ha sido reestablecida en %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Contraseña restablecida con éxito a %(passwd)s, un correo fue enviado a %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Contraseña restablecida a %(passwd)s, pero hubo un fallo al enviar el correo a %(user)s, revise su configuracion de email." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Contraseña de %(user)s restablecida a %(passwd)s con éxito." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6127,107 +6318,107 @@ msgid "" "configured." msgstr "Contraseña de %(user)s restablecida a %(passwd)s. Pero el correo de notificación no pudo ser enviado, porque el servicio de correo no está configurado correctamente." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Fallo al restablecer la contraseña: el usuario no existe." -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Estás invitado a unirte a %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Fallo al agregar el usuario %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "El usuario %s fue agregado con éxito. Se ha enviado un correo de aviso." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "El usuario %s fue agregado con éxito. Pero hubo un error al enviar la notificación; por favor, revisa la configuración del correo." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "El usuario %s fue agregado con éxito." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "El usuario %s fue agregado con éxito. Pero el correo de aviso no pudo ser enviado, el servicio de correo no esta configurado." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Fallo al renombrar organización" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Eliminado con éxito" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Fallo al transferir, argumentos inválidos." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Fallo al transferir, usuario %s no encontrado" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "No es posible transferir la biblioteca de la organización" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "No es posible transferir la biblioteca al usuario %s de la organización" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Transferida con éxito." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "La bibilioteca del sistema no puede ser eliminada." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Fallo al eliminar, por favor intente más tarde." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s asignado como administrador." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Fallo al definir %s como administrador: el usuario no existe." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Importado exitosamente" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Primero escoja un archivo csv." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Configuración inválida" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Valor inválido" diff --git a/locale/es_AR/LC_MESSAGES/djangojs.po b/locale/es_AR/LC_MESSAGES/djangojs.po index b95c719902..f6879ce0aa 100644 --- a/locale/es_AR/LC_MESSAGES/djangojs.po +++ b/locale/es_AR/LC_MESSAGES/djangojs.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 16:44+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 18:18+0000\n" "Last-Translator: Rodolfo Cossalter \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/haiwen/seahub/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -20,12 +20,12 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Ahora" @@ -33,19 +33,19 @@ msgstr "Ahora" msgid "Name is required" msgstr "Nombre requerido" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Ingresa una contraseña" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Ingresa la contraseña nuevamente" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Contraseña demasiado corta" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Las contraseñas no coinciden" @@ -61,6 +61,31 @@ msgstr "Biblioteca de lectura / escritura" msgid "Read-Only library" msgstr "Biblioteca de sólo lectura" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Por favor verifique la red." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Archivos nuevos" @@ -90,35 +115,40 @@ msgstr "Carpetas eliminadas" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Fallo. Por favor, verifica la red." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "Desvinculado exitosamente %(name)s." @@ -148,12 +178,12 @@ msgstr "Falló." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Cancelado." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Ruta de destino inválida" @@ -206,8 +236,8 @@ msgid "{placeholder} Folder Permission" msgstr "{placeholder} Permiso de Carpeta" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "Buscar usuario o ingresar email y presionar Enter" @@ -223,39 +253,20 @@ msgstr "Seleccione un grupo" #: 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Error de permiso" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Por favor verifique la red." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "Por favor, seleccione una carpeta con un click." @@ -264,7 +275,7 @@ msgstr "Por favor, seleccione una carpeta con un click." msgid "{placeholder} History Setting" msgstr "{placeholder} Configuración del historial" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "Historial de biblioteca establecido con éxito." @@ -272,150 +283,150 @@ msgstr "Historial de biblioteca establecido con éxito." msgid "{placeholder} Share Links" msgstr "{placeholder} Enlaces Compartidos" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Cerrar (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Cargando..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Anterior (Flecha izquierda)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Siguiente (Flecha derecha)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% de %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "La imagen no pudo ser cargada." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Abrir en una nueva pestaña" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Contraseña requerida" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Es requerido." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Define un nombre, no solamente la extensión." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Procesando…" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "%(name)s eliminado con éxito." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "eliminado con éxito %(name)s y otro ítem." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "%(name)s y otros %(amount)s elementos eliminados con éxito." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Fallo al eliminar %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Fallo al eliminar %(name)s y otro ítem." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Fallo al eliminar %(name)s y %(amount)s otros ítems." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Eliminar elementos" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "¿Seguro que deseas eliminar los elementos selecionados?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Mover item(s) seleccionados a:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Copiar item(s) seleccionados a:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "%(name)s movido con éxito." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "%(name)s y 1 otro ítem movidos con éxito." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "%(name)s y otros %(amount)s elementos movidos con éxito." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "%(name)s copiados con éxito." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "%(name)s y 1 otro ítem copiados con éxito." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "%(name)s y otros %(amount)s elementos copiados con éxito." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Error interno. Fallo al mover %(name)s y %(amount)s otro(s) ítem(s)." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Error interno. Fallo al mover %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Error interno. Fallo al copiar %(name)s y %(amount)s otro(s) ítem(s)." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Error interno. Fallo al copiar %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Moviendo archivo %(index)s de %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Copiando archivo %(index)s de %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Fallo al mover %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Fallo al copiar %(name)s" @@ -455,10 +466,10 @@ msgstr "Resultado de subida incompleto" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -502,19 +513,19 @@ msgstr "Subir archivo cancelado" msgid "File Upload failed" msgstr "Subir archivo falló" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Fallo al obtener url de subida" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Fallo al obtener url de actualización" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "¿Reemplazar archivo {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "El archivo está bloqueado" @@ -523,7 +534,7 @@ msgid "Set {placeholder}'s permission" msgstr "Establecer permiso de {placeholder}" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Seleccionar grupos" @@ -544,32 +555,38 @@ msgstr "{placeholder} Miembros" msgid "Successfully unshared {placeholder}" msgstr "Dejado de compartir con éxito {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "No puede hacer más selecciones" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "Grupo transferido con éxito. Ahora eres un miembro normal del grupo." + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "Escoja un archivo CSV" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "Importado con éxito." -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "Descartar Gupo" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "¿Seguro que deseas descartar este grupo?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "Salir del grupo" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "¿Estás seguro que deseas abandonar el grupo?" @@ -581,11 +598,11 @@ msgstr "¿Realmente desea eliminar {lib_name}?" msgid "Delete succeeded." msgstr "Borrado con éxito." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "Transferir Biblioteca {library_name} a" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "Biblioteca transferida con éxito." @@ -593,35 +610,36 @@ msgstr "Biblioteca transferida con éxito." msgid "Share {placeholder}" msgstr "Compartir {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Expirado" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Ocultar" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Mostrar" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Por favor ingrese días." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Ingresa cantidad válida de días" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Ingresa al menos un correo." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Enviado con éxito a {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Fallo al enviar a {placeholder}" @@ -633,22 +651,26 @@ msgstr "Éxito" msgid "Successfully unstared {placeholder}" msgstr "Desmarcado con éxito {placeholder}" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "Buscar usuarios o ingresar emails y presionar Enter" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Por favor ingrese uno o más caracteres" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "No hay coincidencias" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Buscando..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "La carga falló" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "Errores eliminados con éxito." diff --git a/locale/es_MX/LC_MESSAGES/django.po b/locale/es_MX/LC_MESSAGES/django.po index f1ced4ce47..8baf780c71 100644 --- a/locale/es_MX/LC_MESSAGES/django.po +++ b/locale/es_MX/LC_MESSAGES/django.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 16:41+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 18:13+0000\n" "Last-Translator: Rodolfo Cossalter \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/haiwen/seahub/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -23,14 +23,15 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "El usuario %s ya es miembro del grupo." -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "El usuario %s no se encuentra en la organización." @@ -57,8 +58,8 @@ msgstr "Contraseña incorrecta" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Error interno de servidor" @@ -68,34 +69,34 @@ msgstr "Error en el desencriptado de la biblioteca" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Fallo al enviar el enlace compartido. El servicio de correo electrónico no está adecuadamente configurado, por favor, contacte al administrador" -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "archivo" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Un archivo ha sido compartido contigo en %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "carpeta" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Una carpeta fue compartida contigo en %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Un enlace de subida ha sido compartido contigo en %s" @@ -104,14 +105,15 @@ msgstr "Un enlace de subida ha sido compartido contigo en %s" msgid "Password is too short." msgstr "La contraseña es demasiado corta." -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Contraseña demasiado corta" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Organización de equipo de colaboraores" @@ -147,7 +149,7 @@ msgid "No activity now or the function is not supported." msgstr "Funcion o actividad no soportada." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Biblioteca creada" @@ -162,7 +164,8 @@ msgstr "Biblioteca %(library_name)s eliminada" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -170,8 +173,8 @@ msgstr "Biblioteca %(library_name)s eliminada" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -187,7 +190,7 @@ msgstr "Por favor verifique la red." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -213,13 +216,16 @@ msgstr "Fechas importantes" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -247,10 +253,11 @@ msgid "Email or Username" msgstr "Email o Nombre de usuario" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -310,7 +317,7 @@ msgid "New password confirmation" msgstr "Confirmación de nueva contraseña" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Las contraseñas no concuerdan" @@ -322,7 +329,7 @@ msgstr "Contraseña antigua" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "La contraseña antigua ingresada es incorrecta. Por favor, corrijala." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Contraseña (de nuevo)" @@ -331,15 +338,19 @@ msgstr "Contraseña (de nuevo)" msgid "Enter a valid e-mail address." msgstr "Escriba una dirección de correo electrónica válida." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "Esta cuenta ha sido inmovilizada debido a muchos intentos de acceso fallidos." + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Desconectado" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Fallo al enviar el correo, por favor, contacte al administrador" -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "No se puede actualizar la contraseña, por favor contacte al administrador de LDAP." @@ -426,6 +437,7 @@ msgstr "Avatar actual:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -437,24 +449,24 @@ msgstr "Avatar actual:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -515,43 +527,48 @@ msgstr "Avatar actualizado correctamente." msgid "Successfully deleted the requested avatars." msgstr "Avatars borrados correctamente." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "Cuenta %(account)s inmovilizada en %(site)s." + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Dirección de correo" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Nombre de usuario" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Debe tener una longitud de 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Ingresa una dirección de correo válida." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Ya existe un usuario con este correo" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "ID de usuario inválido" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "nombre" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "departamento" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "telefono" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "nota" @@ -620,7 +637,7 @@ msgid "Recovered deleted directory" msgstr "Directorio borrado recuperado" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Descripción o nombre de la biblioteca modificados." @@ -668,22 +685,22 @@ msgstr[1] "Hace %(seconds)d segundos" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -696,21 +713,21 @@ msgstr "Lectura-Escritura" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -782,15 +799,16 @@ msgstr "E-Mail" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -818,7 +836,7 @@ msgstr "E-Mail" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nombre" @@ -863,11 +881,11 @@ msgstr "Operaciones" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -888,21 +906,21 @@ msgstr "Editar" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -934,8 +952,9 @@ msgstr "Agrege contactos para compartir bibliotecas y enviar enlaces de descarga #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -945,8 +964,8 @@ msgstr "Agrege contactos para compartir bibliotecas y enviar enlaces de descarga #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Correo electrónico" @@ -1044,17 +1063,17 @@ msgstr "La descripión es demasiado extensa (máximo 100 carateres)" msgid "Name %s is not valid" msgstr "El nombre %s no es válido" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Argumento Faltante" @@ -1116,7 +1135,7 @@ msgid "Permission error: only group staff can add member" msgstr "Error de permiso: sólo miembros del grupo de administradores pueden agregar miembros" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "El grupo no existe" @@ -1266,16 +1285,16 @@ msgstr "Haga click y escoja una biblioteca." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1352,21 +1371,21 @@ msgstr "Se requiere nombre." msgid "Description is required." msgstr "Se requiere descripción." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Permiso denegado" @@ -1719,11 +1738,14 @@ msgstr "Salir" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Usuarios" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1731,9 +1753,11 @@ msgstr "Info" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1744,12 +1768,16 @@ msgid "Libraries" msgstr "Bibliotecas" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Usuarios Activos" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1809,12 +1837,12 @@ msgstr "Bibliotecas Propias" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1827,11 +1855,11 @@ msgid "Size" msgstr "Tamaño" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1841,7 +1869,7 @@ msgid "Last Update" msgstr "Última actualización" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1869,10 +1897,10 @@ msgid "This user has not created any libraries" msgstr "Este usuario no ha creado ninguna biblioteca" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Rol" @@ -1881,8 +1909,8 @@ msgstr "Rol" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Creado el" @@ -1897,7 +1925,7 @@ msgstr "Este usuario no ha creado ni se ha unido a ningún grupo" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Estado" @@ -1917,7 +1945,7 @@ msgstr "Creado el / Último incio" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Activo" @@ -1929,7 +1957,7 @@ msgstr "Activo" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Inactivo" @@ -1938,7 +1966,7 @@ msgstr "Inactivo" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Vacio" @@ -1956,33 +1984,32 @@ msgstr "Borrar usuario" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Propietario" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Administrador" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Miembro" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "Borrado correctamente %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Fallo al borrar: no existe el usuario" @@ -2006,6 +2033,7 @@ msgstr "Mensaje" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Tiempo" @@ -2052,16 +2080,22 @@ msgid "Send a message..." msgstr "Enviar un mensaje..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Anterior" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2078,18 +2112,20 @@ msgstr "Seguro que desea eliminar esta discusión?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Sí" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "No" @@ -2131,57 +2167,66 @@ msgid "Virus detected on %s" msgstr "Virus detectado en %s" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Nueva notificación en %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Error interno" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Un archivo llamado %(file_name)s es subido a %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Un archivo llamado %(file_name)s es subido a Biblioteca Eliminada" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s compartio la biblioteca %(repo_name)s contigo." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "%(user)s ha compartido una biblioteca llamada %(repo_name)s al grupo %(group_name)s." + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Has recibido un nuevo mensaje de %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s tiene una nueva discusión." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s publicó una nueva discusión en %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s solicitó unirse al grupo %(group_name)s, mensaje de verificación: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2229,11 +2274,19 @@ msgstr "%(user)s compartió una biblioteca llamada %(lib_name)s to %(group_name)s." +msgstr "%(user)s ha compartido una biblioteca llamada %(lib_name)s a %(group_name)s." + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Recibiste un nuevo mensaje de %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2241,7 +2294,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "Un archivo llamado %(file_name)s fue subido a tu carpeta %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2249,14 +2302,14 @@ msgid "" "message: %(msg)s" msgstr "El usuario %(user)s solicitó unirse al grupo %(grp_name)s, mensaje de verificación: %(msg)s." -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "El usuario %(user)s te ha agregado al grupo %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Verificar en la siguiente página:" @@ -2286,6 +2339,7 @@ msgid "Delete Notification" msgstr "Borrar notificación" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2293,6 +2347,7 @@ msgstr "Borrar notificación" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Hola," @@ -2361,14 +2416,17 @@ msgstr "Configuración del perfil" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Configuraciones" @@ -2602,40 +2660,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "La dirección de correo no debe superar los 512 caracteres" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "La contraseña no puede estar vacía" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Ingrese la contraseña correcta" +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "Su código es %(code)s, este código será válido por una hora." + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Enlaces - Compartir" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Enlaces de descarga" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Enlaces de subida" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Biblioteca" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Visitas" @@ -2646,7 +2710,7 @@ msgstr "Vencimiento" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2662,7 +2726,7 @@ msgstr "Ver" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2695,7 +2759,7 @@ msgid "Folders - Share" msgstr "Carpetas - Compartir" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Carpetas" @@ -2706,15 +2770,15 @@ msgstr "Compartir con" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Permiso" @@ -2780,175 +2844,211 @@ msgid "" "groups you are in." msgstr "Puede compartir bibliotecas con contactos dando click al icono de compartir en la página de inicio o creando una nueva biblioteca en los grupo a los cual pertenezca" -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "Email de verificación" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "Por favor provea su dirección de email para continuar." + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "Obtener código" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "Código de verificación" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "Se ha enviado un código de verificación al email." + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Fallo al compartir con los miembros, intente más tarde." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Compartido correctamente con todos los miembros, verifique en Compartidos" -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Sólo el propietario de la biblioteca puede compartirla." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "La biblioteca no existe" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Argumento inválido" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Argumento inválido" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Fallo al remover compartido" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "id de grupo no válido" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Fallo al dejar de compartir: el grupo no existe." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Compartido removido correctamente" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "Todos los miembros" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "El enlace no existe" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Error interno del servidor, o por favor verifique el(los) e-mail(s) ingresado(s)." -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Elija un directorio." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Guardado correctamente." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "El envío del enlace de subida falló. El servicio de Email no está configurado apropiadamente, contacte al administrador." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "No tienes permiso para generar enlace compartido" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Argumentos inválidos" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "La biblioteca no existe." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "La carpeta no existe." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Por favor verifique el(los) e-mail(s) ingresado(s)" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "La dirección de email es inválida" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "No se encuentra el enlace para compartir" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "Código de verificación para visitar enlaces compartidos" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "Fallo al enviar un código de verificación, por favor intente mas tarde." + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "La página solicitada no puede ser encontrada." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Salir de Administrador" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Cerrar" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Notificaciones" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Ver Todas las Notificaciones" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "Ver perfil y más" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Desconectarse" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Administración del Sistema" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Esta versión de IE no está mas soportada. Por favor actualice a versión 10 o superior." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Notificaciones" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Bienvenido a Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile organiza los archivos en bibliotecas. Cada biblioteca se puede sincronizar y compartir por separado. Se creo una biblioteca personal. Puedes crear más despúes." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2956,7 +3056,7 @@ msgid "" msgstr "Seafile organiza los archivos en bibliotecas. Cada biblioteca se puede sincronizar y compartir por separado. Sin embargo, ya que eres un invitado, no puedes crear bibliotecas." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Registrarse" @@ -2986,28 +3086,31 @@ msgid "Please enter the password." msgstr "Por favor ingrese contraseña." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Descargar" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Registro de Acceso" @@ -3016,9 +3119,12 @@ msgstr "Registro de Acceso" msgid "Current Path:" msgstr "Ruta actual:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Usuario" @@ -3028,11 +3134,16 @@ msgstr "Usuario" msgid "Type" msgstr "Tipo" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Nombre de dispositivo" @@ -3046,6 +3157,7 @@ msgstr "Usuario Anónimo" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3071,10 +3183,6 @@ msgstr "Borrador guardado." msgid "is encrypted" msgstr "está encriptado" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Contraseña:" - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "El password será almacenado en el servidor por 1 hora." @@ -3199,7 +3307,7 @@ msgstr "Columnas" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Predeterminado" @@ -3224,10 +3332,10 @@ msgid "Password is required." msgstr "Contraseña requerida" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Histórico" @@ -3323,85 +3431,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Acerca de nosotros" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Archivos" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Mías" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Compartidas" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" msgstr "Organización" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Todos los grupos" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "Herramientas" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Habilitar Modulo" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Marcado" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Actividades" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Wiki Personal" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Dispositivos" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Admin de Compartidos" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Enlaces" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Carpeta de Subida" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Agregar vencimiento automático" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Días" @@ -3419,18 +3532,12 @@ msgid "Shared Libs" msgstr "Bibliotecas Compartidas" #: 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 "Nuevo directorio" - -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Nombre del directorio" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "Nueva Carpeta" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Nuevo archivo" @@ -3448,8 +3555,7 @@ msgstr "Formateo sencillo." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Detalles" @@ -3513,7 +3619,123 @@ msgstr "Reemplazar" msgid "Don't replace" msgstr "No reemplazar" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organizaciones" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "Instituciones" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Tráfico" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Registros" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Análisis de Virus" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Información del Sistema" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Versión Profesional" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "expira el" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Versión Community" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Actualizar a Versión Pro" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Límites" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "Escritorio" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "Móvil" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "Errores" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Plataforma" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "Versión" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Último acceso" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "No hay dispositivos conectados" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Desvincular" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Limpiar" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "Dispositivo" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Error" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "No hay errores de sincronización" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Nueva biblioteca" @@ -3527,13 +3749,14 @@ msgid "Encrypt" msgstr "Encriptar" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(al menos %(repo_password_min_length)s caracteres)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Repetir contraseña" @@ -3543,34 +3766,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Dañada (por favor contacte al administrador para reparar esta biblioteca)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Compartir" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Más opciones" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Renombrar" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3593,58 +3816,59 @@ msgid "Folder Permission" msgstr "Permiso de Carpeta" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Mover" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Copiar" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Subir archivo..." -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Subir archivos" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Nueva Carpeta" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Lista" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "ver como lista" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Grilla" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "ver como grilla" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3652,175 +3876,177 @@ msgstr "ver como grilla" msgid "Trash" msgstr "Papelera" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Sub-bibliotecas" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "Acciones" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Más Opciones" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Abrir via el Cliente" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "marcado" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "desmarcado" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "bloqueado" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Desbloquear" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Bloquear" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Obtener falló" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Enlace de descarga" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Link de subida" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Compartir con usuario" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Compartir con grupo" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Agregar protección por contraseña" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(al menos %(share_link_password_min_length)s caracteres)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Mostrar" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Generar una contraseña aleatoria" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Generar" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Enlace:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Enlace de Descarga Directa:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Enviar" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Envíar a:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Correos separados por ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Mensaje (opcional):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Enviando…" -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Puede compartir el enlace generado con otros para que puedan subir archivos a esta carpeta." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Link de Subida:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Grupo" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Dejar de compartir" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3831,182 +4057,191 @@ msgstr "Wiki" msgid "Members" msgstr "Miembros" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Discusión" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Permiso del usuario" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Permiso de grupo" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "icono" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Desmarcar" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "Tipo de Biblioteca" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Compartida por" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Seleccionar bibliotecas para compartir" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Biblioteca eliminada" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Detalles de modificación" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Buscar archivos en el wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Buscar archivos en esta biblioteca" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Buscar Archivos" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "avanzado" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "No se ha compartido ninguna biblioteca con este grupo" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "propietario" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "admin" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Responder" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "Agregar Wiki" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "Remover Wiki" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Importar Miembros" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "Administrar Miembros" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Descartar" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Abandonar el grupo" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Renombrar Grupo a" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Tranferir Grupo a" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Importar miembros del grupo desde un archivo CSV" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Formato de archivo: usuario@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "Agregar" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "La configuración del historial de la biblioteca ha sido deshabilitada por el Administrador" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Mantener historial completo" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "No mantener historial" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Sólo mantener un período del historial:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "días" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Creado Por" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Carpeta" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Seleccione una carpeta" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Contraseña anterior" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Nueva contraseña (al menos %(repo_password_min_length)s caracteres)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Nueva Contraseña" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Nueva contraseña otra vez" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Desvincular" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Ver Todas las Notificaciones" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4023,6 +4258,11 @@ msgstr "Puede crear una biblioteca para organizar sus archivos. Por ejemplo, pue msgid "No library is shared to you" msgstr "No tiene bibliotecas compartidas" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organización" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Agregar Biblioteca" @@ -4069,10 +4309,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Un grupo es un espacio para intercambiar mensajes y colaborar en bibliotecas. Aquí estarán listados los grupos a los que pertenezcas." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Nombre del grupo" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4112,14 +4348,6 @@ msgid "" " page, and they will be listed here." msgstr "Los archivos marcados se listarán aqui. Puede marcar archivos importantes como favoritos dando click en el botón \"Marcar\" en la página del archivo." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Plataforma" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Último acceso" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Bibliotecas" @@ -4149,7 +4377,7 @@ msgstr "Para activar esta cuenta, por favor haga click en el siguiente enlace de #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4169,33 +4397,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "No legible? Refrescar." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Correo electrónico o contraseña incorrecta" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Recordar por %(remember_days)s días" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Fallo al refrescar el CAPTCHA. Intente más tarde." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "El email o el nombre de usuario no pueden estar en blanco" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4236,10 +4464,6 @@ msgstr "Por favor actualice su contraseña antes de continuar." msgid "Current Password" msgstr "Contraseña Actual" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Nueva Contraseña" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4376,11 +4600,6 @@ msgstr "El correo no puede estar en blanco" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Papelera" -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "Limpiar" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Borrar fecha" @@ -4402,12 +4621,12 @@ msgid "1 month ago" msgstr "más de 1 mes" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Éxito" @@ -4637,7 +4856,7 @@ msgid "Please enter password" msgstr "Ingrese una contraseña" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Borrado correctamente." @@ -4778,6 +4997,15 @@ msgstr "Marcadas" msgid "Successfully unstarred." msgstr "Favorito removido." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Nuevo directorio" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Nombre del directorio" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "cerrar" @@ -4803,88 +5031,62 @@ msgstr "Subir archivo falló" msgid "Failed to get upload url" msgstr "Fallo al obtener url de subida" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Archivo demasiado grande" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Archivo demasiado pequeño" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Tipo de archivo no permitido" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Numero máximo de archivos excedido" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Bytes actuales exceden el tamaño maximo" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Resultado de subida incompleto" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Error" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "subido" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "cancelado" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Inicio" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Es requerido." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organizaciones" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "Instituciones" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Tráfico" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Registros" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Análisis de Virus" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Creador" @@ -4936,6 +5138,13 @@ msgstr "Eliminar Biblioteca" msgid "Files / Size" msgstr "Archivos / Tamaño" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "Nota: las configuraciones via la interfaz web se guardan en una tabla de la base de datos (seahub-db/constance_config). Tienen prioridad sobre las configuraciones en los archivos." + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Confirmar contraseña para continuar" @@ -4966,10 +5175,6 @@ msgstr "Información del Grupo" msgid "No library has shared to this group" msgstr "No se ha compartido ninguna biblioteca con este grupo" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "admin" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4981,30 +5186,6 @@ msgstr "Exportar Excel" msgid "Delete Group" msgstr "Borrar grupo" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Información del Sistema" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Versión Profesional" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "expira el" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Versión Community" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Actualizar a Versión Pro" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Límites" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "Todas las Instituciones" @@ -5168,12 +5349,12 @@ msgid "Max User Number" msgstr "Máximo Número de Usuarios" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Debe ingresar un número" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "El número ingresado debe ser mayor que 0" @@ -5313,7 +5494,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP (importado)" @@ -5326,7 +5507,7 @@ msgid "Admins" msgstr "Administradores" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Último Ingreso" @@ -5352,7 +5533,7 @@ msgstr "También puedes agregar un usuario como invitado, que no podrá crear bi #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Invitado" @@ -5440,6 +5621,12 @@ msgstr "Correo electrónico: %(email)s" msgid "Password: %(password)s" msgstr "Contraseña: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "Cuenta %(user)s inmovilizada debido a una cantidad excesiva de ingresos fallidos. Por favor verificar en:" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5517,24 +5704,24 @@ msgstr "para" msgid "Sorry, this user is not registered yet." msgstr "Este usuario no está registrado aún." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Ruta actual:" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "actualizó este archivo" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Volver arriba" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "inicio" @@ -5630,8 +5817,8 @@ msgstr "Argumentos inválidos." #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Persmiso denegado." @@ -5660,8 +5847,8 @@ msgid "Duplicated filename" msgstr "Nombre de archivo duplicado" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "El archivo no existe" @@ -5720,11 +5907,11 @@ msgstr "Fallo al dejar de compartir \"%s\"." msgid "No revisions found" msgstr "No se encontraron revisiones" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Verificar error de bloqueo de archivo" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "El archivo está bloqueado" @@ -5752,12 +5939,12 @@ msgstr "Restablecido correctamente %(path)s al directorio ra msgid "\"%s\" does not exist." msgstr "\"%s\" no existe." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Error interno" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Imposible descargar directorio \"%s\": tamaño excedido." @@ -5767,11 +5954,11 @@ msgstr "Imposible descargar directorio \"%s\": tamaño excedido." msgid "Unable to download \"%s\"" msgstr "Imposible descargar \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "\"Wiki Personal\" activado correctamente." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "\"Wiki Personal\" Desactivado correctamente" @@ -5788,7 +5975,7 @@ msgid "The group doesn't exist" msgstr "El grupo no existe" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Biblioteca encriptada." @@ -5866,262 +6053,266 @@ msgstr "Falllo al conseguir lista de bloques" msgid "Wrong repo id" msgstr "repo id incorrecto" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Falló" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Identificador del enlace de subida inválido." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Id del repo en el enlace de subida, inválido." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "No hubo conflictos al unir." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Fallo al editar la información de la biblioteca." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Fallo al guardar las configuraciones del servidor" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Configuraciones guardadas." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Nombre de usuario %s invalido." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Usuario %s no encontrado." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "El usuario %s no está en la organización." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "No es posible transferir la biblioteca al usuario %s de la organización." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Fallo al cambiar la contraseña, no eres el propietario." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Permiso de carpeta inválido, debe ser \"rw\" o \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "La ruta debe comenzar con \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "La ruta no debe terminar con \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Ruta inválida" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Usuario inválido, debe estar registrado" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Operación falló" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Permiso de carpeta incorrecto" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Por favor, primero agregue el permiso de la carpeta" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Por favor verifique el(los) e-mail(s) ingresado(s) y el(los) contacto(s) seleccionado(s)" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Grupo inválido" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "El grupoa no existe." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Falló, el archivo es demasiado grande" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "Error HTTP: No se pudo abrir el archivo en línea" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "Error URL: No se pudo abrir el archivo en línea" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "La codificación elegida no es correcta." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Codificación de archivo desconocida" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "El tamaño del archivo sobrepasa %s, no se puede abrir en linea." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "La biblioteca está encriptada, no se puede abrir el archivo en línea." -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Imposible visualizar el archivo" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Formato de archivo invalido." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "No es posible descargar el archivo, ruta inválida" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "No es posible descargar el archivo, ruta errónea" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "No es posible descargar el archivo, tráfico para compartir enlaces agotado." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "No es posible ver el archivo, el tráfico para enlaces compartidos ha sido agotado." + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "La biblioteca no existe." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "La biblioteca está encriptada." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Imposible editar el archivo" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "El archivo no existe." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Este tipo de archivo no se puede editar en línea." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Imposible descargar archivo" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "No se puede acceder al archivo: tráfico para compartir enlaces agotado." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "No es posible descargar: carpeta no encontrada" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "No se puede ver la biblioteca " -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "No se puede ver la biblioteca, ruta errónea." -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Nombre de usuario inválido" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "Fallo al exportar Excel" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Fallo al definir cuota: la cuota máxima es %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Fallo al definir cuota: error interno del servidor" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Fallo al borrar: el usuario es el creador de una organización" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Evaluación eliminada con éxito para: %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Los permisos de administrador de %s fueron revocados" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Fallo al revocar admin: el usuario no existe" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Tu cuenta en %s está activada." -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "La contraseña ha sido reestablecida en %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Contraseña restablecida correctamente %(passwd)s, un correo fue enviado a %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Contraseña restablecida a %(passwd)s, pero hubo un fallo al enviar el correo a %(user)s, revise su configuracion de email." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Contraseña de %(user)s restablecida a %(passwd)s correctamente." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6129,107 +6320,107 @@ msgid "" "configured." msgstr "Contraseña de o %(user)s restablecida a %(passwd)s. Pero el correo de notificación no pudo ser enviado, porque el servicio de correo no está configurado correctamente." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Fallo al cambiar la contraseña: el usuario no existe." -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Estás invitado a unirte a %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Fallo al agregar el usuario %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "El usuario %s fue agregado correctamente. Se ha enviado un correo de aviso." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "El usuario %s fue agregado correctamente. Pero hubo un error al enviar la notificación; por favor, revise la configuración del correo." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "El usuario %s fue agregado correctamente." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "El usuario %s fue agregado correctamente. Pero el correo de aviso no pudo ser envíado, el servicio de correo no esta configurado." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Fallo al renombrar organización" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Eliminado con éxito" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Fallo al transferir, argumentos inválidos." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Fallo al transferir, usuario %s no encontrado" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "No es posible transferir la biblioteca de la organización" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "No es posible transferir la biblioteca al usuario %s de la organización" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Transferido correctamente." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "La bibilioteca del sistema no puede ser eliminada." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Fallo al eliminar, por favor intente más tarde." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s asignado como administrador." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Fallo al definir %s como administrador: el usuario no existe." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Importado exitosamente" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Primero escoja un archivo csv." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Configuración inválida" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Valor inválido" diff --git a/locale/es_MX/LC_MESSAGES/djangojs.po b/locale/es_MX/LC_MESSAGES/djangojs.po index 0241164f23..94b3055ddc 100644 --- a/locale/es_MX/LC_MESSAGES/djangojs.po +++ b/locale/es_MX/LC_MESSAGES/djangojs.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 16:46+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 18:19+0000\n" "Last-Translator: Rodolfo Cossalter \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/haiwen/seahub/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -20,12 +20,12 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Ahora" @@ -33,19 +33,19 @@ msgstr "Ahora" msgid "Name is required" msgstr "Nombre requerido" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Ingresa una contraseña" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Ingresa la contraseña nuevamente" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Contraseña demasiado corta" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Las contraseñas no coinciden" @@ -61,6 +61,31 @@ msgstr "Biblioteca de lectura / escritura" msgid "Read-Only library" msgstr "Biblioteca de sólo lectura" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Por favor verifique la red." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Archivos nuevos" @@ -90,35 +115,40 @@ msgstr "Carpetas eliminadas" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Fallo. Por favor, verifica la red." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "Desvinculado exitosamente %(name)s." @@ -148,12 +178,12 @@ msgstr "Falló." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Cancelado." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Ruta de destino inválida" @@ -206,8 +236,8 @@ msgid "{placeholder} Folder Permission" msgstr "{placeholder} Permiso de Carpeta" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "Buscar usuario o ingresar email y presionar Enter" @@ -223,39 +253,20 @@ msgstr "Seleccione un grupo" #: 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Error de permiso" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Por favor verifique la red." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "Por favor, seleccione una carpeta con un click." @@ -264,7 +275,7 @@ msgstr "Por favor, seleccione una carpeta con un click." msgid "{placeholder} History Setting" msgstr "{placeholder} Configuración del historial" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "Historial de biblioteca establecido con éxito." @@ -272,150 +283,150 @@ msgstr "Historial de biblioteca establecido con éxito." msgid "{placeholder} Share Links" msgstr "{placeholder} Enlaces Compartidos" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Cerrar (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Cargando..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Anterior (Flecha izquierda)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Siguiente (Flecha derecha)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% de %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "La imagen no pudo ser cargada." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Abrir en una nueva pestaña" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Contraseña requerida" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Es requerido." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Define un nombre, no solamente la extensión." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Procesando…" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "%(name)s eliminado con éxito." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "eliminado con éxito %(name)s y otro ítem." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "%(name)s y otros %(amount)s elementos eliminados con éxito." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Fallo al eliminar %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Fallo al eliminar %(name)s y otro ítem." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Fallo al eliminar %(name)s y %(amount)s otros ítems." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Eliminar elementos" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "¿Seguro que deseas eliminar los elementos selecionados?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Mover item(s) seleccionados a:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Copiar item(s) seleccionados a:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "%(name)s movido con éxito." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "%(name)s y 1 otro ítem movidos con éxito." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "%(name)s y otros %(amount)s elementos movidos con éxito." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "%(name)s copiados con éxito." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "%(name)s y 1 otro ítem copiados con éxito." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "%(name)s y otros %(amount)s elementos copiados con éxito." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Error interno. Fallo al mover %(name)s y %(amount)s otro(s) ítem(s)." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Error interno. Fallo al mover %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Error interno. Fallo al copiar %(name)s y %(amount)s otro(s) ítem(s)." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Error interno. Fallo al copiar %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Moviendo archivo %(index)s de %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Copiando archivo %(index)s de %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Fallo al mover %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Fallo al copiar %(name)s" @@ -455,10 +466,10 @@ msgstr "Resultado de subida incompleto" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -502,19 +513,19 @@ msgstr "Subir archivo cancelado" msgid "File Upload failed" msgstr "Subir archivo falló" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Fallo al obtener url de subida" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Fallo al obtener url de actualización" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "¿Reemplazar archivo {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "El archivo está bloqueado" @@ -523,7 +534,7 @@ msgid "Set {placeholder}'s permission" msgstr "Establecer permiso de {placeholder}" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Seleccionar grupos" @@ -544,32 +555,38 @@ msgstr "{placeholder} Miembros" msgid "Successfully unshared {placeholder}" msgstr "Dejado de compartir con éxito {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "No puede hacer más selecciones" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "Grupo transferido con éxito. Ahora eres un miembro normal del grupo." + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "Escoja un archivo CSV" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "Importado con éxito." -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "Descartar Gupo" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "¿Seguro que deseas descartar este grupo?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "Salir del grupo" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "¿Estás seguro que deseas abandonar el grupo?" @@ -581,11 +598,11 @@ msgstr "¿Realmente desea eliminar {lib_name}?" msgid "Delete succeeded." msgstr "Borrado con éxito." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "Transferir Biblioteca {library_name} a" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "Biblioteca transferida con éxito." @@ -593,35 +610,36 @@ msgstr "Biblioteca transferida con éxito." msgid "Share {placeholder}" msgstr "Compartir {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Expirado" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Ocultar" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Mostrar" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Por favor ingrese días." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Ingresa cantidad válida de días" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Ingresa al menos un correo." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Enviado con éxito a {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Fallo al enviar a {placeholder}" @@ -633,22 +651,26 @@ msgstr "Éxito" msgid "Successfully unstared {placeholder}" msgstr "Desmarcado con éxito {placeholder}" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "Buscar usuarios o ingresar emails y presionar Enter" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Por favor ingrese uno o más caracteres" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "No hay coincidencias" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Buscando..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "La carga falló" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "Errores eliminados con éxito." diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index 716f412f27..6f7d8512d0 100644 --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" -"Last-Translator: zheng xie \n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-07 08:24+0000\n" +"Last-Translator: Gaspard \n" "Language-Team: French (http://www.transifex.com/haiwen/seahub/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,14 +32,15 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "L'utilisateur %s est déjà membre d'un groupe." -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "L'utilisateur %s n'a pas été trouvé dans l’organisation." @@ -66,8 +67,8 @@ msgstr "Le mot de passe est erroné" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Erreur interne du serveur" @@ -77,34 +78,34 @@ msgstr "Erreur de déchiffrement de la bibliothèque" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "L'envoi du lien partagé a échoué. Le service d'email n'est pas configuré correctement, veuillez contacter l'administrateur." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "fichier" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Un fichier a été partagé avec vous sur %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "répertoire" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Un dossier vous est partagé sur %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Un lien d'envoi a été partagé pour vous sur %s" @@ -113,14 +114,15 @@ msgstr "Un lien d'envoi a été partagé pour vous sur %s" msgid "Password is too short." msgstr "Le mot de passe est trop court." -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Le mot de passe est trop court" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Organisation des fichiers de collaboration d'équipe" @@ -156,7 +158,7 @@ msgid "No activity now or the function is not supported." msgstr "Pas d'activité actuellement ou la fonction n'est pas supportée." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Bibliothèque créée" @@ -171,7 +173,8 @@ msgstr "Bibliothèque %(library_name)s supprimée" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -179,8 +182,8 @@ msgstr "Bibliothèque %(library_name)s supprimée" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -196,7 +199,7 @@ msgstr "Veuillez vérifier le réseau." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -222,13 +225,16 @@ msgstr "Dates importantes" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -256,10 +262,11 @@ msgid "Email or Username" msgstr "E-mail ou nom d'utilisateur" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -319,7 +326,7 @@ msgid "New password confirmation" msgstr "Confirmation du nouveau mot de passe" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Les deux mots de passe ne correspondent pas." @@ -331,7 +338,7 @@ msgstr "Ancien mot de passe" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Votre ancien mot de passe n'a pas été correctement saisi. Veuillez l’introduire à nouveau." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Mot de passe (encore)" @@ -340,15 +347,19 @@ msgstr "Mot de passe (encore)" msgid "Enter a valid e-mail address." msgstr "Entrez une adresse e-mail valide." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "Ce compte a été bloqué suite à de trop nombreuses tentatives de connexions." + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Déconnecté" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Échec de l'envoi de l'e-mail, veuillez contacter l'administrateur." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Impossible de mettre à jour votre mot de passe, veuillez contacter votre administrateur LDAP." @@ -435,6 +446,7 @@ msgstr "Avatar actuel : " #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -446,24 +458,24 @@ msgstr "Avatar actuel : " #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -524,43 +536,48 @@ msgstr "Votre avatar a été mis à jour avec succès." msgid "Successfully deleted the requested avatars." msgstr "Les avatars demandés ont été supprimés avec succès" -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "Compte %(account)s bloqué sur %(site)s." + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Adresse e-mail" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Nom d'utilisateur" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Cette valeur doit être de longueur 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Entrez une adresse e-mail valide." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Un utilisateur avec cette adresse e-mail existe déjà." -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "ID d'utilisateur non valide." -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "nom" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "département" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "téléphone" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "note" @@ -629,7 +646,7 @@ msgid "Recovered deleted directory" msgstr "Récupération du dossier supprimé." #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Le nom de la bibliothèque ou sa description a changé." @@ -677,22 +694,22 @@ msgstr[1] "Il y a %(seconds)d secondes" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -705,21 +722,21 @@ msgstr "Lecture / Écriture" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -791,15 +808,16 @@ msgstr "E-mail " #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -827,7 +845,7 @@ msgstr "E-mail " #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nom" @@ -872,11 +890,11 @@ msgstr "Actions" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -897,21 +915,21 @@ msgstr "Modifier" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -943,8 +961,9 @@ msgstr "En ajoutant vos contacts, vous pourrez rapidement partager des biblioth #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -954,8 +973,8 @@ msgstr "En ajoutant vos contacts, vous pourrez rapidement partager des biblioth #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "E-mail" @@ -1053,17 +1072,17 @@ msgstr "La description est trop longue (le maximum est de 100 caractères)" msgid "Name %s is not valid" msgstr "Le nom %s n'est pas valide" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Argument manquant" @@ -1125,7 +1144,7 @@ msgid "Permission error: only group staff can add member" msgstr "Erreur de permission : seuls les administrateurs du groupe peuvent ajouter des membres" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Le groupe n'existe pas" @@ -1275,16 +1294,16 @@ msgstr "Veuillez cliquer puis choisissez une bibliothèque." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1361,21 +1380,21 @@ msgstr "Le nom est requis." msgid "Description is required." msgstr "La description est requise." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Autorisation refusée" @@ -1728,11 +1747,14 @@ msgstr "Quitter" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Utilisateurs" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1740,9 +1762,11 @@ msgstr "Info" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1753,12 +1777,16 @@ msgid "Libraries" msgstr "Bibliothèques" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Utilisateurs actifs" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1818,12 +1846,12 @@ msgstr "Bibliothèques possédées" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1836,11 +1864,11 @@ msgid "Size" msgstr "Taille" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1850,7 +1878,7 @@ msgid "Last Update" msgstr "Mise à jour" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1878,10 +1906,10 @@ msgid "This user has not created any libraries" msgstr "Cet utilisateur n'a créé aucune librairie" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Rôle" @@ -1890,8 +1918,8 @@ msgstr "Rôle" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Créé le" @@ -1906,7 +1934,7 @@ msgstr "L'utilisateur n'a pas été créé ou n'a rejoint aucun groupe" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Statut" @@ -1926,7 +1954,7 @@ msgstr "Créé le / Dernière connexion" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Actif" @@ -1938,7 +1966,7 @@ msgstr "Actif" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Inactif" @@ -1947,7 +1975,7 @@ msgstr "Inactif" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Vide" @@ -1965,33 +1993,32 @@ msgstr "Supprimer l'utilisateur" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Propriétaire" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Administration" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Membre" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s a été supprimé avec succès." -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Impossible de supprimer : l'utilisateur n'existe pas" @@ -2015,6 +2042,7 @@ msgstr "Message" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Heure" @@ -2061,16 +2089,22 @@ msgid "Send a message..." msgstr "Envoi du message..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Précédent" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2087,18 +2121,20 @@ msgstr "Voulez-vous vraiment supprimer cette discussion ?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Oui" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Non" @@ -2140,57 +2176,66 @@ msgid "Virus detected on %s" msgstr "Virus détecté sur %s" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr " Nouvelle notification sur %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Erreur interne" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Un fichier nommé %(file_name)s est envoyé vers %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Un fichier nommé %(file_name)s est envoyé vers Bibliothèque supprimée" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s a partagé une bibliothèque nommée %(repo_name)s avec vous." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "%(user)s a partagé une bibliothèque nommée %(repo_name)s au groupe %(group_name)s." + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Vous avez reçu un nouveau message de %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s a une nouvelle discussion." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s à posté une nouvelle discussion dans %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s a demandé à rejoindre un groupe %(group_name)s, message de vérification: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2238,11 +2283,19 @@ msgstr "%(user)s a partagé une bibliothèque nommée %(lib_name)s to %(group_name)s." +msgstr "%(user)s a partagé une bibliothèque nommée %(lib_name)s à %(group_name)s." + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Vous avez reçu un nouveau message de %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2250,7 +2303,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "Un fichier nommé %(file_name)s a été envoyé dans votre dossier %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2258,14 +2311,14 @@ msgid "" "message: %(msg)s" msgstr "L'utilisateur %(user)s vous demande de rejoindre un groupe %(grp_name)s, message de vérification : %(msg)s." -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "L'utilisateur %(user)s vous a ajouté au groupe %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Allez vérifier à la page suivante :" @@ -2295,6 +2348,7 @@ msgid "Delete Notification" msgstr "Supprimer la notification" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2302,6 +2356,7 @@ msgstr "Supprimer la notification" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Bonjour," @@ -2370,14 +2425,17 @@ msgstr "Profil" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Paramètres" @@ -2611,40 +2669,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "L'e-mail ne peut pas dépasser 512 caractères." -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "Le mot de passe ne peut pas être vide" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Saisissez un mot de passe correct." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "Votre code est %(code)s, ce code sera valide pour une heure." + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Liens - Partage" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Liens de téléchargement" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Liens d’envoi" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Bibliothèque" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Visites" @@ -2655,7 +2719,7 @@ msgstr "Expiration" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2671,7 +2735,7 @@ msgstr "Voir" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2704,7 +2768,7 @@ msgid "Folders - Share" msgstr "Dossiers - Partage" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Dossiers" @@ -2715,15 +2779,15 @@ msgstr "Partagée avec" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Droit" @@ -2789,175 +2853,211 @@ msgid "" "groups you are in." msgstr "Vous pouvez partager des bibliothèques avec vos contacts en cliquant sur l'icône de partage de vos propres bibliothèques dans votre page d'accueil ou en créant une nouvelle bibliothèque dans les groupes auxquels vous appartenez." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "Vérification de l'e-mail" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "Veuillez renseigner votre e-mail pour continuer." + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "Obtenir un code" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "Code de vérification" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "Un code de vérification a été envoyé sur votre e-mail." + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Échec de partage avec tous les membres, veuillez réessayer plus tard." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Partagé avec tous les membres avec succès, vous pouvez vérifier sur Partages." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Seul le propriétaire de la bibliothèque a l'autorisation de la partager." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "La bibliothèque n'existe pas" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Argument invalide" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "L'argument est invalide" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Échec de suppression du partage." -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "l'ID du groupe n'est pas valide" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "L'annulation du partage a échoué : le groupe n'existe pas." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Partage supprimé avec succès" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "Tous les membres" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Le lien n'existe pas" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Erreur interne du serveur, ou vérifier le(s) e-mail(s) reçus" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Veuillez choisir un dossier." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Sauvegardé avec succès." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "L'envoi du lien d'envoi a échoué. Le service d'e-mail n'est pas configuré correctement, veuillez contacter l'administrateur." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "Vous n'avez pas les droits pour créer un lien de partage" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Arguments non valides" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "La bibliothèque n'existe pas." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "Le répertoire n’existe pas." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Veuillez vérifier le(s) e-mail(s) saisis" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "L'adresse e-mail n'est pas valide" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "Le lien de partage n'a pas été trouvé" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "Code de vérification pour les liens de partage" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "L'envoi du code de vérification a échoué, veuillez réessayer plus tard." + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Désolé, mais la page demandée est introuvable." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Quitter l'administration" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Fermer" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Notifications" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Voir toutes les notifications" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" -msgstr "" +msgstr "Voir le profile et plus" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Déconnexion" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Administration" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Cette version de IE n'est plus supportée. Passez à la version 10 ou supérieure" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Notifications" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Bienvenue sur Seafile !" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile organise les fichiers dans des bibliothèques. Chaque bibliothèque peut être synchronisée et partagée séparément. Nous avons créé une bibliothèque personnelle pour vous. Vous pourrez créer plus de bibliothèques plus tard." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2965,7 +3065,7 @@ msgid "" msgstr "Seafile organise les fichiers dans des bibliothèques. Chaque bibliothèque peut être synchronisée et partagée séparément. Cependant comme vous êtes un invité vous ne pouvez pas créer des bibliothèques." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "S'enregistrer" @@ -2995,28 +3095,31 @@ msgid "Please enter the password." msgstr "Veuillez entrer le mot de passe." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Télécharger" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Fichier trace" @@ -3025,9 +3128,12 @@ msgstr "Fichier trace" msgid "Current Path:" msgstr "Chemin d'accès actuel :" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Utilisateur" @@ -3037,11 +3143,16 @@ msgstr "Utilisateur" msgid "Type" msgstr "Type" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Nom du périphérqiue" @@ -3055,6 +3166,7 @@ msgstr "Utilisateur anonyme" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3080,10 +3192,6 @@ msgstr "Brouillon enregistré." msgid "is encrypted" msgstr "est chiffrée" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Mot de passe : " - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "Le mot de passe est conservé sur le serveur pendant 1 heure." @@ -3208,7 +3316,7 @@ msgstr "Colonnes" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Défaut" @@ -3233,10 +3341,10 @@ msgid "Password is required." msgstr "Le mot de passe est requis." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Historique" @@ -3332,85 +3440,90 @@ msgstr "Seafile" msgid "About Us" msgstr "À propos de nous" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Fichiers" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Personnelles" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Partagées" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" msgstr "Organisation" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Tous les groupes" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "Outils" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Activer les modules" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Favoris" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Activités" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Wiki personnel" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Périphériques" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Mes partages" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Liens" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Importer un dossier" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Ajouter l'expiration automatique" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Nombre de jours" @@ -3428,18 +3541,12 @@ msgid "Shared Libs" msgstr "Bibliothèques partagées" #: 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" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" msgstr "Nouveau dossier" -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Nom du dossier" - #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Nouveau fichier" @@ -3457,8 +3564,7 @@ msgstr "Format de balisage simple." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Détails" @@ -3522,7 +3628,123 @@ msgstr "Remplacer" msgid "Don't replace" msgstr "Ne pas remplacer" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organisations" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "Institutions" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Trafic" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Logs" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Recherche de virus" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Information système" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Édition professionnelle" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "Expire le" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Édition communautaire" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Passer à l'édition pro" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Limites" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "Bureau" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "Mobile" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "Erreurs" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Plateforme" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "Version" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Dernier accès" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "Appareils déconnectés" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Annuler le lien" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Nettoyer" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "Appareil" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Erreur " + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "Aucune erreur de synchronisation" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Nouvelle bibliothèque" @@ -3536,13 +3758,14 @@ msgid "Encrypt" msgstr "Chiffrer" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(Au moins %(repo_password_min_length)s caractères)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Mot de passe à nouveau" @@ -3552,34 +3775,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Endommagée (Veuillez contacter un administrateur afin de réparer cette bibliothèque)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Partager" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Plus d'actions" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Renommer" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3602,58 +3825,59 @@ msgid "Folder Permission" msgstr "Droits sur le dossier" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Déplacer" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Copier" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Importer" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Importer des fichiers" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Nouveau dossier" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Lister" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" -msgstr "" +msgstr "Vue en liste" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Grid" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" -msgstr "" +msgstr "Vue en grille" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3661,175 +3885,177 @@ msgstr "" msgid "Trash" msgstr "Corbeille" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Sous-bibliothèques" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" -msgstr "" +msgstr "Actions" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Plus d'actions" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Ouvert avec le client" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "favoris" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "Retiré des favoris" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "verrouillé" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Déverrouiller" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Verrouiller" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Échec de la recherche" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Lien de téléchargement" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Lien d'envoi" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Partager à un utilisateur" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Partager avec un groupe" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Ajouter un mot de passe de protection" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(Au moins %(share_link_password_min_length)s caractères)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Afficher" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Générer un mot de passe aléatoire" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Générer" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Lien : " -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Lien de téléchargement direct :" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Envoyer" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Envoyer à :" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "E-mails, séparés par ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Message (optionnel) : " -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Envoi..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Vous pouvez partager le lien généré avec d'autres. Ils pourront ensuite envoyer des fichiers dans ce dossier." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Lien d'envoi :" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Groupe" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Quitter le partage" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3840,182 +4066,191 @@ msgstr "Wiki" msgid "Members" msgstr "Membres" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Discussion" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Droits de l'utilisateur" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Droits du groupe" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "icône" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Décocher" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" -msgstr "" +msgstr "Type de bibliothèque" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Partagé par" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Sélectionnez la librairie à partager" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Supprimer une bibliothèque" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Détails de la modification" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Recherche de fichiers dans ce wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Recherche de fichiers dans cette bibliothèque" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Recherche de fichiers" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "avancé" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "Aucune bibliothèque n'est partagée avec ce groupe" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "Propriétaire" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "admin" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Répondre" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "Ajouter un Wiki" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "Supprimer un Wiki" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Importer des utilisateurs" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "Gestion des membres" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Supprimer" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Quitter le groupe" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Renommer le groupe en " -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Transférer le groupe à" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Importer les membres d'un groupe depuis un fichier CSV" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Format du fichier : user@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "Ajouter" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "Le paramètre d'historique de la bibliothèque a été désactivé par l'administrateur" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Conserver un historique complet" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Ne pas conserver l'historique" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Ne conserver qu'une période de l'historique :" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "jours" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Créé par" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Dossier" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Choisissez un dossier" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Ancien mot de passe" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Nouveau mot de passe (Au moins %(repo_password_min_length)s caractères) " +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Nouveau mot de passe" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Mot de passe à nouveau" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Annuler le lien" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Voir toutes les notifications" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4032,6 +4267,11 @@ msgstr "Vous pouvez créer une bibliothèque pour organiser vos fichiers. Vous p msgid "No library is shared to you" msgstr "Aucune bibliothèque n'est partagée avec vous" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organisation" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Ajouter une bibliothèque" @@ -4078,10 +4318,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Un groupe est un espace où vous et vos partenaires peuvent déposer des messages et collaborer dans des bibliothèques. Les groupes que vous avez rejoints sont listés ici." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Nom du groupe" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4097,15 +4333,15 @@ msgstr "Les bibliothèques partagées en écriture peuvent être téléchargées #: seahub/templates/libraries.html:143 msgid "Discussions" -msgstr "" +msgstr "Discussions" #: seahub/templates/libraries.html:147 msgid "More..." -msgstr "" +msgstr "Plus ..." #: seahub/templates/libraries.html:149 msgid "No discussion in this group yet." -msgstr "" +msgstr "Il n'y a pas encore de discussion dans ce groupe." #: seahub/templates/libraries.html:156 msgid "Add a discussion..." @@ -4121,14 +4357,6 @@ msgid "" " page, and they will be listed here." msgstr "Vous pouvez mettre en favoris des fichiers importants en cliquant sur l'étoile associée au fichier dans l'arborescence. Ils seront listés ici." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Plateforme" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Dernier accès" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Bibliothèques" @@ -4158,7 +4386,7 @@ msgstr "Pour activer ce compte, veuillez cliquer sur le lien suivant dans les %( #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4178,33 +4406,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Pas clair? Rafraîchissez-le." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Mot de passe ou e-mail incorrect" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Se souvenir de moi pendant %(remember_days)s jours" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Impossible de rafraichir le CAPTCHA, veuillez essayer ultérieurement." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "L'e-mail ou le nom d'utilisateur ne peut être vide" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4245,10 +4473,6 @@ msgstr "Veuillez mettre à jour votre mot de passe avant de poursuivre." msgid "Current Password" msgstr "Mot de passe actuel" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Nouveau mot de passe" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4385,11 +4609,6 @@ msgstr "L'adresse e-mail ne peut pas être vide" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Corbeille" -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "Nettoyer" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Date de suppression" @@ -4411,12 +4630,12 @@ msgid "1 month ago" msgstr "Il y a 1 mois" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Succès" @@ -4511,7 +4730,7 @@ msgstr "Rendez-vous sur la page suivante et envoyez des fichiers :" msgid "" "Your account is created successfully, please wait for administrator to " "activate your account." -msgstr "" +msgstr "Votre compte a bien été créé avec succès, veuillez patienter le temps qu'un administrateur active votre compte." #: seahub/templates/snippets/add_file_js.html:15 msgid "You don't have any library at present" @@ -4646,7 +4865,7 @@ msgid "Please enter password" msgstr "Veuillez entrer le mot de passe" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Suppression avec succès." @@ -4787,6 +5006,15 @@ msgstr "Favoris" msgid "Successfully unstarred." msgstr "Supprimé des favoris avec succès." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Nouveau dossier" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Nom du dossier" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "Fermer" @@ -4812,88 +5040,62 @@ msgstr "Échec de l'envoi du fichier." msgid "Failed to get upload url" msgstr "Impossible de récupérer le lien d'envoi" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Le fichier est trop volumineux." -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Le fichier est trop petit" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Ce type de fichier n'est pas autorisé" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Le nombre de fichiers maximum est dépassé" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Le nombre d'octets envoyés dépasse la taille du fichier" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Résultat d'envoi du fichier vide" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Erreur " - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "Importé" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "Annulé" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Démarrer" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "C'est requis." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organisations" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "Institutions" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Trafic" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Logs" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Recherche de virus" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Créateur" @@ -4945,6 +5147,13 @@ msgstr "Supprimer la bibliothèque" msgid "Files / Size" msgstr "Fichiers / Taille" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "Remarque : Les paramètres sont sauvegardés dans une table de base de données (seahub-db/constance_config). Elles ont une priorité supérieures aux paramètres des fichiers de configurations." + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Confirmer le mot de passe pour continuer" @@ -4975,10 +5184,6 @@ msgstr "Informations du groupe" msgid "No library has shared to this group" msgstr "Aucune bibliothèque partagée avec ce groupe" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "admin" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4990,30 +5195,6 @@ msgstr "Exporter vers Excel" msgid "Delete Group" msgstr "Supprimer le groupe" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Information système" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Édition professionnelle" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "Expire le" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Édition communautaire" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Passer à l'édition pro" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Limites" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "Toutes les institutions" @@ -5177,12 +5358,12 @@ msgid "Max User Number" msgstr "Nombre maximal d'utilisateurs" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "La saisie doit être un nombre" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "Le nombre saisi doit être supérieur à 0" @@ -5322,7 +5503,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP (importé)" @@ -5335,7 +5516,7 @@ msgid "Admins" msgstr "Administrateurs" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Dernière connexion" @@ -5361,7 +5542,7 @@ msgstr "Vous pouvez aussi ajouter un utilisateur comme invité, qui ne sera pas #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Invité" @@ -5449,6 +5630,12 @@ msgstr "E-mail : %(email)s" msgid "Password: %(password)s" msgstr "Mot de passe : %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "Le compte %(user)s est bloqué suite à de trop nombreux échecs de connexion. Veuillez vérifier sur :" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5526,24 +5713,24 @@ msgstr "vers" msgid "Sorry, this user is not registered yet." msgstr "Désolé, cet utilisateur n'est pas encore enregistré." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Chemin d'accès actuel : " -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "mise à jour de ce fichier" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Retour en haut" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "début" @@ -5639,8 +5826,8 @@ msgstr "Arguments non valides" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Autorisation refusée" @@ -5669,8 +5856,8 @@ msgid "Duplicated filename" msgstr "Nom de fichier dupliqué" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Le fichier n'existe pas" @@ -5729,11 +5916,11 @@ msgstr "Impossible d'annuler le partage \"%s\"." msgid "No revisions found" msgstr "Pas de révision trouvée" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Examiner l'erreur de verrouillage de fichier" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "Le fichier est verrouillé" @@ -5761,12 +5948,12 @@ msgstr "Retour en arrière réussi %(path)s vers dossier rac msgid "\"%s\" does not exist." msgstr "\"%s\" n'existe pas." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Erreur interne" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Impossible de télécharger le dossier \"%s\" : cet élément est trop volumineux." @@ -5776,11 +5963,11 @@ msgstr "Impossible de télécharger le dossier \"%s\" : cet élément est trop v msgid "Unable to download \"%s\"" msgstr "Impossible de télécharger \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "Activation de \"Wiki personnel\" réussie." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "Désactivation de \"Wiki personnel\" réussie." @@ -5797,7 +5984,7 @@ msgid "The group doesn't exist" msgstr "Le groupe n'existe pas" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "La bibliothèque est chiffrée." @@ -5875,262 +6062,266 @@ msgstr "Impossible de récupérer la liste des blocs du fichier" msgid "Wrong repo id" msgstr "Mauvais ID de repo" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Échoué" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Mauvais token de lien d'envoi." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Mauvais id de dépôt dans le lien d'envoi." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Pas de conflit dans la fusion." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Échec de l'édition des informations de la bibliothèque." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Impossible d'enregistrer les paramètres sur le serveur" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Paramètres enregistrés." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Le nom d'utilisateur %s n'est pas valide." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "L'utilisateur %s est introuvable." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "L'utilisateur %s n'est pas dans l'organisation actuelle." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "Impossible de transférer cette bibliothèque à l'utilisateur de l'organisation %s." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Impossible de changer le mot de passe, vous n'êtes pas le propriétaire." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Droits sur le dossiers non valides, doivent être \"rw\" ou \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "Le chemiin doit débuter par \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "Le chemin doit se terminer par \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Chemin non valide" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Utilisateur non valide, il doit être enregistré" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "L'opération a echoué" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Droit erroné sur le dossier" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Ajouter d'abord des droits sur le dossier" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Vérifier le(s) e-mail(s) saisis et les contacts sélectionnés" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Groupe non valide" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "Le groupe n'existe pas." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Échec, Le fichier est trop volumineux" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTPError: impossible d'ouvrir le fichier en ligne" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URLError: impossible d'ouvrir le fichier en ligne" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "L'encodage que vous avez choisi n'est pas approprié." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Encodage de fichier inconnu." -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "La taille du fichier dépasse %s, il ne peut donc pas être visionné en ligne." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "La bibliothèque est chiffrée. Elle ne peut pas être ouverte en ligne" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Impossible d'afficher le fichier" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Format de fichier invalide." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "Impossible de télécharger le fichier, chemin de fichier invalide" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "Impossible de télécharger le fichier, chemin de fichier erroné" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "Impossible de télécharger le fichier, le volume de transfert du lien de partage est dépassé" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "Impossible de voir le fichier brut, le trafic de lien de partage est épuisé." + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "La bibliothèque n'existe pas." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "La bibliothèque est chiffrée." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Impossible de modifier le fichier" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Le fichier n'existe pas." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "L'édition en ligne n'est pas possible pour ce type de fichier." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Impossible de télécharger le fichier" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Impossible d'accéder au fichier : le trafic du lien de partage est dépassé." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "Impossible de télécharger : Dossier non trouvé" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "Impossible d'afficher la bibliothèque" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "Impossible d'afficher la bibliothèque, erreur de chemin du dossier." -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Nom d'utilisateur non valide" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "Impossible d'exporter vers Excel" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Impossible de définir le quota : quota maximum %d Mo" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Échec de mise en place du quota : erreur interne du serveur" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Impossible de supprimer : l'utilisateur est le créateur de l'organisation" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Succès de la suppression du test pour : %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Permissions administrateur de %s supprimées avec succès" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Impossible de supprimer les droits administrateur : l'utilisateur n'existe pas" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Votre compte sur %s a été activé" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "Le mot de passe a été réinitialisé sur %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Le mot de passe de %(passwd)s a été réinitialisé avec succès, un e-mail a été envoyé à %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Mot de passe remplacé par %(passwd)s avec succès, mais impossible d'envoyer l'e-mail à %(user)s. Le service d'e-mail n'est pas configuré correctement." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Mot de passe de l'utilisateur %(user)s remplacé par %(passwd)s avec succès." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6138,107 +6329,107 @@ msgid "" "configured." msgstr "Le mot de passe de l'utilisateur %(user)s a été remplacé par %(passwd)s avec succès. Malheureusement la notification par e-mail ne peut pas être envoyée : le service d'e-mail n'est pas configuré correctement." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Impossible de réinitialiser le mot de passe : l'utilisateur n'existe pas" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Vous êtes invité à rejoindre %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Échec de l'ajout de l'utilisateur %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "Utilisateur %s ajouté avec succès. Une notification par e-mail a été envoyée." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "Utilisateur %s ajouté avec succès. Une erreur s'est produite lors de l'envoi de notification par email. Le service de courrier électronique n'est pas configuré correctement." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "L'utilisateur %s a été ajouté avec succès." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "L'utilisateur %s a été ajouté avec succès. La notification par e-mail ne peut être envoyée, le service d'e-mail n'est pas configuré correctement." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Impossible de renommer l'organisation" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Supprimé avec succès" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Échec du transfert, arguments invalides." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Échec du transfert, l'utilisateur %s n'a pas été trouvé" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "Impossible de transférer la librairie de l'organisation" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "Impossible de transférer cette bibliothèque à l'utilisateur de l'organisation %s" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Transférée avec succès." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "La librairie système ne peut pas être supprimée." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Échec de la suppression, veillez réessayer plus tard." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s défini avec succès en tant qu’administrateur." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Impossible de définir %s en tant qu’administrateur : l'utilisateur n'existe pas." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Importation réussie" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Veuillez d'abord sélectionner un fichier CSV." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Paramètre non valide" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Valeur non valide" diff --git a/locale/fr/LC_MESSAGES/djangojs.po b/locale/fr/LC_MESSAGES/djangojs.po index 768e40f717..c99649420d 100644 --- a/locale/fr/LC_MESSAGES/djangojs.po +++ b/locale/fr/LC_MESSAGES/djangojs.po @@ -5,14 +5,15 @@ # Translators: # EricLF44 , 2015 # LowMemory, 2016 +# Gaspard , 2016 # jcbeylot78, 2015 msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" -"Last-Translator: zheng xie \n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-07 07:48+0000\n" +"Last-Translator: Gaspard \n" "Language-Team: French (http://www.transifex.com/haiwen/seahub/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,12 +21,12 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "A l'instant" @@ -33,33 +34,58 @@ msgstr "A l'instant" msgid "Name is required" msgstr "Le nom est obligatoire" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Entrez un mot de passe" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Entrez à nouveau un mot de passe" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Le mot de passe est trop court" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Les mots de passe ne correspondent pas" #: static/scripts/app/models/repo.js:53 msgid "Encrypted library" -msgstr "" +msgstr "Bibliothèque cryptée" #: static/scripts/app/models/repo.js:55 msgid "Read-Write library" -msgstr "" +msgstr "Bibliothèque en lecture / écriture" #: static/scripts/app/models/repo.js:57 msgid "Read-Only library" -msgstr "" +msgstr "Bibliothèque en lecture seule" + +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Vérifier le réseau." #: static/scripts/app/views/details.js:47 msgid "New files" @@ -90,35 +116,40 @@ msgstr "Dossiers supprimés" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Échec. Vérifiez le réseau" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "Le lien %(name)s a été annulé avec succès" @@ -148,12 +179,12 @@ msgstr "Échec." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Annulé." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Chemin de destination invalide" @@ -206,8 +237,8 @@ msgid "{placeholder} Folder Permission" msgstr "Droits sur le dossier {placeholder}" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "Rechercher un utilisateur ou entrer un e-mail et presser Entrée" @@ -223,39 +254,20 @@ msgstr "Sélectionner un groupe" #: 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Erreur de droits" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Vérifier le réseau." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "Veuillez cliquer puis choisir un dossier." @@ -264,7 +276,7 @@ msgstr "Veuillez cliquer puis choisir un dossier." msgid "{placeholder} History Setting" msgstr "Paramètre de l'historique {placeholder}" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "Mise à jour de l'historique de la bibliothèque avec succès." @@ -272,150 +284,150 @@ msgstr "Mise à jour de l'historique de la bibliothèque avec succès." msgid "{placeholder} Share Links" msgstr "Liens de partage pour {placeholder}" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Fermer (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Chargement..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Précédent (flèche gauche)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Suivant (flèche droite)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% de %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "L'image ne peut être chargée." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Ouvrir dans un nouvel onglet" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Le mot de passe est obligatoire" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "c'est obligatoire." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Une seule extension ici, saisissez un nom." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Traitement en cours..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr " %(name)s supprimé avec succès." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr " Suppression avec succès de %(name)s et 1 autre élément." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Suppression avec succès de %(name)s et %(amount)s autres éléments." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Impossible de supprimer %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Impossible de supprimer %(name)s et un autre élément." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Impossible de supprimer %(name)s et %(amount)s autres éléments." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Supprimer les éléments" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Voulez vraiment supprimer les éléments sélectionnés ?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Déplacer les dossiers/fichiers sélectionnés vers :" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Copier les dossiers/fichiers sélectionnés vers :" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr " %(name)s déplacé avec succès." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr " %(name)s et 1 autre élément déplacés avec succès" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "%(name)s et %(amount)s autres éléments déplacés avec succès." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "%(name)s copié avec succès." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "%(name)s et 1 autre élément copiés avec succès." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "%(name)s et %(amount)s autres éléments copiés avec succès." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Erreur interne. Échec du déplacement de %(name)s et %(amount)s autres élément(s)." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr " Erreur interne. Échec du déplacement de %(name)s " -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Erreur interne. Échec de la copie de %(name)s et %(amount)s autres élément(s)." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Erreur interne. Échec de la copie de %(name)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Déplacement du fichier %(index)s de %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Copie du fichier %(index)s de %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Échec du déplacement de %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Échec de la copie de %(name)s" @@ -455,10 +467,10 @@ msgstr "Le résultat de l'envoi est un fichier vide" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -502,19 +514,19 @@ msgstr "Envoi du fichier annulé" msgid "File Upload failed" msgstr "Échec de l'envoi du fichier" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Échec de la récupération de l'url d'envoi" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Échec de la mise à jour de l'url" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Remplacer le fichier {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Le fichier est vérouillé" @@ -523,7 +535,7 @@ msgid "Set {placeholder}'s permission" msgstr "Attribuer des droits à {placeholder}'s" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Sélectionner les groupes" @@ -544,32 +556,38 @@ msgstr "Membres de {placeholder}" msgid "Successfully unshared {placeholder}" msgstr "Partage de {placeholder} supprimé avec succès" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "Vous ne pouvez pas sélectionner plus de choix" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "Transféré dans un groupe avec succès. Vous êtes à présent un membre standard du groupe." + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "Veuillez choisir un fichier CSV" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "Importé avec succès." -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "Supprimer le groupe" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "Voulez-vous réellement supprimer ce groupe?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "Quitter le groupe" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "Êtes-vous certain de vouloir quitter ce groupe ?" @@ -581,11 +599,11 @@ msgstr "Confirmez la suppression de {lib_name}?" msgid "Delete succeeded." msgstr "Supprimé avec succès." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "Transférer la bibliothèque {library_name} à" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "Bibliothèque transférée avec succès." @@ -593,35 +611,36 @@ msgstr "Bibliothèque transférée avec succès." msgid "Share {placeholder}" msgstr "Partage {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Expiré" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Cacher" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Afficher" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Saisissez le nombre de jours." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "saisissez un nombre de jours valide" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Saisissez au moins une adresse mel " -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Succès de l'envoi à {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Échec de l'envoi à {placeholder}" @@ -633,22 +652,26 @@ msgstr "Succès" msgid "Successfully unstared {placeholder}" msgstr "{placeholder} suppression des favoris" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "Rechercher des utilisateurs ou entrer les adresses électroniques et appuyer sur Entrée" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Saisir un 1 caractère ou plus " -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Pas de correspondance" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Recherche en cours..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Le chargement a échoué" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "Toutes les erreurs ont été effacées avec succès." diff --git a/locale/he/LC_MESSAGES/django.po b/locale/he/LC_MESSAGES/django.po index 3fbe89d971..acbe50225c 100644 --- a/locale/he/LC_MESSAGES/django.po +++ b/locale/he/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Hebrew (http://www.transifex.com/haiwen/seahub/language/he/)\n" "MIME-Version: 1.0\n" @@ -20,14 +20,15 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -54,8 +55,8 @@ msgstr "סיסמא לא נכונה" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "שגיאת שרת פנימית" @@ -65,34 +66,34 @@ msgstr "לפענח שגיאת ספרייה" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "" -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "" @@ -101,14 +102,15 @@ msgstr "" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "הסיסמא קצרה מדי" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "" @@ -144,7 +146,7 @@ msgid "No activity now or the function is not supported." msgstr "" #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "ספרייה נוצרה" @@ -159,7 +161,8 @@ msgstr "נמחק ספרייה %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -167,8 +170,8 @@ msgstr "נמחק ספרייה %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -184,7 +187,7 @@ msgstr "נא בדוק את הרשת." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -210,13 +213,16 @@ msgstr "תאריכים חשובים" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -244,10 +250,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -307,7 +314,7 @@ msgid "New password confirmation" msgstr "אשר סיסמא חדשה" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "שני שדות הסיסמה אינם תואמים." @@ -319,7 +326,7 @@ msgstr "סיסמא ישנה" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "" -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "סיסמא )שוב(" @@ -328,15 +335,19 @@ msgstr "סיסמא )שוב(" msgid "Enter a valid e-mail address." msgstr "" -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "" -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "" @@ -423,6 +434,7 @@ msgstr "האווטאר הנוכחי:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -434,24 +446,24 @@ msgstr "האווטאר הנוכחי:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -512,43 +524,48 @@ msgstr "האווטאר עודכן בהצלחה." msgid "Successfully deleted the requested avatars." msgstr "נמחקו בהצלחה האווטארים המבוקשים." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "כתובת אימייל" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "שם משתמש" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "" -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "משתמש עם אימייל זה כבר" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "זיהוי משתמש לא תקין." -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "שם" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "מחלקה" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "טלפון" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "" @@ -617,7 +634,7 @@ msgid "Recovered deleted directory" msgstr "" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "השתנתה שם הספרייה או תיאור" @@ -665,22 +682,22 @@ msgstr[1] "" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -693,21 +710,21 @@ msgstr "קריאה-כתיבה" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -779,15 +796,16 @@ msgstr "אימייל" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -815,7 +833,7 @@ msgstr "אימייל" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "שם" @@ -860,11 +878,11 @@ msgstr "פעולות" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -885,21 +903,21 @@ msgstr "לערוך" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -931,8 +949,9 @@ msgstr "" #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -942,8 +961,8 @@ msgstr "" #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "אימייל" @@ -1041,17 +1060,17 @@ msgstr "תיאור ארוך מדי (המקסימום הוא 100 תווים)" msgid "Name %s is not valid" msgstr "השם %s אינו תקין" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "" @@ -1113,7 +1132,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:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "הקבוצה לא קיימת" @@ -1263,16 +1282,16 @@ msgstr "" #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1349,21 +1368,21 @@ msgstr "" msgid "Description is required." msgstr "דרוש תיאור לספרייה" -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "" @@ -1716,11 +1735,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "משתמשים" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1728,9 +1750,11 @@ msgstr "מידע" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1741,12 +1765,16 @@ msgid "Libraries" msgstr "סיפריות" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1806,12 +1834,12 @@ msgstr "" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1824,11 +1852,11 @@ msgid "Size" msgstr "גודל" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1838,7 +1866,7 @@ msgid "Last Update" msgstr "עודכן לאחרונה" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1866,10 +1894,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "" @@ -1878,8 +1906,8 @@ msgstr "" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "" @@ -1894,7 +1922,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "" @@ -1914,7 +1942,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "" @@ -1926,7 +1954,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "" @@ -1935,7 +1963,7 @@ msgstr "" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "ריק" @@ -1953,33 +1981,32 @@ msgstr "מחק משתמש" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "מנהל" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "נמחק בהצלחה %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "" @@ -2003,6 +2030,7 @@ msgstr "הודעה" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "זמן" @@ -2049,16 +2077,22 @@ msgid "Send a message..." msgstr "לשלוח הודעה" #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "קודם" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2075,18 +2109,20 @@ msgstr "באמת רוצה למחוק את הדיון הזה?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "כן" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "לא" @@ -2128,57 +2164,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "שגיאה פנימית" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "" -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "" -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "" -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "" -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(group_staff)s has added you to group " @@ -2226,11 +2271,19 @@ msgstr "" #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2238,7 +2291,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2246,14 +2299,14 @@ msgid "" "message: %(msg)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "" @@ -2283,6 +2336,7 @@ msgid "Delete Notification" msgstr "" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2290,6 +2344,7 @@ msgstr "" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "" @@ -2358,14 +2413,17 @@ msgstr "" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "הגדרות" @@ -2599,40 +2657,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "הסיסמא אינו יכול להישאר ריק" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "" +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "קישורים - שיתוף" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "קישורים להורדה" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "קישורים להעלאה" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 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/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "ביקורים" @@ -2643,7 +2707,7 @@ msgstr "" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2659,7 +2723,7 @@ msgstr "הצג" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2692,7 +2756,7 @@ msgid "Folders - Share" msgstr "תיקיות - שיתוף" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "תיקיות" @@ -2703,15 +2767,15 @@ msgstr "שתף עם" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "הרשאה" @@ -2777,175 +2841,211 @@ msgid "" "groups you are in." msgstr "" -#: seahub/share/views.py:81 -msgid "Failed to share to all members, please try again later." +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." msgstr "" #: seahub/share/views.py:83 +msgid "Failed to share to all members, please try again later." +msgstr "" + +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "" -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "רק לבעל הספרייה יש את ההרשאה לשתף את זה." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "הספרייה לא קיימת" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "" -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "כל החברים" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "הקישור לא קיים" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "" -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "נשמר בהצלחה." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "" -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "הספרייה לא קיימת" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "" #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "סגור" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: 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:71 -msgid "See All Notifications" -msgstr "" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "התנתק" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "מנהל מערכת" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "ברוכים הבאים ל-Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2953,7 +3053,7 @@ msgid "" msgstr "" #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "הרשם" @@ -2983,28 +3083,31 @@ msgid "Please enter the password." msgstr "אנא הכנס את הסיסמא." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: 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:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3013,9 +3116,12 @@ msgstr "" msgid "Current Path:" msgstr "" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "" @@ -3025,11 +3131,16 @@ msgstr "" msgid "Type" msgstr "" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "" @@ -3043,6 +3154,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3068,10 +3180,6 @@ msgstr "" 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 "" @@ -3196,7 +3304,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "" @@ -3221,10 +3329,10 @@ msgid "Password is required." msgstr "נדרשת סיסמה." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "" @@ -3320,85 +3428,90 @@ msgstr "Seafile" msgid "About Us" msgstr "" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "קבצים" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "משותף" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "ויקי אישי" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "קישורים" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "" @@ -3416,18 +3529,12 @@ msgid "Shared Libs" msgstr "" #: 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/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "שם תיקייה" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "קובץ חדש" @@ -3445,8 +3552,7 @@ msgstr "" #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "פרטים" @@ -3510,7 +3616,123 @@ msgstr "" msgid "Don't replace" msgstr "" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "שגיאה" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "ספרייה חדשה" @@ -3524,13 +3746,14 @@ msgid "Encrypt" msgstr "הצפן" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "סיסמא שוב" @@ -3540,34 +3763,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "שתף" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "עוד פעולות" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "שינוי שם" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3590,58 +3813,59 @@ msgid "Folder Permission" msgstr "" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "העתק" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "העלאה" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "העלאת קבצים" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3649,175 +3873,177 @@ msgstr "" msgid "Trash" msgstr "אשפה" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "תת ספריות" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "עוד פעולות" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "קישור להורדה" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "קישור להעלאה" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "שולח..." -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "לשלוח ל:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "" -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 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:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "קישור להעלאה:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "קבוצה" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "ויקי" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3828,181 +4054,190 @@ msgstr "ויקי" msgid "Members" msgstr "חברים" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "שותף ע\"י" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "חיפוש קבצים בויקי הזה" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "חיפוש קבצים בספרייה זו" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "חיפוש קבצים" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "מתקדם" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "השב" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "העבר קבוצה ל" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" msgstr "" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" msgstr "" #: seahub/templates/libraries.html:21 @@ -4020,6 +4255,11 @@ msgstr "" msgid "No library is shared to you" msgstr "" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "" @@ -4066,10 +4306,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "" -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "שם קבוצה" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4109,14 +4345,6 @@ msgid "" " page, and they will be listed here." msgstr "" -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "" @@ -4146,7 +4374,7 @@ msgstr "" #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4166,33 +4394,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "" -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "" -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4233,10 +4461,6 @@ msgstr "" msgid "Current Password" msgstr "" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4373,11 +4597,6 @@ msgstr "" 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 "למחוק זמן" @@ -4399,12 +4618,12 @@ msgid "1 month ago" msgstr "" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "" @@ -4634,7 +4853,7 @@ msgid "Please enter password" msgstr "אנא הכנס את הסיסמא" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "נמחק בהצלחה" @@ -4775,6 +4994,15 @@ msgstr "" msgid "Successfully unstarred." msgstr "" +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "תיקייה חדשה" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "שם תיקייה" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "" @@ -4800,88 +5028,62 @@ msgstr "" msgid "Failed to get upload url" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "קובץ גדול מדי" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "קובץ קטן מדי" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: 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/sysadmin/admin_repo_view.html:290 #: 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/sysadmin/admin_repo_view.html:291 #: 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/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "זה דרוש." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "" @@ -4933,6 +5135,13 @@ msgstr "" msgid "Files / Size" msgstr "" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "" @@ -4963,10 +5172,6 @@ msgstr "" msgid "No library has shared to this group" msgstr "" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4978,30 +5183,6 @@ msgstr "" msgid "Delete Group" msgstr "מחק קבוצה" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5165,12 +5346,12 @@ msgid "Max User Number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "" @@ -5310,7 +5491,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "" @@ -5323,7 +5504,7 @@ msgid "Admins" msgstr "מנהלים" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "" @@ -5349,7 +5530,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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "" @@ -5437,6 +5618,12 @@ msgstr "אימייל: %(email)s" msgid "Password: %(password)s" msgstr "" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5514,24 +5701,24 @@ msgstr "" msgid "Sorry, this user is not registered yet." msgstr "" -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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_base.html:46 #: 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 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "" @@ -5627,8 +5814,8 @@ msgstr "" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "" @@ -5657,8 +5844,8 @@ msgid "Duplicated filename" msgstr "קובץ משוכפל" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "קובץ לא קיים" @@ -5717,11 +5904,11 @@ msgstr "" msgid "No revisions found" msgstr "" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "" @@ -5749,12 +5936,12 @@ msgstr "" msgid "\"%s\" does not exist." msgstr "" -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "שגיאה פנימית" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "" @@ -5764,11 +5951,11 @@ msgstr "" msgid "Unable to download \"%s\"" msgstr "" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "" -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "" @@ -5785,7 +5972,7 @@ msgid "The group doesn't exist" msgstr "הקבוצה לא קיימת" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "הספרייה מוצפנת" @@ -5863,262 +6050,266 @@ msgstr "" msgid "Wrong repo id" msgstr "" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "" -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "" -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "שם משתמש \"%s\" אינו תקין." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "" -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "" -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "" -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "" -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "" -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "קידוד קובץ לא ידוע" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "" -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "לא ניתן להציג קובץ" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "פורמט קובץ לא תקין." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "הספרייה לא קיימת" -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "הספרייה מוצפנת" -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "" -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "" -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "" -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "" -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, 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:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "" -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6126,107 +6317,107 @@ msgid "" "configured." msgstr "" -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "" -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "" -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "" -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "" -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, 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:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "" -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "נכשל ניסיון העברה, משתמש %s לא נמצא" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "" -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "" -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "" -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "" -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "" -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "" diff --git a/locale/he/LC_MESSAGES/djangojs.po b/locale/he/LC_MESSAGES/djangojs.po index 1243d113ec..e9042757d6 100644 --- a/locale/he/LC_MESSAGES/djangojs.po +++ b/locale/he/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Hebrew (http://www.transifex.com/haiwen/seahub/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/hr/LC_MESSAGES/djangojs.po b/locale/hr/LC_MESSAGES/djangojs.po index d03e71a2ae..51ee157ad8 100644 --- a/locale/hr/LC_MESSAGES/djangojs.po +++ b/locale/hr/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Croatian (http://www.transifex.com/haiwen/seahub/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/hr_HR/LC_MESSAGES/djangojs.po b/locale/hr_HR/LC_MESSAGES/djangojs.po index afb7650a71..8da82734e6 100644 --- a/locale/hr_HR/LC_MESSAGES/djangojs.po +++ b/locale/hr_HR/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/haiwen/seahub/language/hr_HR/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: hr_HR\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/hu/LC_MESSAGES/django.po b/locale/hu/LC_MESSAGES/django.po index cbadfbfd63..4e7be798c9 100644 --- a/locale/hu/LC_MESSAGES/django.po +++ b/locale/hu/LC_MESSAGES/django.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Hungarian (http://www.transifex.com/haiwen/seahub/language/hu/)\n" "MIME-Version: 1.0\n" @@ -24,14 +24,15 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -58,8 +59,8 @@ msgstr "Hibás jelszó" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Belső hiba" @@ -69,34 +70,34 @@ msgstr "Titkosított kötet hiba" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Megosztott hivatkozás küldése meghiúsult. Az e-mail szolgáltatás beállítása nem megfelelő. Vegye fel a kapcsolatot a rendszergazdával." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "fájl" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Fájlt osztottak meg Önnel itt: %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "könyvtár" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Könyvtárat osztottak meg Önnel itt: %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Feltöltési linket osztottak meg Önnel itt: %s" @@ -105,14 +106,15 @@ msgstr "Feltöltési linket osztottak meg Önnel itt: %s" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "A jelszó túl rövid" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Fájlmegosztó szervezet " @@ -148,7 +150,7 @@ msgid "No activity now or the function is not supported." msgstr "Nincs aktivitás vagy nem támogatott funkció." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Kötet létrehozva" @@ -163,7 +165,8 @@ msgstr "%(library_name)s kötet törölve" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -171,8 +174,8 @@ msgstr "%(library_name)s kötet törölve" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -188,7 +191,7 @@ msgstr "Ellenőrizze a hálózatot." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -214,13 +217,16 @@ msgstr "Fontos dátumok" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -248,10 +254,11 @@ msgid "Email or Username" msgstr "Email vagy felhasználónév" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -311,7 +318,7 @@ msgid "New password confirmation" msgstr "Új jelszó ismét" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "A megadott jelszavak nem egyeznek" @@ -323,7 +330,7 @@ msgstr "Régi jelszó" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "A régi jelszó hibás. Próbálja újra." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Jelszó (ismét)" @@ -332,15 +339,19 @@ msgstr "Jelszó (ismét)" msgid "Enter a valid e-mail address." msgstr "Adjon meg érvényes e-mail címet." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Kijelentkezett" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Az e-mail küldése sikertelen. Vegye fel a kapcsolatot a rendszergazdával." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "A jelszót nem lehet frissíteni, keresse az LDAP adminisztrátort." @@ -427,6 +438,7 @@ msgstr "Jelenlegi avatar: " #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -438,24 +450,24 @@ msgstr "Jelenlegi avatar: " #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -516,43 +528,48 @@ msgstr "Sikeresen frissítette az avatarját." msgid "Successfully deleted the requested avatars." msgstr "Sikeresen törlődtek a kijelölt avatarok." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "E-mail címek" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Felhasználónév" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Legfeljebb 40 karakter hosszú lehet" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Adjon meg érvényes e-mail címet." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Már van felhasználó ezzel az e-mail címmel" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Érvénytelen felhasználóazonosító." -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "név" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "osztály" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "telefon" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "megjegyzés" @@ -621,7 +638,7 @@ msgid "Recovered deleted directory" msgstr "Törölt könyvtár visszaállítva" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Kötetnév vagy leírás módosítva" @@ -669,22 +686,22 @@ msgstr[1] "%(seconds)d másodperce" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -697,21 +714,21 @@ msgstr "Írás-olvasás" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -783,15 +800,16 @@ msgstr "E-mail " #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -819,7 +837,7 @@ msgstr "E-mail " #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Név" @@ -864,11 +882,11 @@ msgstr "Műveletek" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -889,21 +907,21 @@ msgstr "Szerkesztés" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -935,8 +953,9 @@ msgstr "Vegyen fel kapcsolatokat, hogy gyorsan tudjon köteteket megosztani és #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -946,8 +965,8 @@ msgstr "Vegyen fel kapcsolatokat, hogy gyorsan tudjon köteteket megosztani és #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "E-mail" @@ -1045,17 +1064,17 @@ msgstr "A leírás túl hosszú (maximum hossz: 100 karakter)" msgid "Name %s is not valid" msgstr "Érvénytelen név: %s" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Hiányzó paraméter" @@ -1117,7 +1136,7 @@ msgid "Permission error: only group staff can add member" msgstr "Jogosultsági hiba: csak a csoportadminisztrátorok adhatnak hozzá tagot" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Nem létezik a csoport" @@ -1267,16 +1286,16 @@ msgstr "Kérem, válasszon egy kötetet a kattintást követően." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1353,21 +1372,21 @@ msgstr "Név kötelező." msgid "Description is required." msgstr "Leírás kötelező." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Jogosultság megtagadva" @@ -1720,11 +1739,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Felhasználók" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1732,9 +1754,11 @@ msgstr "Infó." #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1745,12 +1769,16 @@ msgid "Libraries" msgstr "Kötetek" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Bejelentkezett felhasználók" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1810,12 +1838,12 @@ msgstr "Birtokolt kötetek" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1828,11 +1856,11 @@ msgid "Size" msgstr "Méret" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1842,7 +1870,7 @@ msgid "Last Update" msgstr "Utolsó frissítés " #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1870,10 +1898,10 @@ msgid "This user has not created any libraries" msgstr "A felhasználó még nem hozott létre kötetet" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Szerep" @@ -1882,8 +1910,8 @@ msgstr "Szerep" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Létrehozás helye:" @@ -1898,7 +1926,7 @@ msgstr "A felhasználó még nem hozott létre csoportot és nem is tagja egyikn #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Állapot" @@ -1918,7 +1946,7 @@ msgstr "Létrehozva / Utolsó bejelentkezés" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Aktív" @@ -1930,7 +1958,7 @@ msgstr "Aktív" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Nem aktív" @@ -1939,7 +1967,7 @@ msgstr "Nem aktív" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Üres" @@ -1957,33 +1985,32 @@ msgstr "Felhasználó törlése" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Tulajdonos" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Adminisztrátor" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Tag" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s törlése sikeres" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "A felhasználó nem létezik, nem lehet törölni" @@ -2007,6 +2034,7 @@ msgstr "Üzenet" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Idő" @@ -2053,16 +2081,22 @@ msgid "Send a message..." msgstr "Üzenet küldése" #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Előző" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2079,18 +2113,20 @@ msgstr "Valóban törli a megbeszélést?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Igen" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Nem" @@ -2132,57 +2168,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Új üzenet itt: %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Belső hiba" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "%(file_name)s feltöltve ide: %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "%(file_name)s feltöltve a Törölt kötetbe" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s megosztotta a következő kötetet önnel: %(repo_name)s." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "%(user)s felhasználótól új üzenete érkezett ." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "Új beszélgetés indult a következő csoportban: %(group_name)s." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s új beszélgetést kezdeményezett a következő csoportban: %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s felkérése, hogy csatlakozzon a(z) %(group_name)s csoporthoz, ellenőrző üzenet: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2230,11 +2275,19 @@ msgstr "%(user)s megosztotta a következő kötetet önnel: %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "%(user)s felhasználótól új üzenete érkezett ." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2242,7 +2295,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "A fájl %(file_name)s feltöltésre került a következő könyvtárba: %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2250,14 +2303,14 @@ msgid "" "message: %(msg)s" msgstr "%(user)s felkérése, hogy csatlakozzon a(z) %(grp_name)s, ellenőrző üzenet: %(msg)s." -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "%(user)s felhasználó csatlakozott a csoporthoz: %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Nézze meg ezt az oldalt:" @@ -2287,6 +2340,7 @@ msgid "Delete Notification" msgstr "Értesítés törlése" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2294,6 +2348,7 @@ msgstr "Értesítés törlése" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Üdvözlöm " @@ -2362,14 +2417,17 @@ msgstr "Profilbeállítások" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Beállítások" @@ -2603,40 +2661,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "Az e-mail cím legfeljebb 512 karakter lehet" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "A jelszó megadása kötelező" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Adja meg a helyes jelszót." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Linkek - Megosztás" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Letöltési linkek" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Feltöltési linkek" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Kötet" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Látogatások " @@ -2647,7 +2711,7 @@ msgstr "Lejárat" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2663,7 +2727,7 @@ msgstr "Megtekintés" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2696,7 +2760,7 @@ msgid "Folders - Share" msgstr "Könyvtárak - Megosztás" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Könyvtárak" @@ -2707,15 +2771,15 @@ msgstr "Címzett" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Jogosultság" @@ -2781,175 +2845,211 @@ msgid "" "groups you are in." msgstr "Megoszthat köteteket barátaival, munkatársaival a megosztás ikonra kattintva a saját köteteinél a kezdőoldalon, vagy létrehozhat egy új kötetet egy csoportban, melynek tagja." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Nem sikerült minden taggal megosztani, később próbálja újra." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "A megosztás minden taggal sikerült. Ellenőrizheti a megosztás oldalon." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Csak a kötet tulajdonosa jogosult megosztani." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "A kötet nem létezik" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Érvénytelen argumentumok" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Érvénytelen paraméter" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Megosztás visszavonása sikertelen " -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "érvénytelen csoportazonosító" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Megosztás visszavonása sikertelen: nincs ilyen csoport." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Megosztás visszavonása sikeres" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "minden tag" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "A link nem létezik" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Szerver hiba, vagy ellenőrizd a beadott e-maileket" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Válasszon könyvtárat." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Sikeresen elmentve." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "A feltöltési hivatkozás nem küldhető el, mert az e-mail szolgáltatás nincs megfelelően konfigurálva. Kérem, lépjen kapcsolatba a szerver adminisztrátorával." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "Nincs joga megosztási linket készíteni" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Érvénytelen argumentumok" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "A kötet nem létezik." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "A könyvtár nem létezik." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Ellenőrizd a beadott e-maileket" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Sajnáljuk, a kért oldal nem található." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Admin kilépés" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Bezárás" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Értesítések" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Összes értesítés megtekintése" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Kijelentkezés" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Rendszer-adminisztrátor" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Az IE ezen verziója már nem támogatott. Frissítsen 10-re vagy frissebbre" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Értesítések" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Üdvözli a Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "A Seafile a fájlokat kötetekbe szervezi, melyek szinkronizálhatók különféle eszközökkel, illetve megoszthatók más felhasználókkal vagy csoportokkal. Egy személyes kötet automatikusan létrejött az Ön felhasználójának. A továbbiakban lehetősége lesz más kötetek létrehozására is." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2957,7 +3057,7 @@ msgid "" msgstr "A Seafile a fájlokat kötetekbe szervezi, melyek szinkronizálhatók különféle eszközökkel, illetve megoszthatók más felhasználókkal vagy csoportokkal. Vendég felhasználóként nem hozhat létre kötetet." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Regisztráció" @@ -2987,28 +3087,31 @@ msgid "Please enter the password." msgstr "Adjon meg jelszót." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Letöltés" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Hozzáférési napló" @@ -3017,9 +3120,12 @@ msgstr "Hozzáférési napló" msgid "Current Path:" msgstr "Aktuális útvonal:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Felhasználó" @@ -3029,11 +3135,16 @@ msgstr "Felhasználó" msgid "Type" msgstr "Típus" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Eszköz neve" @@ -3047,6 +3158,7 @@ msgstr "Anonymous felhasználó" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3072,10 +3184,6 @@ msgstr "Piszkozat mentve." msgid "is encrypted" msgstr "titkosítva" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Jelszó:" - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "A jelszó egy órán át lesz tárolva a kiszolgálón." @@ -3200,7 +3308,7 @@ msgstr "Oszlopok" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Alapértelmezett" @@ -3225,10 +3333,10 @@ msgid "Password is required." msgstr "A jelszó kötelező." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Napló" @@ -3324,85 +3432,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Névjegy" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Fájlok" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Saját" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Megosztott" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "Szervezet" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Minden csoport" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Modulok engedélyezése" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Kedvencek" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Tevékenységek" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Személyes Wiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Eszközök" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Megosztások kezelése" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Linkek" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Könyvtár feltöltése" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Automatikus lejárat beállítása" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Napok" @@ -3420,18 +3533,12 @@ msgid "Shared Libs" msgstr "Megosztott kötetek" #: 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" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" msgstr "Új könyvtár" -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Könyvtár neve" - #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Új fájl" @@ -3449,8 +3556,7 @@ msgstr "egyszerű jelölő formátum." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Részletek" @@ -3514,7 +3620,123 @@ msgstr "Csere" msgid "Don't replace" msgstr "Ne cserélje" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Szervezetek" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Forgalom" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Naplók" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Víruskereső" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Rendszer információ" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Professzionális verzió" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "lejár: " + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Közösségi verzió" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Frissítés professzionális verzióra" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Határok" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Platform" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Utolsó elérés" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Leválasztás" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Töröl" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Hiba" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Új kötet" @@ -3528,13 +3750,14 @@ msgid "Encrypt" msgstr "Titkosítás" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(legalább %(repo_password_min_length)s karakter)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Jelszó ismét" @@ -3544,34 +3767,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Sérült (a kötet javítása érdekében kérem értesítse az adminisztrátort)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Megosztás" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "További műveletek" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Átnevezés" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3594,58 +3817,59 @@ msgid "Folder Permission" msgstr "Könyvtár jogosultság" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Áthelyezés" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Másolás" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Feltöltés" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Fájlok feltöltése" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Új könyvtár" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Lista" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Rács" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3653,175 +3877,177 @@ msgstr "" msgid "Trash" msgstr "Kuka" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Alkötetek" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "További műveletek" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Megnyitás kliensben" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "kedvenc" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "nem kedvenc" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "lezárva" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Kinyit" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Lezár" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Letöltés sikertelen" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Letöltési hivatkozás" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Feltöltési hivatkozás" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Megosztás felhasználóval" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Megosztás csoporttal" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Jelszó védelem hozzáadása" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(legalább %(share_link_password_min_length)s karakter)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Mutat" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Véletlenszerű jelszó készítése" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Generál" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Hivatkozás: " -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Közvetlen letöltési link:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Küldés" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Címzett:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "E-mail címek ”,”-vel elválasztva" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Üzenet (opcionális):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Küldés..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "A hivatkozást megoszthatja ismerőseivel, akik a link használatával fájlokat tölthetnek fel a kiválasztott könyvtárba." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Feltöltési hivatkozás:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Csoport" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Megosztás elhagyása" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3832,182 +4058,191 @@ msgstr "Wiki" msgid "Members" msgstr "Tagok" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Megbeszélés" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Felhasználói jogosultság" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Csoport jogosultság" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "ikon" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Nem kedvenc" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Megosztó:" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Válasszon köteteket a megosztáshoz" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Törölt kötet" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Módosítás részletei" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Fájlok keresése a wikiben" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Fájlok keresése ebben a kötetben" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Fájlok keresése" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "haladó" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "Ehhez a csoporthoz nincs megosztott kötet" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "adminisztrátor" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Válasz" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Tagok importálása" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Eltüntetés" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Kilépés a csoportból" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Csoport átnevezése a következőre:" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Csoport átadása" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Csoporttagok importálása CSV fájlból" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Fájl formátum: nev@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Összes változat megtartása" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Csak az utolsó változat megtartása" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Csak egy időszak megtartása:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "nap" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Létrehozta" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Könyvtár" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Könyvtár kiválasztása" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Régi jelszó" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Új jelszó(legalább %(repo_password_min_length)s karakter)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Új jelszó" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Új jelszó ismét" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Leválasztás" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Összes értesítés megtekintése" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4024,6 +4259,11 @@ msgstr "Köteteket hozhat létre fájljai rendezéséhez. Például hozzon létr msgid "No library is shared to you" msgstr "Nincs egy kötet sem megosztva Önnel" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Szervezet" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Kötet hozzáadása" @@ -4070,10 +4310,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "A csoport az a hely ahol az ismerősökkel üzeneteket cserélhet és együttműködhet a kötetekkel kapcsolatban. Itt azoknak a csoportoknak a listája lesz, amely csoportoknak tagja." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Csoport neve" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4113,14 +4349,6 @@ msgid "" " page, and they will be listed here." msgstr "Kedvencnek jelölhet fontos fájlokat a „kedvenc” gombra kattintva a fájlnéző oldalon, és itt felsorolásra kerülnek." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Platform" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Utolsó elérés" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Kötetek" @@ -4150,7 +4378,7 @@ msgstr "A fiók aktiválásához, kérem kattintson az alábbi linkre %(expirati #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4170,33 +4398,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Nem tudja elolvasni? Frissítse a képet!" -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Hibás e-mail cím vagy jelszó" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "%(remember_days)s napig emlékezzen rám " -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "A captcha frissítése nem sikerült, kérem, próbálja meg később." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "Az email vagy felhasználónév megadása kötelező" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4237,10 +4465,6 @@ msgstr "" msgid "Current Password" msgstr "Jelenlegi jelszó" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Új jelszó" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4377,11 +4601,6 @@ msgstr "Az e-mail megadása kötelező" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Kuka" -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "Töröl" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Törlés ideje" @@ -4403,12 +4622,12 @@ msgid "1 month ago" msgstr "1 hónapja" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Sikeres" @@ -4638,7 +4857,7 @@ msgid "Please enter password" msgstr "Adjon meg jelszót" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Sikeres törlés" @@ -4779,6 +4998,15 @@ msgstr "Kedvenc" msgid "Successfully unstarred." msgstr "Kedvenc jelölés törlése sikeres." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Új könyvtár" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Könyvtár neve" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "Bezárás" @@ -4804,88 +5032,62 @@ msgstr "Fájl feltöltés sikertelen" msgid "Failed to get upload url" msgstr "A feltöltési linket nem lehet elérni" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Túl nagy fájl" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Túl kicsi fájl" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Nem engedélyezett fájltípus" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "A maximális fájl szám túllépve" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "A feltöltött bájtok meghaladják a fájl méretét" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Üres fájl feltöltés" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Hiba" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "feltöltve" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "megszakítva" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Indít" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Ez kötelező." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Szervezetek" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Forgalom" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Naplók" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Víruskereső" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Létrehozó" @@ -4937,6 +5139,13 @@ msgstr "Kötet törlése" msgid "Files / Size" msgstr "Fájlok / Méret" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Továbblépéshez erősítsd meg a jelszót" @@ -4967,10 +5176,6 @@ msgstr "Csoport információ" msgid "No library has shared to this group" msgstr "Ehhez a csoporthoz nincs megosztott kötet" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "adminisztrátor" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4982,30 +5187,6 @@ msgstr "Exportálás Excelbe" msgid "Delete Group" msgstr "Csoport törlése" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Rendszer információ" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Professzionális verzió" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "lejár: " - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Közösségi verzió" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Frissítés professzionális verzióra" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Határok" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5169,12 +5350,12 @@ msgid "Max User Number" msgstr "Max. felhasználói szám" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Szám kell" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "A szám legyen 0-nál nagyobb" @@ -5314,7 +5495,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP(betöltve)" @@ -5327,7 +5508,7 @@ msgid "Admins" msgstr "Adminisztrátorok" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Utolsó belépés" @@ -5353,7 +5534,7 @@ msgstr "Vendég felhasználót is hozzáadhat, aki nem tud kötetet és csoporto #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Vendég" @@ -5441,6 +5622,12 @@ msgstr "E-mail: %(email)s" msgid "Password: %(password)s" msgstr "Jelszó: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5518,24 +5705,24 @@ msgstr "ide:" msgid "Sorry, this user is not registered yet." msgstr "Elnézést, ez a felhasználó még nem regisztrált." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Aktuális útvonal: " -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "feltöltötte a fájlt" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Fel" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "legfelül" @@ -5631,8 +5818,8 @@ msgstr "Érvénytelen argumentumok" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Jogosultság megtagadva" @@ -5661,8 +5848,8 @@ msgid "Duplicated filename" msgstr "Ismétlődő fájlnév" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "A fájl nem létezik" @@ -5721,11 +5908,11 @@ msgstr "„%s” megosztásának visszavonása sikertelen" msgid "No revisions found" msgstr "Nem találhatók változatok" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Fájl zárolási hiba ellenőrzése" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "A fájl zárolva van" @@ -5753,12 +5940,12 @@ msgstr "%(path)s visszaállítása a gyökérkönyvtárra\n" "Language-Team: Hungarian (http://www.transifex.com/haiwen/seahub/language/hu/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Éppen most" @@ -31,19 +31,19 @@ msgstr "Éppen most" msgid "Name is required" msgstr "Név szükséges" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Kérem adja meg a jelszót" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Kérem adja meg a jelszót újra" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "A jelszó túl rövid" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Nem egyeznek a megadott jelszavak." @@ -59,6 +59,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Ellenőrizze a hálózatot." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Új fájlok" @@ -88,35 +113,40 @@ msgstr "Törölt könyvtárak" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Sikertelen. Ellenőrizze a hálózatot." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -146,12 +176,12 @@ msgstr "Sikertelen." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Megszakítva." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Érvénytelen cél útvonal" @@ -204,8 +234,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -221,39 +251,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Jogosultság hiba" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Ellenőrizze a hálózatot." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "" @@ -262,7 +273,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -270,150 +281,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Bezár (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Betöltés..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Előző (Balra nyíl)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Következő (Jobbra nyíl)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% / %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "A képet nem lehet betölteni." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Megnyitás új fülön" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Jelszó szükséges." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Szükséges." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Csak a kiterjesztés van, kérem adja meg a nevet." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Feldolgozás..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "%(name)s törlése sikeres." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "%(name)s és még 1 másik elem törölve." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "%(name)s és még %(amount)s másik elem törölve." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Törlés meghiúsult: %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "%(name)s és még 1 elem törlése sikertelen." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "%(name)s és még %(amount)s másik elem törlése sikertelen." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Elemek törlése" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Biztos, hogy törli ezeket az elemeket?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Kiválasztott elem(ek) mozgatása ide: " -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Kiválasztott elem(ek) másolása ide:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "%(name)s sikeresen átmozgatva." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "%(name)s áthelyezése és még 1 másik elemé sikeres." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "%(name)s áthelyezése és még %(amount)s másik elemé sikeres." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "%(name)s másolása sikeres." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "%(name)s másolása és még 1 másik elemé sikeres." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "%(name)s másolása és még %(amount)s másik elemé sikeres." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Belső hiba. %(name)s mozgatása és még %(amount)s másik elemé sikertelen." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Belső hiba. %(name)s mozgatása sikertelen." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Belső hiba. %(name)s másolása és még %(amount)s másik elemé sikertelen." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Belső hiba. %(name)s másolása sikertelen." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Fájlok mozgatása: %(index)s / %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Fájlok másolása: %(index)s / %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "%(name)s mozgatása sikertelen" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "%(name)s másolása sikertelen" @@ -453,10 +464,10 @@ msgstr "Üres fájl feltöltés" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -500,19 +511,19 @@ msgstr "Fájl feltöltés megszakítva" msgid "File Upload failed" msgstr "Fájl feltöltés sikertelen" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "A feltöltési linket nem lehet elérni" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "A frissítési linket nem lehet elérni" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Felülírja: {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "A fájl zárolva van" @@ -521,7 +532,7 @@ msgid "Set {placeholder}'s permission" msgstr "{placeholder} jogosultság beállítása" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Csoportok kiválasztása" @@ -542,32 +553,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "{placeholder} megosztása sikeresen megszüntetve" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -579,11 +596,11 @@ msgstr "Biztosan törli: {lib_name}?" msgid "Delete succeeded." msgstr "Sikeres törlés" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -591,35 +608,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "{placeholder} megosztása" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Lejárt" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Elrejt" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Mutat" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Adja meg a napok számát." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Kérem érvényes nap számot adjon meg" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Adjon meg legalább egy e-mail címet" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Sikeresen elküldve ide: {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Sikertelen küldés ide: {placeholder}" @@ -631,22 +649,26 @@ msgstr "Sikeres" msgid "Successfully unstared {placeholder}" msgstr "{placeholder} sikeresen törölve a kedvencekből" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Kérem adjon meg még 1 vagy több karaktert" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Nincs találat" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Keresés..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Betöltés nem sikerült" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/is/LC_MESSAGES/django.po b/locale/is/LC_MESSAGES/django.po index f86d542c5b..0b4bec41c9 100644 --- a/locale/is/LC_MESSAGES/django.po +++ b/locale/is/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Icelandic (http://www.transifex.com/haiwen/seahub/language/is/)\n" "MIME-Version: 1.0\n" @@ -20,17 +20,18 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." -msgstr "" +msgstr "Notandi %s er þegar meðlimur hóps." -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." -msgstr "" +msgstr "Notandi %s finnst ekki í samfélaginu." #: seahub/api2/endpoints/groups.py:148 seahub/api2/endpoints/groups.py:224 #: seahub/group/forms.py:37 @@ -46,7 +47,7 @@ msgstr "Það er þegar til hópur með þetta nafn." #: seahub/api2/endpoints/groups.py:254 #, python-format msgid "User %s is already group owner." -msgstr "" +msgstr "Notandi %s er þegar eigandi hóps." #: seahub/api2/endpoints/repo_set_password.py:41 msgid "Wrong password" @@ -54,8 +55,8 @@ msgstr "Rangt lykilorð" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Kerfisvilla" @@ -65,50 +66,51 @@ msgstr "Villa í dulkóðuðu safni" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Tókst ekki að senda tengilinn. Tölvupóstþjónustan er ekki alveg rétt stillt, vinsamlegast hafðu samband við kerfisstjóra." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "skrá" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Skrá er deilt með þér á %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "mappa" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Skáarsafni hefur verið deilt með þér á %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Upphleðsluslóð er deilt með þér á %s" #: seahub/api2/endpoints/share_links.py:165 msgid "Password is too short." -msgstr "" +msgstr "Lykilorð er of stutt." -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Lykilorðið er of stutt" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Skrá Samvinna Teymi Samfélag" @@ -144,7 +146,7 @@ msgid "No activity now or the function is not supported." msgstr "Engin virkni núna í gangi eða að þessi virkni er ekki studd enn sem komið er." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Bjó til safn" @@ -159,7 +161,8 @@ msgstr "Eyddi safni %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -167,8 +170,8 @@ msgstr "Eyddi safni %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -184,7 +187,7 @@ msgstr "Vinsamlegast athugaðu nettenginguna" #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -210,13 +213,16 @@ msgstr "Mikilvægar dagsetningar" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -244,10 +250,11 @@ msgid "Email or Username" msgstr "Netfang eða Notendanafn" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -307,7 +314,7 @@ msgid "New password confirmation" msgstr "Staðfesting nýs lykilorðs" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Lykilorðin stemma ekki" @@ -319,7 +326,7 @@ msgstr "Gamla lykilorðið" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Þú slóst gamla lykilorðið ekki rétt inn. Vinsamlegast sláðu það inn aftur." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Lykilorðið (aftur)" @@ -328,15 +335,19 @@ msgstr "Lykilorðið (aftur)" msgid "Enter a valid e-mail address." msgstr "Sláðu inn löglegt netfang" -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Útskráður" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Tókst ekki að senda tölvupóst, vinsamlegast hafðu samband við kerfisstjóra." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Get ekki uppfært lykilorðið, vinsamlegast hafðu samband við LDAP kerfisstjóra." @@ -423,6 +434,7 @@ msgstr "Núverandi smámynd:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -434,24 +446,24 @@ msgstr "Núverandi smámynd:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -512,43 +524,48 @@ msgstr "Tókst að uppfæra smámyndina þína." msgid "Successfully deleted the requested avatars." msgstr "Tókst að eyða þeim smámyndum sem beðið var um." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Netfang" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Notandanafn" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Þetta gildi verður að vera nákvæmlega 40 stafir" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Sláðu inn gilt netfang." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Það er þegar notandi með þetta netfang" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Ekki rétt notandaauðkenni" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "nafn" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "deild" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "sími" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "athugasemd" @@ -617,7 +634,7 @@ msgid "Recovered deleted directory" msgstr "Endurheimti eyddri möppu" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Breytti nafni á safni eða lýsingu" @@ -665,22 +682,22 @@ msgstr[1] "fyrir %(seconds)d sekúndum síðan" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -693,21 +710,21 @@ msgstr "Lesa-Skrifa" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -719,33 +736,33 @@ msgstr "Aðeins-Lesa" #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(size)d bæti" +msgstr[1] "%(size)d bæti" #: seahub/base/templatetags/seahub_tags.py:497 #, python-format msgid "%s KB" -msgstr "" +msgstr "%s KB" #: seahub/base/templatetags/seahub_tags.py:499 #, python-format msgid "%s MB" -msgstr "" +msgstr "%s MB" #: seahub/base/templatetags/seahub_tags.py:501 #, python-format msgid "%s GB" -msgstr "" +msgstr "%s GB" #: seahub/base/templatetags/seahub_tags.py:503 #, python-format msgid "%s TB" -msgstr "" +msgstr "%s TB" #: seahub/base/templatetags/seahub_tags.py:505 #, python-format msgid "%s PB" -msgstr "" +msgstr "%s PB" #: seahub/contacts/models.py:77 #: seahub/contacts/templates/contacts/contact_list.html:119 @@ -779,15 +796,16 @@ msgstr "Netfang" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -815,7 +833,7 @@ msgstr "Netfang" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nafn" @@ -860,11 +878,11 @@ msgstr "Aðgerðir" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -885,21 +903,21 @@ msgstr "Breyta" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -931,8 +949,9 @@ msgstr "Bættu félögum þínum við svo þú getir deilt með einföldum hætt #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -942,8 +961,8 @@ msgstr "Bættu félögum þínum við svo þú getir deilt með einföldum hætt #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Netfang" @@ -1041,17 +1060,17 @@ msgstr "Lýsingin er of löng (hámark er 100 stafir)" msgid "Name %s is not valid" msgstr "Ekki má nota nafnið %s" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Vantar frumgildi" @@ -1113,7 +1132,7 @@ msgid "Permission error: only group staff can add member" msgstr "Leyfisvilla: aðeins stjórnendur hóps geta bætt við félögum" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Hópur er ekki til" @@ -1263,16 +1282,16 @@ msgstr "Smelltu og veldu safn." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1349,21 +1368,21 @@ msgstr "Nafn er áskilið" msgid "Description is required." msgstr "Lýsing er áskilin" -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Aðgangi hafnað" @@ -1712,15 +1731,18 @@ msgstr "Seafile þjónar geyma ekki lykilorðin á dulkóðuðum söfnum. Til a #: seahub/institutions/templates/institutions/base.html:4 msgid "Exit" -msgstr "" +msgstr "Hætta" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Notendur" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1728,9 +1750,11 @@ msgstr "Upplýsingar" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1741,12 +1765,16 @@ msgid "Libraries" msgstr "Söfn" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Virkir Notendur" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1806,12 +1834,12 @@ msgstr "Eigin Söfn" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1824,11 +1852,11 @@ msgid "Size" msgstr "Stærð" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1838,7 +1866,7 @@ msgid "Last Update" msgstr "Síðasta Uppfærsla" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1866,10 +1894,10 @@ msgid "This user has not created any libraries" msgstr "Þessi notandi hefur ekki búið til nein söfn" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Hlutverk" @@ -1878,8 +1906,8 @@ msgstr "Hlutverk" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Stofna Á" @@ -1894,7 +1922,7 @@ msgstr "Þessi notandi hefur ekki búið til eða gengið til liðs við neina h #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Staða" @@ -1914,7 +1942,7 @@ msgstr "Búa til á / Síðasta Innskráning" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Virkt" @@ -1926,7 +1954,7 @@ msgstr "Virkt" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Óvirkt" @@ -1935,7 +1963,7 @@ msgstr "Óvirkt" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Tómt" @@ -1953,33 +1981,32 @@ msgstr "Eyða Notanda" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Eigandi" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Stjórna" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Félagi" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "Tókst að eyða %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Tókst ekki að eyða: notandinn er ekki til" @@ -2003,6 +2030,7 @@ msgstr "Skilaboð" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Tími" @@ -2049,16 +2077,22 @@ msgid "Send a message..." msgstr "Senda skilaboð..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Fyrri" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2075,18 +2109,20 @@ msgstr "Viltu virkilega eyða þessari umræðu" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Já" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Nei" @@ -2125,60 +2161,69 @@ msgstr "Tókst ekki að senda skilaboð til %s, notandi fannst ekki." #: seahub/notifications/management/commands/notify_admins_on_virus.py:42 #, python-format msgid "Virus detected on %s" -msgstr "" +msgstr "Veira fannst á %s" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Ný athugasemd á %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "kerfisvilla" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Skrá með nafninu %(file_name)s er hlaðið upp á þjóninn %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Skrá með nafninu %(file_name)s er hlaðið upp í safni sem hefur verið eytt" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s hefur deilt safni með þér sem heitir %(repo_name)s." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Þú hefur fengið ný skilaboð frá %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s á nýja umræðu." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s skrifaði nýja umræðu í %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s óskar eftir því að ganga í hópinn %(group_name)s, staðfestingarskilaboð: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2226,11 +2271,19 @@ msgstr "%(user)s deildi safni með þér sem heitir %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Þér hefur borist nýtt skeyti frá %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2238,7 +2291,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "Skránni %(file_name)s er hlaðið upp í möppuna þína %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2246,14 +2299,14 @@ msgid "" "message: %(msg)s" msgstr "Notandinn %(user)s hefur óskað eftir aðgangi í grúppuna %(grp_name)s, staðfestingarskilaboð: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "Notandinn %(user)s hefur bætt þér í hópinn %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Endilega athugaðu eftirfarandi síðu:" @@ -2283,6 +2336,7 @@ msgid "Delete Notification" msgstr "Eyða Athugasemd" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2290,13 +2344,14 @@ msgstr "Eyða Athugasemd" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Hæ," #: seahub/notifications/templates/notifications/notify_virus.html:12 msgid "Virus is detected on regular scanning. Please check the report at:" -msgstr "" +msgstr "Veira fannst við reglulega yfirferð. Vinsamlegast kíktu á skýrsluna:" #: seahub/notifications/templates/notifications/user_notification_list.html:4 #: seahub/notifications/templates/notifications/user_notification_list.html:9 @@ -2358,14 +2413,17 @@ msgstr "Stillingar Persónuupplýsinga" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Stillingar" @@ -2599,40 +2657,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "Netfang er ekki lengra en 512 stafir" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "Lykilorð er má ekki vanta" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Vinsamlegast sláðu inn rétt lykilorð." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Tenglar - Deilt" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Niðurhalstenglar" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Upphleðslutenglar" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Safn" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Heimsóknir" @@ -2643,7 +2707,7 @@ msgstr "Gildislok" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2659,7 +2723,7 @@ msgstr "Skoða" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2692,7 +2756,7 @@ msgid "Folders - Share" msgstr "Möppur - Deilt" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Möppur" @@ -2703,15 +2767,15 @@ msgstr "Deila með" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Leyfi" @@ -2777,175 +2841,211 @@ msgid "" "groups you are in." msgstr "Þú getur deilt söfnum til félaga þinna með því að smella á deili smámyndina við hvert safn á heimasvæðinu þínu eða búa til nýtt safn í hópi sem þú ert félagi í." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Tókst ekki að deila með öllum félögum, vinsamlegast reynið aftur síðar." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Tókst að deila til allra félaga, athugaðu það í Deilingum." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Aðeins eigandi safnsins hefur leyfi til að deila því." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "Safn er ekki til" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Ógilt gildi" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Óleyfileg breyta" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Tókst ekki að taka deilingu af" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "hópauðkenni er ekki gilt" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Tókst ekki að taka deilingu af: hópurinn er ekki til." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Tókst að taka deilingu af" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "Allir félagar" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Tengillinn er ekki til" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Kerfisvilla, en vinsamlegast athugaðu netfangið/netföngin sem þú slóst inn" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Veldu skáarsafn." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Tókst að vista." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "Mistókst að senda tengil til að deila. Póstþjónustan er ekki rétt stillt, vinsamlegast hafðu samband við kerfisstjóra." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "Þú hefur ekki leifi til að búa til deilihlekk" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Ógild gildi" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Safn er ekki til" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "Mappan er ekki til." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Vinsamlegast athugaðu netfangið/netföngin sem þú slóst inn" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Afsakið, en síðan sem þú baðst um fannst ekki." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Hætta Kerfisstjórnun" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Loka" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Athugasemdir" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Sjá Allar Athugasemdir" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" -msgstr "" +msgstr "Skoða persónuuplýsingar og fleira" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Útskrá" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Kerfisstjórnun" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Við styðjum ekki lengur þessa útgáfu af IE. Vinsamlegast uppfærðu vafrann í útgáfu 10 eða hærra." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Athugasemdir" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Velkomin í Seafile" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile flokkar skrár í söfn. Hverju safni fyrir sig er hægt að deila og samstilla við önnur tæki. Við höfum búið til eitt safn fyrir þig. Þú getur búið til önnur söfn síðar." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2953,7 +3053,7 @@ msgid "" msgstr "Seafile flokkar skrár í söfn. Hverju safni er samstillt og deilt óháð öðrum söfnum. Hinsvegar, þar sem að þú ert gestanotandi núna, þá getur þú ekki búið til söfn." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Skráðu þig" @@ -2983,28 +3083,31 @@ msgid "Please enter the password." msgstr "Vinsamlegast sláðu inn lykilorð." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Niðurhala" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Aðgangsskrá" @@ -3013,9 +3116,12 @@ msgstr "Aðgangsskrá" msgid "Current Path:" msgstr "Núverandi Slóð:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Notandi" @@ -3025,11 +3131,16 @@ msgstr "Notandi" msgid "Type" msgstr "Gerð" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "Auðkenni" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Nafn Tækis" @@ -3043,6 +3154,7 @@ msgstr "Óþekktur notandi" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3068,10 +3180,6 @@ msgstr "Uppkast vistað." msgid "is encrypted" msgstr "er dulkóðað" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Lykilorð: " - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "Lykilorðið verður aðeins geymt í eina klukkustund" @@ -3196,7 +3304,7 @@ msgstr "Dálkar" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Sjálfgefið" @@ -3221,10 +3329,10 @@ msgid "Password is required." msgstr "Lykilorð er áskilið." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Saga" @@ -3320,85 +3428,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Um Okkur" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Skrár" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Mitt" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Deilt" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "Samfélagið" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Allir Hópar" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" -msgstr "" +msgstr "Tæki" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Virkja Viðbætur" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Stjörnumerkt" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Virkni" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Smáwiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Tæki" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Stjórnun deilinga" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Tenglar" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Hlaða upp Möppu" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Setja sjálfvirkan gildistíma" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Dagar" @@ -3416,18 +3529,12 @@ msgid "Shared Libs" msgstr "Deild Söfn" #: 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" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" msgstr "Ný Mappa" -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Nafn Möppu" - #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Ný Skrá" @@ -3445,8 +3552,7 @@ msgstr "Ívafsmál." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Í hnotskurn" @@ -3510,7 +3616,123 @@ msgstr "Skipta út" msgid "Don't replace" msgstr "Ekki skipta út" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Samfélög" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "Stofnanir" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Umferð" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Kladdar" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Veiruskönnun" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Kerfisupplýsingar" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Sérútgáfa" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "rennur út þann" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Samfélagútgáfan" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Uppfæra í Sérútgáfu" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Takmörk" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Verkvangur" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Seinast Skoðað" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Aftengja" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Hreinsa" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Villa" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Nýtt Safn" @@ -3524,13 +3746,14 @@ msgid "Encrypt" msgstr "Dulkóða" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(að minnsta kosti %(repo_password_min_length)s stafir)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Lykilorð aftur" @@ -3540,34 +3763,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Bilað (vinsamlegast hafðu samband við kerfisstjórann þinn til að laga safnið)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Deila" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Fleiri aðgerðir" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Skipta um nafn" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3575,7 +3798,7 @@ msgstr "Flytja" #: seahub/templates/js/templates.html:49 msgid "History Setting" -msgstr "" +msgstr "Sögustilling" #: seahub/templates/js/templates.html:51 msgid "Change Password" @@ -3583,65 +3806,66 @@ msgstr "Breyta Lykilorði." #: seahub/templates/js/templates.html:54 msgid "Share Links" -msgstr "" +msgstr "Deilihlekkir" #: seahub/templates/js/templates.html:57 msgid "Folder Permission" msgstr "Möppuheimild" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Færa" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Afrita" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Hlaða upp" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Hlaða upp Skrá" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Ný Mappa" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Listi" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" -msgstr "" +msgstr "listasnið" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Reitir" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" -msgstr "" +msgstr "reitasnið" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3649,175 +3873,177 @@ msgstr "" msgid "Trash" msgstr "Ruslafata" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Undirsöfn" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" -msgstr "" +msgstr "Aðgerðir" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Fleiri aðgerðir" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Opna með Biðlara" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "stjörnumerkt" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "Taka stjörnu af" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "læst" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Aflæsa" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Læsa" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Mistókst að sækja" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Niðurhalstengill" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Upphleðslutengill" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Deila með notanda" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Deila með hópi" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Bæta við lykilorðavörn" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(að minsta kosti %(share_link_password_min_length)s stafi)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Sýna" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Búa til slembilykilorð" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Mynda" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Tengill:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Niðurhalshlekkur:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Senda" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Senda til:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Netföng aðskilin með ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Skilaboð (valfrjálst):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Sendi..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Þú getur deilt tenglinum með öðru fólki og það getur notað hann til að hlaða upp skrám í þessa möppu." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Upphleðslutengill:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Hópur" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Yfirgefa Deilingu" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3828,182 +4054,191 @@ msgstr "Wiki" msgid "Members" msgstr "Félagar" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Umræða" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Notendaleyfi" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Réttindi Hóps" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "smámynd" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Taka stjörnu af" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" -msgstr "" +msgstr "Safnagerð" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Deilt af" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Veldu safn til að deila" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Eytt safn" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Breytingarsmáatriði" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Leita að skrám í þessu wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Leita að skrám í þessu safni" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Leita að Skrám" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "ítarefni" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "það er engu safni deilt með þessum hópi" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "kerfisstjóri" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Svara" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" -msgstr "" +msgstr "Bæta við Wiki" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" -msgstr "" +msgstr "Fjarlægja Wiki" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Flytja inn Meðlimi" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" -msgstr "" +msgstr "Stjórna Meðlimum" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Loka" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Yfirgefa hóp" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Endurnefna Hóp sem" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Færa Hóp til" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Flytja meðlimi inn í hóp með CSV skrá" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Skráasnið: notandi@len.is" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" -msgstr "" +msgstr "Bæta við" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" -msgstr "" +msgstr "Að virkja safnasögu hefur verið gert óvirkt af kerfisstjóra" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Skrá alla söguna" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Ekki skrá sögu" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Skrá sögu í ákveðinn tíma" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "dagar" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Gert Af" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Mappa" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Veldu möppu" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Gamla Lykilorðið" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Nýtt Lykilorð (að minnsta kosti %(repo_password_min_length)s stafir)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Nýtt Lykilorð" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Endurtaktu Nýja Lykilorðið" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Aftengja" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Sjá Allar Athugasemdir" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4020,6 +4255,11 @@ msgstr "Þú getur búið til safn til að skipuleggja skrárnar þínar. Til d msgid "No library is shared to you" msgstr "Engu safni er deilt með þér" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Samfélagið" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Bæta við Safni" @@ -4066,10 +4306,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Hópur er staður þar sem þú og félagar þínir geta skilið eftir skilaboð og unnið saman í söfnum. Hér mun verða listi yfir þá hópa sem þú ert í." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Nafn Hóps" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4085,15 +4321,15 @@ msgstr "Notendur sem hafa aðgang að söfnum sem hefur verið deilt með skrifr #: seahub/templates/libraries.html:143 msgid "Discussions" -msgstr "" +msgstr "Umræða" #: seahub/templates/libraries.html:147 msgid "More..." -msgstr "" +msgstr "Meira..." #: seahub/templates/libraries.html:149 msgid "No discussion in this group yet." -msgstr "" +msgstr "Engin umræða hefur átt sér stað í þessum hópi enn." #: seahub/templates/libraries.html:156 msgid "Add a discussion..." @@ -4109,14 +4345,6 @@ msgid "" " page, and they will be listed here." msgstr "Þú getur stjörnumerkt mikilvægar skrár með því að smella á \"Stjörnu\" takkann við hverja skrá á meðan þú ert að skoða síðuna og skráin verður listuð hér." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Verkvangur" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Seinast Skoðað" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Söfn" @@ -4146,7 +4374,7 @@ msgstr "Til að virkja reikninginn, vinsamlegast smelltu á eftirfarandi hlekk i #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4166,33 +4394,33 @@ msgstr "Staðfestingarkóði" msgid "Not clear? Refresh it." msgstr "Óljós? Fáðu nýjann." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Rangt netfang eða lykilorð" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Mundu mig í %(remember_days)s daga" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos auðkenning" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Tókst ekki að gera nýjann staðfestingarkóða, vinsamlegast reyndu aftur síðar." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "Netfang eða notendanafn má ekki vanta" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4227,16 +4455,12 @@ msgstr "Lykilorðaumsýsla" #: seahub/templates/registration/password_change_form.html:11 msgid "Please update your password before continue." -msgstr "" +msgstr "Vinsamlegast uppfærðu lykilorðið þitt áður en þú heldur áfram." #: seahub/templates/registration/password_change_form.html:17 msgid "Current Password" msgstr "Núverandi Lykilorð" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Nýtt Lykilorð" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4373,11 +4597,6 @@ msgstr "Netfang má ekki vanta" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Rusl" -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "Hreinsa" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Eyða Tíma" @@ -4399,12 +4618,12 @@ msgid "1 month ago" msgstr "fyrir einum mánuði" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Tókst með ágætum" @@ -4499,7 +4718,7 @@ msgstr "Þú getur farið á eftirfarandi síðu og hlaðið upp skránum þínu msgid "" "Your account is created successfully, please wait for administrator to " "activate your account." -msgstr "" +msgstr "Reikningurinn þinn hefur verið stofnaður, vinsamlegast bíðið eftir að kerfisstjóri hefur virkjað reikninginn þinn." #: seahub/templates/snippets/add_file_js.html:15 msgid "You don't have any library at present" @@ -4634,7 +4853,7 @@ msgid "Please enter password" msgstr "Vinsamlegast sláðu inn lykilorð" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Eyðing tókst." @@ -4775,6 +4994,15 @@ msgstr "Stjörnur" msgid "Successfully unstarred." msgstr "Tókst að taka stjörnu af" +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Ný Mappa" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Nafn Möppu" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "loka" @@ -4800,88 +5028,62 @@ msgstr "Skráarupphleðsla mistókst" msgid "Failed to get upload url" msgstr "Gerð upphleðsluhlekks mistókst" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Skrá er of stór" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Skrá er of lítil" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Skráargerð er ekki leyfð" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Hámarksfjölda skráa hefur verið náð" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Upphlaðin bæti eru yfir skráarstærð" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Tómri skrá hlaðið upp" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Villa" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "upphlaðin" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "hætt við" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Byrja" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "þetta er áskilið." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Samfélög" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Umferð" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Kladdar" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Veiruskönnun" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Stofnandi" @@ -4900,7 +5102,7 @@ msgstr "Flytja %(lib_name)s til:" #: seahub/templates/sysadmin/repoadmin_js.html:18 msgid "Search user or enter email and press Enter" -msgstr "" +msgstr "Leita eftir notanda eða netfangi og sláðu svo á Enter" #: seahub/templates/sysadmin/repoadmin_js.html:19 msgid "Please enter 1 or more character" @@ -4933,6 +5135,13 @@ msgstr "Eyða Safni" msgid "Files / Size" msgstr "Skrár / Stærð" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Staðfestu lykilorð til að halda áfram" @@ -4963,10 +5172,6 @@ msgstr "Hópaupplýsingar" msgid "No library has shared to this group" msgstr "Engu safni hefur verið deilt með þessum hópi" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "kerfisstjóri" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4978,37 +5183,13 @@ msgstr "Flytja út í Excel skrá" msgid "Delete Group" msgstr "Eyða Hópi" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Kerfisupplýsingar" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Sérútgáfa" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "rennur út þann" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Samfélagútgáfan" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Uppfæra í Sérútgáfu" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Takmörk" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" -msgstr "" +msgstr "Allar Stofnanir" #: seahub/templates/sysadmin/sys_inst_admin.html:17 msgid "Add institution" -msgstr "" +msgstr "Bæta við Stofnun" #: seahub/templates/sysadmin/sys_inst_admin.html:60 #: seahub/templates/sysadmin/sys_org_admin.html:78 @@ -5017,11 +5198,11 @@ msgstr "Nafn má ekki vanta" #: seahub/templates/sysadmin/sys_inst_admin.html:66 msgid "Delete Institution" -msgstr "" +msgstr "Eyða Stofnun" #: seahub/templates/sysadmin/sys_inst_info_base.html:16 msgid "Back" -msgstr "" +msgstr "Til Baka" #: seahub/templates/sysadmin/sys_inst_info_base.html:20 #: seahub/templates/sysadmin/sys_org_info_base.html:20 @@ -5036,7 +5217,7 @@ msgstr "Taka kerfisstjóraréttindi af" #: seahub/templates/sysadmin/sys_inst_info_user.html:40 msgid "Set Admin" -msgstr "" +msgstr "Gera að Kerfisstjóra" #: seahub/templates/sysadmin/sys_inst_info_user.html:51 #: seahub/templates/sysadmin/sys_org_info_user.html:57 @@ -5165,12 +5346,12 @@ msgid "Max User Number" msgstr "Hámarks Notendafjöldi" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Gildið ætti að vera tala" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "Gildið ætti að vera tala stærri en 0" @@ -5310,7 +5491,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP(innflutt)" @@ -5323,7 +5504,7 @@ msgid "Admins" msgstr "Kerfisstjórar" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Síðasta Innskráning" @@ -5349,7 +5530,7 @@ msgstr "Þú getur einnig bætt við notanda sem gesti, sem mun ekki geta búið #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Gestur" @@ -5437,6 +5618,12 @@ msgstr "Netfang: %(email)s" msgid "Password: %(password)s" msgstr "Lykilorð: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5514,24 +5701,24 @@ msgstr "til" msgid "Sorry, this user is not registered yet." msgstr "Afsakið, en þessi notandi er ekki enn skráður." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Núverandi Slóð:" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "uppfærði þessa skrá" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Efst á síðu" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "efst" @@ -5627,8 +5814,8 @@ msgstr "Ógild gildi." #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Aðgangur óheimill." @@ -5657,8 +5844,8 @@ msgid "Duplicated filename" msgstr "Skráarnafn þegar til" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Skrá er ekki til" @@ -5717,11 +5904,11 @@ msgstr "Tókst ekki að taka deilingu af \"%s\"." msgid "No revisions found" msgstr "Engar útgáfur fundust" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Athuga villu skráarlæsingar" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "Skrá er læst" @@ -5749,12 +5936,12 @@ msgstr "Tókst að kalla fram aftur %(path)s í rótarmöppu msgid "\"%s\" does not exist." msgstr "\"%s\" er ekki til." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Kerfisvilla" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Get ekki hlaðið niður möppu \"%s\": of stórt." @@ -5764,11 +5951,11 @@ msgstr "Get ekki hlaðið niður möppu \"%s\": of stórt." msgid "Unable to download \"%s\"" msgstr "Get ekki hlaðið niður \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "Virkja \"Eigið Wiki\"." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "Slökkva á \"Eigin Wiki\"" @@ -5785,7 +5972,7 @@ msgid "The group doesn't exist" msgstr "Hópurinn er ekki til." #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Safnið er dulkóðað" @@ -5863,262 +6050,266 @@ msgstr "Tókst ekki að sækja hlutaskrá" msgid "Wrong repo id" msgstr "Rangt auðkenni safns" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Mistókst" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Slæmt tákn í upphleðsluhlekk" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Slæmt tilvísunarnúmer í upphleðsluhlekk" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Engir árekstrar í sameiningunni" -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Gat ekki breytt upplýsingum um safn" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Gat ekki vistað stillingar á þjóni" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Stillingar vistaðar." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Notandanafn %s er ekki leyfilegt." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Finn ekki notanda %s." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "Notandinn %s er ekki í samfélaginu" -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "Get ekki flutt safn samfélagsnotandans %s." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Mistókst að breyta lykilorði, þú ert ekki eigandi." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Röng heimild á möppu, ætti að vera \"rw\" eða \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "Slóð ætti að byrja á \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "Slóð ætti ekki að enda á \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Röng slóð" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Rangur notandi, ætti að vera skráður" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Aðgerð mistókst" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Röng heimild á möppu" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Vinsamlegast bættu fyrst við möppuheimild" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Vinsamlegast athugaðu netfang/netföng sem þú slóst inn og tengiliðini sem þú valdir" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Rangur hópur" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "Hópur er ekki til" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Mistókst, skrá er of stór" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTP villa: tókst ekki að opna skrána" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "Veffangsvilla: tókst ekki að opna skrána" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "Kóðunin sem þú valdir á ekki við." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Óþekkt skráargerð" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "Skráarstærð yfir %s, ekki hægt að opna í vafra." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "Þetta safn er dulkóðað, get ekki opnað skrár innan kerfis." -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Getur ekki skoðað skrá" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Óleyfileg skráargerð." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "Gat ekki niðurhalað skrá, röng skráarslóð" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "Gat ekki niðurhalað skrá, röng skráarslóð" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "Gat ekki niðurhalað skrá, deilihlekksumferð er uppurin." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "Safnið er ekki til." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "Safnið er dulkóðað" -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Ekki hægt að breyta skrá" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Skráin er ekki til." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Ekki er hægt að breyta skrá af þessari gerð í vafra" -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Get ekki halað niður skrá" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Get ekki nálgast skránna: kvótinn fyrir netumferð deildra hlekkja er uppurinn." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "Get ekki halað niður: mappa finnst ekki." -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "Ekki hægt að skoða safn" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "Get ekki skoðað safn, röng möppuslóð" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Rangt notendanafn" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "Mistókst að flytja út í Excel skrá" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Mistókst að gefa út kvóta: hámarks kvóti er %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Mistókst að setja kvóta: Kerfisvilla" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Mistókst að eyða: notandinn er stofnandi samfélagsins" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Tókst að eyða prufu fyrir: %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Tókst að taka kerfisstjóraréttindi af %s" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Mistókst að taka kerfisstjóraréttindin af: notandinn er ekki til" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Reikningurinn þinn á %s hefur verið virkjaður" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "Lykilorðið hefur verið endursett á %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Tókst að breyta lykilorðinu í %(passwd)s, tölvupóstur hefur verið sendur til %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Tókst að endurstilla lykilorðið í %(passwd)s, en mistókst að senda tölvupóst til %(user)s, vinsamlegast athugaðu netfangs stillinguna." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Tókst að endurstilla lykilorðið í %(passwd)s fyrir notandann %(user)s." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6126,107 +6317,107 @@ msgid "" "configured." msgstr "Tókst að endurstilla lykilorðið í %(passwd)s fyrir notandann %(user)s. En tölvupóst er ekki hægt að senda því tölvupóststillingar eru ekki rétt stilltar." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Mistókst að endurstilla lykilorð: notandinn er ekki til" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Þér hefur verið boðið í %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Mistókst að bæta við notanda %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "Tókst að bæta við notandanum %s. Tilkynning hefur verið send í tölvupósti." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "Tókst að bæta við notandanum %s. Villa kom upp þegar reynt var að senda tilkynningu þess efnis í tölvupósti, vinsamlegast athugaðu tölvupóststillingarnar." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "Tókst að bæta við notandanum %s." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "Tókst að bæta við notandanum %s. En ekki var hægt að senda tilkynningu um það í tölvupósti, því póstþjónustan er ekki rétt upp sett." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Mistókst að endurnefna samfélag" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Giftursamlega eytt" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Flutningurinn tókst ekki, eitthvað vitlaust slegið inn" -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Færslan tókst ekki, notandinn %s fannst ekki" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "Gat ekki flutt safn samfélagsins" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "Gat ekki flutt safn til notandans %s í samfélaginu" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Tókst að flytja" -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "Ekki er hægt að eyða kerfissafni." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Mistókst að eyða, vinsamlegast reyndu aftur síðar." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "Tókst að gera %s að kerfisstjóra." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Mistókst að gera %s að kerfisstjóra: notandi er ekki til." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Innflutningur tókst" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Vinsamlegast veldu fyrst csv skrá." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Röng stilling" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Rangt gildi" diff --git a/locale/is/LC_MESSAGES/djangojs.po b/locale/is/LC_MESSAGES/djangojs.po index 91351c3c1b..58f1d13e6a 100644 --- a/locale/is/LC_MESSAGES/djangojs.po +++ b/locale/is/LC_MESSAGES/djangojs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Icelandic (http://www.transifex.com/haiwen/seahub/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Rétt í þessu" @@ -31,33 +31,58 @@ msgstr "Rétt í þessu" msgid "Name is required" msgstr "Nafn er skilyrði" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Vinsamlegast sláðu inn lykilorð" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Vinsamlegast sláðu inn lykilorðið aftur" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Lykilorðið er of stutt" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Lykilorðin stemma ekki" #: static/scripts/app/models/repo.js:53 msgid "Encrypted library" -msgstr "" +msgstr "Dulkóðað safn" #: static/scripts/app/models/repo.js:55 msgid "Read-Write library" -msgstr "" +msgstr "Lesa-Skrifa safn" #: static/scripts/app/models/repo.js:57 msgid "Read-Only library" -msgstr "" +msgstr "Aðeins-Lesa safn" + +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Vinsamlegast athugaðu netkerfið." #: static/scripts/app/views/details.js:47 msgid "New files" @@ -88,37 +113,42 @@ msgstr "Eyddar möppur" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Mistókst. Vinsamlegast veldu netkerfi." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." -msgstr "" +msgstr "Tókst að aftengja %(name)s." #: static/scripts/app/views/dialogs/dirent-mvcp.js:50 msgid "Move {placeholder} to:" @@ -146,274 +176,255 @@ msgstr "Mistókst." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Hætt við" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Röng lokaslóð" #: static/scripts/app/views/dialogs/dirent-mvcp.js:199 msgid "Successfully moved %(name)s" -msgstr "" +msgstr "Tókst að færa %(name)s" #: static/scripts/app/views/dialogs/dirent-mvcp.js:202 msgid "Successfully copied %(name)s" -msgstr "" +msgstr "Tókst að afrita %(name)s" #: static/scripts/app/views/dialogs/dirent-rename.js:27 msgid "Rename Folder" -msgstr "" +msgstr "Endurnefna Möppu" #: static/scripts/app/views/dialogs/dirent-rename.js:27 msgid "Rename File" -msgstr "" +msgstr "Endurnefna Skrá" #: static/scripts/app/views/dialogs/repo-change-password.js:26 msgid "Change Password of Library {placeholder}" -msgstr "" +msgstr "Breyta Lykilorði Safns {placeholder}" #: static/scripts/app/views/dialogs/repo-change-password.js:50 msgid "Please enter the old password" -msgstr "" +msgstr "Vinsamlegast sláðu inn gamla lykilorðið" #: static/scripts/app/views/dialogs/repo-change-password.js:54 msgid "Please enter a new password" -msgstr "" +msgstr "Vinsamlegast sláðu inn nýja lykilorðið" #: static/scripts/app/views/dialogs/repo-change-password.js:58 msgid "New password is too short" -msgstr "" +msgstr "Nýja lykilorðið er of stutt" #: static/scripts/app/views/dialogs/repo-change-password.js:62 msgid "Please enter the new password again" -msgstr "" +msgstr "Vinsamlegast sláðu inn nýja lykilorðið aftur" #: static/scripts/app/views/dialogs/repo-change-password.js:66 msgid "New passwords don't match" -msgstr "" +msgstr "Nýju lykilorðin stemma ekki" #: static/scripts/app/views/dialogs/repo-change-password.js:88 msgid "Successfully changed library password." -msgstr "" +msgstr "Tókst að skipta um lykilorð safns." #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:73 msgid "{placeholder} Folder Permission" -msgstr "" +msgstr "{placeholder} Möppu Réttindi" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" -msgstr "" +msgstr "Leita að notanda eða sláðu inn netfang og sláðu á Enter" #: 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 "" +msgstr "Þú getur aðeins valið 1 atriði" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:103 msgid "Select a group" -msgstr "" +msgstr "Veldu grúppu" #: 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Réttindavilla" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Vinsamlegast athugaðu netkerfið." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." -msgstr "" +msgstr "Vinsamlegast smelltu og veldu möppu." #: static/scripts/app/views/dialogs/repo-history-settings.js:35 msgid "{placeholder} History Setting" -msgstr "" +msgstr "{placeholder} Sögustilling" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." -msgstr "" +msgstr "Tókst að virkja safnasögu." #: static/scripts/app/views/dialogs/repo-share-link-admin.js:50 msgid "{placeholder} Share Links" -msgstr "" +msgstr "{placeholder} Deilihlekkir" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Loka (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Hleð..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Fyrri (vinstri örvalykill)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Næsta (hægri örvalykill)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% af %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "Myndina var ekki hægt að hlaða inn." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Opna í nýjum flipa" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Lykilorðs er krafist." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Þess er krafist." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Hér er aðeins nafnaukinn, vinsamlegast sláðu inn nafn." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Vinnsla..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Tókst að eyða %(name)s." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "Tókst að eyða %(name)s og 1 öðru atriði." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Tókst að eyða %(name)s og %(amount)s öðrum atriðum." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Mistókst að eyða %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Mistókst að eyða %(name)s og einu öðru atriði." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Mistókst að eyða %(name)s og %(amount)s öðrum atriðum." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Eyddum atriðum" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Ertu viss um að þú viljir eyða þessum völdu atriðum?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Færði merkt atriði í:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Afrita merkt atriði í:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "Tókst að flytja %(name)s." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "Tókst að færa %(name)s og 1 öðru atriði." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "Tókst að færa %(name)s og %(amount)s öðrum atriðum" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "Tókst að afrita %(name)s." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "Tókst að afrita %(name)s og 1 öðru atriði." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "Tókst að afrita %(name)s og %(amount)s öðrum atriðum." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Kerfisvilla. Mistókst að færa %(name)s og %(amount)s öðru(m) atriði/atriðum." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Kerfisvilla. Mistókst að færa %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "kerfisvilla. Mistókst að afrita %(name)s og %(amount)s öðru(m) atriði/atriðum." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Kerfisvilla. Mistókst að afrita %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Færi skrá %(index)s af %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Afrita skrá %(index)s af %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Mistókst að færa %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Mistókst að afrita %(name)s" @@ -453,10 +464,10 @@ msgstr "Upphleðslustaða tómra skráa" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -500,19 +511,19 @@ msgstr "Hætt við upphleðslu skráar" msgid "File Upload failed" msgstr "Upphleðsla skráar mistókst" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Mistókst að sækja upphleðsluslóð" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Mistókst að sækja uppfærsluslóð" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Skipta út skránni {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Skrá er læst" @@ -521,7 +532,7 @@ msgid "Set {placeholder}'s permission" msgstr "Setja réttindi {placeholder}" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Veldu hópa" @@ -535,41 +546,47 @@ msgstr "Eyðsla mistókst" #: static/scripts/app/views/group-manage-members.js:71 msgid "{placeholder} Members" -msgstr "" +msgstr "{placeholder} Meðlimir" #: static/scripts/app/views/group-repo.js:57 #: static/scripts/app/views/organization-repo.js:51 msgid "Successfully unshared {placeholder}" msgstr "Tókst að taka deilingu af {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" +msgstr "Þú getur ekki merkt við fleiri valmöguleika" + +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" -msgstr "" +msgstr "Vinsamlegast veldu CSV skrá" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." -msgstr "" +msgstr "Tókst að flytja inn" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" -msgstr "" +msgstr "Eyða Grúppu" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" -msgstr "" +msgstr "Ertu viss um að þú viljir eyða þessum hópi?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" -msgstr "" +msgstr "Hætta í Hópi" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" -msgstr "" +msgstr "Ertu viss um að þú viljir hætta í þessum hópi?" #: static/scripts/app/views/repo.js:62 msgid "Really want to delete {lib_name}?" @@ -579,47 +596,48 @@ msgstr "Viltu virkilega eyða {lib_name}?" msgid "Delete succeeded." msgstr "Eyðing tókst." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" -msgstr "" +msgstr "Færa Safn {library_name} Til" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." -msgstr "" +msgstr "Tókst að færa safnið." #: static/scripts/app/views/share.js:57 msgid "Share {placeholder}" msgstr "Deila {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Útrunnið" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Fela" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Sýna" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Vinsamlegast sláðu inn daga." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Vinsamlegast sláðu inn löglega daga" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Vindamlegast settu inn amk eitt netfang." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Tókst að senda til {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Mistókst að senda til {placeholder}" @@ -631,22 +649,26 @@ msgstr "Tókst" msgid "Successfully unstared {placeholder}" msgstr "Tókst að taka stjörnu af {placeholder}" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" -msgstr "" +msgstr "Leita að notendum eða netföngum og sláðu á Enter" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Vinsamlegast sláðu inn 1 eða fleiri stafi" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Engin samsvörun" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Leita..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Hleðsla mistókst" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/it/LC_MESSAGES/django.po b/locale/it/LC_MESSAGES/django.po index 69fa9ee1ed..535ab3bcd6 100644 --- a/locale/it/LC_MESSAGES/django.po +++ b/locale/it/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Italian (http://www.transifex.com/haiwen/seahub/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,14 +20,15 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -54,8 +55,8 @@ msgstr "Password sbagliata" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Errore interno del server" @@ -65,34 +66,34 @@ msgstr "Errore nella decrittazione della libreria" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Invio fallito del link condiviso. Il servizio Email non è correttamente configurato, per cortesia contatta l'amministratore." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Un file è stato condiviso con te su %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Una cartella è stata condivisa con te su %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Un upload link è condiviso con te su %s" @@ -101,14 +102,15 @@ msgstr "Un upload link è condiviso con te su %s" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "La password è troppo corta" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "File Collaboration Team Organization" @@ -144,7 +146,7 @@ msgid "No activity now or the function is not supported." msgstr "Nessuna attività o funzione non supportata." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Liberia creata" @@ -159,7 +161,8 @@ msgstr "Libreria cancellata %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -167,8 +170,8 @@ msgstr "Libreria cancellata %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -184,7 +187,7 @@ msgstr "Prego controlla la rete." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -210,13 +213,16 @@ msgstr "Date importanti" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -244,10 +250,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -307,7 +314,7 @@ msgid "New password confirmation" msgstr "Conferma nuova password" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Le due password non corrispondono." @@ -319,7 +326,7 @@ msgstr "Vecchia password" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "La vecchia password non è corretta. Riprova." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Password (conferma)" @@ -328,15 +335,19 @@ msgstr "Password (conferma)" msgid "Enter a valid e-mail address." msgstr "Inserisci un indirizzo e-mail valido." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Uscito." -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Impossibile spedire l'email, si prega di contattare l'amministratore." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Impossibile aggiornare password, contatta l'amministratore LDAP." @@ -423,6 +434,7 @@ msgstr "Avatar attuale: " #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -434,24 +446,24 @@ msgstr "Avatar attuale: " #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -512,43 +524,48 @@ msgstr "Aggiornamento avatar completato correttamente." msgid "Successfully deleted the requested avatars." msgstr "Gli avatar sono stati cancellati correttamente." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Indirizzo e-mail" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Nome utente" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Questo valore deve essere lungo 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Inserire un indirizzo email valido." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Un utente con questo indirizzo e-mail è già presente" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Id utente non valido." -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "nome" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "dipartimento" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "telefono" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "nota" @@ -617,7 +634,7 @@ msgid "Recovered deleted directory" msgstr "Recuperata la cartella cancellata" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Cambia il nome della libreria o della descrizione" @@ -665,22 +682,22 @@ msgstr[1] "%(seconds)d secondi fa" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -693,21 +710,21 @@ msgstr "Lettura-Scrittura" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -779,15 +796,16 @@ msgstr "Email " #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -815,7 +833,7 @@ msgstr "Email " #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nome" @@ -860,11 +878,11 @@ msgstr "Operazioni" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -885,21 +903,21 @@ msgstr "Modifica" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -931,8 +949,9 @@ msgstr "Aggiungi contatti per condividere velocemente librerie e inviare linka f #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -942,8 +961,8 @@ msgstr "Aggiungi contatti per condividere velocemente librerie e inviare linka f #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Email" @@ -1041,17 +1060,17 @@ msgstr "La descrizione è troppo lunga (massimo 100 caratteri)" msgid "Name %s is not valid" msgstr "Il nome %s non è valido" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Argomento mancante" @@ -1113,7 +1132,7 @@ msgid "Permission error: only group staff can add member" msgstr "Errore permessi: solo lo staff può aggiungere membri" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Il gruppo non essiste" @@ -1263,16 +1282,16 @@ msgstr "Per favore clicca e seleziona una libreria." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1349,21 +1368,21 @@ msgstr "Nome è richiesto." msgid "Description is required." msgstr "Descrizione è richiesta." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Permesso negato." @@ -1716,11 +1735,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Utenti" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1728,9 +1750,11 @@ msgstr "Info" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1741,12 +1765,16 @@ msgid "Libraries" msgstr "Librerie" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1806,12 +1834,12 @@ msgstr "" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1824,11 +1852,11 @@ msgid "Size" msgstr "Dimensione" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1838,7 +1866,7 @@ msgid "Last Update" msgstr "Ultimo aggiornamento" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1866,10 +1894,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Ruolo" @@ -1878,8 +1906,8 @@ msgstr "Ruolo" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Creato il" @@ -1894,7 +1922,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Stato" @@ -1914,7 +1942,7 @@ msgstr "Creato a / Ultima Login" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Attivo" @@ -1926,7 +1954,7 @@ msgstr "Attivo" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Inattivo" @@ -1935,7 +1963,7 @@ msgstr "Inattivo" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Vuoto" @@ -1953,33 +1981,32 @@ msgstr "Cancella Utente" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Proprietario" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Amministratore" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s cancellato correttamente" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Impossibile cancellare: l'utente non esiste" @@ -2003,6 +2030,7 @@ msgstr "Messaggio" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Orario" @@ -2049,16 +2077,22 @@ msgid "Send a message..." msgstr "Invia un messaggio..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Precedente" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2075,18 +2109,20 @@ msgstr "Veramente vuoi cancellare questa discussione?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Si" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "No" @@ -2128,57 +2164,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Nuova notifica in %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Errore interno" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s ha condiviso una libreria chiamata %(repo_name)s con te." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Hai ricevuto un nuovo messaggio da %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s ha una nuova discussione." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s ha creato una nuova discussione in %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s ha chiesto di unirsi al gruppo %(group_name)s, messaggio di verifica: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2226,11 +2271,19 @@ msgstr "%(user)s ha condiviso una libreria di nome %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Hai ricevuto un nuovo messaggio da %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2238,7 +2291,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2246,14 +2299,14 @@ msgid "" "message: %(msg)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Controlla alla seguente pagina:" @@ -2283,6 +2336,7 @@ msgid "Delete Notification" msgstr "Cancella Notifica" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2290,6 +2344,7 @@ msgstr "Cancella Notifica" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Ciao," @@ -2358,14 +2413,17 @@ msgstr "Settaggi del profilo" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Impostazioni" @@ -2599,40 +2657,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "Email non è lunga più di 512 caratteri" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "La password non può essere vuota" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Per favore inserisci la password corretta." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Link - Condivisione" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Link di Download" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Link di Upload" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Libreria" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Visite" @@ -2643,7 +2707,7 @@ msgstr "" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2659,7 +2723,7 @@ msgstr "Vedi" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2692,7 +2756,7 @@ msgid "Folders - Share" msgstr "Condivisione - Cartella" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Cartelle" @@ -2703,15 +2767,15 @@ msgstr "Condividi con" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Permesso" @@ -2777,175 +2841,211 @@ msgid "" "groups you are in." msgstr "Puoi condividere librerie con i tuoi amici e colleghi cliccando sulla icona di condivisione delle tue librerie nella tua homepage o creare una nuova libreria nei gruppi in cui appartieni." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Impossibile condividere a tutti i membri, si prega di riprovare più tardi." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Condiviso correttamente a tutti i membri, verificalo nelle Condivisioni." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Solo il proprietario della libreria ha il permesso di condividerla." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "La libreria non esiste" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Argomento non è valido" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Impossibile rimuovere la condivisione" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "group id non valido" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Impossibile togliere la condivisione: il gruppo non esiste." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Condivisione rimossa correttamente" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "tutti i membri" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Il link non esiste" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Per favore seleziona una cartella." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Salvato correttamente." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "Invio del link di condivisione in upload fallito. Il servizio Email non è correttamente configurato, per favore contatta l'amministratore." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Argomento non valido" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "La libreria non esiste." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Spiacenti, la pagina richiesta non è stata trovata." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Uscita da Amministrazione di Sistema" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Chiudi" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Notifiche" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Vedi Tutte le Notifiche" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Esci" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Amministrazione di Sistema" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Notifiche" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Benvenuto in Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile organizza i file in librerie. Ogni libreria può essere sincronizzata e condivisa separatamente. Abbiamo creato una libreria personale per te. Successivamente potrai creare ulteriori librerie." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2953,7 +3053,7 @@ msgid "" msgstr "Seafile organizza i file in librerie. Ogni libreria può essere sincronizzata e condivisa separatamente. Comunque, siccome ora sei un utente guest, non puoi creare librerie." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Registrati" @@ -2983,28 +3083,31 @@ msgid "Please enter the password." msgstr "Per favore inserisci la password." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Scarica" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3013,9 +3116,12 @@ msgstr "" msgid "Current Path:" msgstr "Percorso Attuale:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Utente" @@ -3025,11 +3131,16 @@ msgstr "Utente" msgid "Type" msgstr "" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Nome Dispositivo" @@ -3043,6 +3154,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3068,10 +3180,6 @@ msgstr "Bozza salvata." msgid "is encrypted" msgstr "è criptato" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Password:" - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "La password è conservata nel server per solo 1 ora." @@ -3196,7 +3304,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Predefinito" @@ -3221,10 +3329,10 @@ msgid "Password is required." msgstr "La Password è richiesta." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Cronologia" @@ -3320,85 +3428,90 @@ msgstr "Seafile" msgid "About Us" msgstr "" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Documenti" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Mie" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Condivise con me" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "Organizzazione" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Tutti i Gruppi" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Attiva moduli" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Preferiti" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Attività" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Wiki Personale" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Dispositivi" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Amministrazione Condivisioni" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Link" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "" @@ -3416,18 +3529,12 @@ msgid "Shared Libs" msgstr "" #: 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 "Nuova Cartella" - -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Nome Cartella" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Nuovo File" @@ -3445,8 +3552,7 @@ msgstr "simple markup format." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Dettagli" @@ -3510,7 +3616,123 @@ msgstr "" msgid "Don't replace" msgstr "" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organizzazioni" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Traffico" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Logs" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Piattaforma" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Ultimo Accesso" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Scollega" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Errore" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Nuova libreria" @@ -3524,13 +3746,14 @@ msgid "Encrypt" msgstr "Cifra" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(almeno %(repo_password_min_length)s caratteri)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Ridigita password" @@ -3540,34 +3763,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Condividi" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Altro" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Rinomina" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3590,58 +3813,59 @@ msgid "Folder Permission" msgstr "" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Sposta" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Copia" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Carica" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Carica File" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3649,175 +3873,177 @@ msgstr "" msgid "Trash" msgstr "Cestino" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Sotto-librerie" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Altro" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "preferiti" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "non preferiti" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Link di Download" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Link di Upload" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Aggiungi la protezione password" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Generare" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Link:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Invia" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Spedisci a:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Emails, separate da ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Messaggio (opzionale):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Invio..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Puoi condividere il link generato con altri ed essi possono caricare file nella cartella tramite il link." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Link di Upload:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Condivise ai miei Gruppi" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Lascia Condivisione" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3828,182 +4054,191 @@ msgstr "Wiki" msgid "Members" msgstr "Membri" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Discussione" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "icona" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Smarca" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Condiviso da" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Dettaglio Modifiche" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Ricerca documenti in questo wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Ricerca documenti in questa libreria" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Ricerca documenti" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "avanzato" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Rispondi" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Elimina" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Rinomina Gruppo In" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Trasferisci il gruppo a" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Conserva la cronologia" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Non conservare la cronologia" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Tieni solamente un periodo della cronologia:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "giorni" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Vecchia Password" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Nuova Password (di almeno %(repo_password_min_length)s caratteri)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Nuova Password Controllo" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Scollega" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Vedi Tutte le Notifiche" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4020,6 +4255,11 @@ msgstr "Puoi creare una libreria per organizzare i tuoi files. Per esempio, puoi msgid "No library is shared to you" msgstr "Non ci sono librerie condivise con te" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organizzazione" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "" @@ -4066,10 +4306,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Un gruppo è un luogo dove tu e i tuoi amici potete lasciare messaggi e collaborare insieme sulle librerie. I gruppi a cui appartieni sono presenti qui." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Nome gruppo" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4109,14 +4345,6 @@ msgid "" " page, and they will be listed here." msgstr "Puoi impostare come preferito files importanti cliccando il bottone \"Preferiti\" sul file visualizzato nella pagina, e saranno visualizzati quì." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Piattaforma" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Ultimo Accesso" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Librerie" @@ -4146,7 +4374,7 @@ msgstr "" #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4166,33 +4394,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Non è chiaro? Aggiornalo." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Email o password non corretti" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Ricordami per %(remember_days)s giorni" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Fallito aggiornamento del CAPTCHA, per favore riprova più tardi." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4233,10 +4461,6 @@ msgstr "" msgid "Current Password" msgstr "" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4373,11 +4597,6 @@ msgstr "Email non può essere vuota" 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 "Orario Cancellazione" @@ -4399,12 +4618,12 @@ msgid "1 month ago" msgstr "" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "" @@ -4634,7 +4853,7 @@ msgid "Please enter password" msgstr "Digita Password" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Cancellazione avvenuta." @@ -4775,6 +4994,15 @@ msgstr "Stelle" msgid "Successfully unstarred." msgstr "Tolto dai preferiti correttamente." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Nuova Cartella" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Nome Cartella" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "chiudi" @@ -4800,88 +5028,62 @@ msgstr "" msgid "Failed to get upload url" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Il file è troppo grande" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Il file è troppo piccolo" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Tipo di file non permesso" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Numero massimo di file superato" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Bytes caricati superano la dimensione del file" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Svuota risultati del caricamento file" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Errore" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Inizio" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "E' richiesto." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organizzazioni" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Traffico" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Logs" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Creatore " @@ -4933,6 +5135,13 @@ msgstr "" msgid "Files / Size" msgstr "" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "" @@ -4963,10 +5172,6 @@ msgstr "" msgid "No library has shared to this group" msgstr "" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4978,30 +5183,6 @@ msgstr "" msgid "Delete Group" msgstr "Cancella gruppo" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5165,12 +5346,12 @@ msgid "Max User Number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "" @@ -5310,7 +5491,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "" @@ -5323,7 +5504,7 @@ msgid "Admins" msgstr "Amministratori" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "" @@ -5349,7 +5530,7 @@ msgstr "Puoi anche aggiungere come guest, egli non potrà creare librerie o grup #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Guest" @@ -5437,6 +5618,12 @@ msgstr "Email: %(email)s" msgid "Password: %(password)s" msgstr "Password: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5514,24 +5701,24 @@ msgstr "a" msgid "Sorry, this user is not registered yet." msgstr "Spiacenti, l'utente non è ancora registrato." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Percorso Attuale:" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "aggiornato questo file" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "in alto" @@ -5627,8 +5814,8 @@ msgstr "" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Permesso negato." @@ -5657,8 +5844,8 @@ msgid "Duplicated filename" msgstr "Filename già esistente" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Il file non esiste." @@ -5717,11 +5904,11 @@ msgstr "Fallito tentativo di togliere la condivisione a \"%s\"." msgid "No revisions found" msgstr "" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "" @@ -5749,12 +5936,12 @@ msgstr "Conversione %(path)s in directory root completa. msgid "\"%s\" does not exist." msgstr "" -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Errore interno" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Impossibile download cartella \"%s\": la dimensione è troppo grande." @@ -5764,11 +5951,11 @@ msgstr "Impossibile download cartella \"%s\": la dimensione è troppo grande." msgid "Unable to download \"%s\"" msgstr "Impossibile scaricare \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "\"Personal Wiki\" abilitato correttamente." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "\"Personal Wiki\" disabilitato correttamente." @@ -5785,7 +5972,7 @@ msgid "The group doesn't exist" msgstr "Il gruppo non esiste." #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Libreria criptata." @@ -5863,262 +6050,266 @@ msgstr "Fallito mentre leggo la block list." msgid "Wrong repo id" msgstr "Repo Id Errato" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Nessun conflitto nell'unione." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Impossibile modificare le informazioni della libreria." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Impossibile salvare le impostazioni sul server" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Impostazioni salvata." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Il nome utente %s non è valido." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Utente %s non è stato trovato." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "L'utente %s non è nell'organizzazione corrente." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "" -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Impossibile aggiornare password, non sei il proprietario." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Operazione fallita" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "Errore HTTP: impossibile aprire il file online" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "Errore URL: impossibile aprire il file online" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "La codifica scelta non è corretta." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Codifica file sconosciuta" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "La dimensione del file supera %s e non può essere aperta online." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Impossibile vedere il file" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Formato file non valido." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "La libreria non esiste." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "La libreria è criptata." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Impossibile editare il file" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Il file non esiste." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "La modifica online non è consentita per questo tipo di file." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Impossibile accedere al file: la quota di traffico del collegamento è esaurita." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Impossibile impostare la quota: errore interno del server" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Permessi di amministrazione revocati a %s correttamente" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Revoca permessi di amministratore fallita: l'utente non esiste" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Il tuo account su %s è stato attivato" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "La password è stata reimpostata su %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Ripristino della password con %(passwd)s, una email è stata inviata a %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Password reimpostata correttamente a %(passwd)s, ma non è stato possibile inviarla a %(user)s, per favore controlla la configurazione della tua posta." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Ripristino della password con %(passwd)s per l'utente %(user)s eseguito con successo." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6126,107 +6317,107 @@ msgid "" "configured." msgstr "Password reimpostata correttamente a %(passwd)s per l'utente %(user)s. Ma la notifica email non può essere inviata perché il servizio Email non è configurato correttamente." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Impossibile ripristinare password: utente inesistente" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Sei stato invitato ad aderire a %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "" -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "Utente %s aggiunto correttamente. E' stata inviata una email di notifica." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "L'utente %s è stato aggiunto correttamente. E' però accaduto un errore durante la spedizione della notifica, per favore verifica la configurazione della tua email. " -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "Utente %s aggiunto correttamente." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "L'utente %s è stato aggiunto con successo. Ma la email di notifica non può essere spedita, perché il servizio Email non è propriamente configurato." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Trasferimento fallito, argomenti non validi." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Trasferimento fallito, utente %s non trovato" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Trasferito correttamente." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "La libreria di sistema non può essere cancellata." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s è stato correttamente impostato come amministratore correttamente." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Impossibile impostare %s come amministratore: l'utente non esiste." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Importazione avvenuta con successo" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Scegli prima un file csv." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "" diff --git a/locale/it/LC_MESSAGES/djangojs.po b/locale/it/LC_MESSAGES/djangojs.po index bfe8cae957..877f382fa9 100644 --- a/locale/it/LC_MESSAGES/djangojs.po +++ b/locale/it/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Italian (http://www.transifex.com/haiwen/seahub/language/it/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/ja/LC_MESSAGES/django.po b/locale/ja/LC_MESSAGES/django.po index 332dfacbf9..d56bcdbe68 100644 --- a/locale/ja/LC_MESSAGES/django.po +++ b/locale/ja/LC_MESSAGES/django.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Japanese (http://www.transifex.com/haiwen/seahub/language/ja/)\n" "MIME-Version: 1.0\n" @@ -22,14 +22,15 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -56,8 +57,8 @@ msgstr "パスワードが違います。" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "サーバ内部エラー" @@ -67,34 +68,34 @@ msgstr "ライブラリ復号化エラー" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "共有リンクの送信に失敗。電子メールサービスが正しく設定されていません。管理者に連絡してください。" -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "ファイル" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "%sのファイルが共有されました。" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "ディレクトリ" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "%sのディレクトリが共有されました。" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "" @@ -103,14 +104,15 @@ msgstr "" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "パスワードが短すぎます。" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "ファイル連携するチームの組織" @@ -146,7 +148,7 @@ msgid "No activity now or the function is not supported." msgstr "お知らせがない或いは当機能がサポートされません。" #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "ライブラリを作成しました" @@ -161,7 +163,8 @@ msgstr "%(library_name)s というライブラリを削除しました" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -169,8 +172,8 @@ msgstr "%(library_name)s というライブラリを削除しました" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -186,7 +189,7 @@ msgstr "ネットワークをご確認ください。" #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -212,13 +215,16 @@ msgstr "重要な日付" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -246,10 +252,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -309,7 +316,7 @@ msgid "New password confirmation" msgstr "パスワード再入力" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "二つのパスワードが一致しません。もう一度試してください。" @@ -321,7 +328,7 @@ msgstr "旧いパスワード" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "旧パスワードが不正です。" -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "パスワード再入力" @@ -330,15 +337,19 @@ msgstr "パスワード再入力" msgid "Enter a valid e-mail address." msgstr "有効なメールアドレスを入力してください。" -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "ログアウト" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "メールアドレスの送信に失敗しました。" -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "パスワード更新に失敗しました。LDAPインフラ管理者にご連絡ください。" @@ -425,6 +436,7 @@ msgstr "現在のプロフィール画像:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -436,24 +448,24 @@ msgstr "現在のプロフィール画像:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -514,43 +526,48 @@ msgstr "プロフィール画像を更新しました。" msgid "Successfully deleted the requested avatars." msgstr "プロフィール画像を削除しました。" -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "メールアドレス" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "ユーザー名" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "40桁が必要です" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "正しいメールアドレスを入力してください" -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "このメールアドレスのユーザは既に" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "無効なユーザーid" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "氏名" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "部署" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "電話番号" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "備考" @@ -619,7 +636,7 @@ msgid "Recovered deleted directory" msgstr "削除されたフォルダを復元" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "ライブラリ名や説明文を変更しました" @@ -663,22 +680,22 @@ msgstr[0] "%(seconds)d 秒前" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -691,21 +708,21 @@ msgstr "読み/書き" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -776,15 +793,16 @@ msgstr "メールアドレス" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -812,7 +830,7 @@ msgstr "メールアドレス" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "氏名" @@ -857,11 +875,11 @@ msgstr "操作" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -882,21 +900,21 @@ msgstr "編集" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -928,8 +946,9 @@ msgstr "連絡先を追加すると、簡単にライブラリを共有したり #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -939,8 +958,8 @@ msgstr "連絡先を追加すると、簡単にライブラリを共有したり #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "メールアドレス" @@ -1038,17 +1057,17 @@ msgstr "説明文が長すぎます(最大100文字です)" msgid "Name %s is not valid" msgstr "ユーザー名に「%s」は使用できません" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "パラメーターが足りません" @@ -1110,7 +1129,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:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "グループは存在しません。" @@ -1260,16 +1279,16 @@ msgstr "クリックしてファイル名と場所を選んでください。" #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1346,21 +1365,21 @@ msgstr "氏名は必須項目です。" msgid "Description is required." msgstr "説明は入力必須です" -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "権限がありません。" @@ -1713,11 +1732,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "ユーザ" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1725,9 +1747,11 @@ msgstr "情報" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1738,12 +1762,16 @@ msgid "Libraries" msgstr "ライブラリー" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1803,12 +1831,12 @@ msgstr "所有するライブラリ" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1821,11 +1849,11 @@ msgid "Size" msgstr "サイズ" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1835,7 +1863,7 @@ msgid "Last Update" msgstr "前回の更新" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1863,10 +1891,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "役割" @@ -1875,8 +1903,8 @@ msgstr "役割" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "作成日" @@ -1891,7 +1919,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "状態" @@ -1911,7 +1939,7 @@ msgstr "作成/最終ログイン日時" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "アクティブ" @@ -1923,7 +1951,7 @@ msgstr "アクティブ" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "無効" @@ -1932,7 +1960,7 @@ msgstr "無効" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "空" @@ -1950,33 +1978,32 @@ msgstr "ユーザ削除" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "所有者" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "管理" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s を削除しました。" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "削除に失敗:ユーザは存在しません。" @@ -2000,6 +2027,7 @@ msgstr "メッセージ" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "日時" @@ -2046,16 +2074,22 @@ msgid "Send a message..." msgstr "メッセージの送信中..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "前へ" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2072,18 +2106,20 @@ msgstr "本当にこの議論を削除しますか?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "はい" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "いいえ" @@ -2125,57 +2161,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "%sの新規通知" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "内部エラー" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s は、ライブラリー%(repo_name)s をあなたに共有しました。" -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "あなたは %(user)sから 新規メッセージを受け取りました。" -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)sに、新しい掲示板があります。" -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s は%(group_name)sに、新しい掲示板を投稿しました。" -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s は、グループ %(group_name)sに参加申請をしました。申請依頼文は次の通り: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2222,11 +2267,19 @@ msgstr "%(user)s は、共有ライブラリー %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "新規メッセージ を%(user)sから受け取りました。" -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2234,7 +2287,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "ファイル%(file_name)s は、あなたのフォルダ %(folder_name)sにアップロードされました。" -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2242,14 +2295,14 @@ msgid "" "message: %(msg)s" msgstr "ユーザ%(user)sはグループ %(grp_name)sに参加を希望しています。申請依頼文は次の通りです: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "次のページをチェックしてください:" @@ -2279,6 +2332,7 @@ msgid "Delete Notification" msgstr "通知の削除" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2286,6 +2340,7 @@ msgstr "通知の削除" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Hi," @@ -2354,14 +2409,17 @@ msgstr "プロフィール設定" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "設定" @@ -2595,40 +2653,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "メールアドレスは、最大512文字です。" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "パスワードを入力してください" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "正しいパスワードを入力してください" +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "リンク - 共有" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "ダウンロードリンク" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "アップロードリンク" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 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/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "訪問者" @@ -2639,7 +2703,7 @@ msgstr "" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2655,7 +2719,7 @@ msgstr "閲覧" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2688,7 +2752,7 @@ msgid "Folders - Share" msgstr "フォルダ - 共有" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "フォルダ" @@ -2699,15 +2763,15 @@ msgstr "共有先" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "権限" @@ -2773,175 +2837,211 @@ msgid "" "groups you are in." msgstr "ホームページにある自分のライブラリーの共有アイコンをクリックして、ライブラリーを友人や同僚に共有することができます。また、所属するグループに新規に共有ライブラリーを作成することもできます。" -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "全てのメンバーへ共有に失敗しました。再度試してください。" -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "全てのメンバーに共有しました。共有一覧ページを確認ください。" -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "ライブラリーの所有者のみが共有設定できます。" -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "ライブラリーが存在しません" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "パラメータが不正です。" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "共有の削除に失敗しました。" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "グループIDが正しくありません。" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "共有解除に失敗:グループは存在しません。" -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "共有を外しました。" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "全てのメンバー" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "リンクが存在しません" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "目的のディレクトリを選択" -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "保存されました。" -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "" -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "パラメータ不正" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "ライブラリが存在しません。" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "" #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "システム管理を抜ける" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "閉じる" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: 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:71 -msgid "See All Notifications" -msgstr "すべての通知を表示" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "ログアウト" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "システム管理" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "通知" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Seafileへようこそ" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2949,7 +3049,7 @@ msgid "" msgstr "" #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "ID登録" @@ -2979,28 +3079,31 @@ msgid "Please enter the password." msgstr "パスワードを入力してください" #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: 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:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3009,9 +3112,12 @@ msgstr "" msgid "Current Path:" msgstr "現在のパス:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "ユーザ" @@ -3021,11 +3127,16 @@ msgstr "ユーザ" msgid "Type" msgstr "種類" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "デバイス名" @@ -3039,6 +3150,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3064,10 +3176,6 @@ msgstr "下書きを保存。" 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 "パスワードはサーバに1時間だけ保持されます。" @@ -3192,7 +3300,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "既定" @@ -3217,10 +3325,10 @@ msgid "Password is required." msgstr "パスワードは入力必須です" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "履歴" @@ -3316,85 +3424,90 @@ msgstr "Seafile" msgid "About Us" msgstr "私達について" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "ファイル" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "自分用" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "共有" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "組織" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "全てのグループ" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "モジュールを有効化" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "スター" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "個人用Wiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "デバイス" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "共有管理" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "リンク" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "アップロードするフォルダ" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "有効期限を設定" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "日" @@ -3412,18 +3525,12 @@ msgid "Shared Libs" msgstr "共有ライブラリ" #: 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/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "ディレクトリ名" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "新規ファイル" @@ -3441,8 +3548,7 @@ msgstr "単純なマークアップ形式。" #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "詳細" @@ -3506,7 +3612,123 @@ msgstr "" msgid "Don't replace" msgstr "" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "組織" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "通信量" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "ログ" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "プラットフォーム" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "前回のアクセス" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "ゴミ箱を空にする" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "エラー" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "新しいライブラリー" @@ -3520,13 +3742,14 @@ msgid "Encrypt" msgstr "暗号化" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(少なくとも %(repo_password_min_length)s 文字)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "パスワード (確認)" @@ -3536,34 +3759,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "共有" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "その他の操作" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "名前の変更" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3586,58 +3809,59 @@ msgid "Folder Permission" msgstr "フォルダー権限" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "移動" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "コピー" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "アップロード" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "ファイルのアップロード" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3645,175 +3869,177 @@ msgstr "" msgid "Trash" msgstr "ゴミ箱" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "キャビネット" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "その他の操作" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "ダウンロードリンク" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "アップロードリンク" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "パスワード保護を追加" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "生成" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "リンク:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "送信" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "送信先:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "メール(','(コンマ)区切り)" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "メッセージ(任意):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "送信中..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 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:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "アップロードリンク:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "グループ" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3824,182 +4050,191 @@ msgstr "Wiki" msgid "Members" msgstr "メンバー" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "掲示板" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "ユーザ権限" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "アイコン" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "星を外す" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "共有者" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "変更の詳細" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Wikiのファイルの検索" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "このライブラリのファイルを検索" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "ファイルの検索" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "高度な検索" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "応答" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "削除" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "グループ名を変更" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "グループを移転" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "全ての履歴を保存する" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "履歴を保存しない" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "履歴保存期間:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "日" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "作成者" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "フォルダ" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "フォルダ選択" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "旧いパスワード" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "新規パスワード(少なくとも %(repo_password_min_length)s 文字必要です)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "新規パスワード入力" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "再度パスワード入力" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "すべての通知を表示" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4016,6 +4251,11 @@ msgstr "" msgid "No library is shared to you" msgstr "共有されているライブラリはありません" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "組織" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "" @@ -4062,10 +4302,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "グループは、友人にメッセージを残したり、ライブラリーを連携させられる場所です。あなたが参加しているグループがここに一覧表示されます。" -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "グループ名" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4105,14 +4341,6 @@ msgid "" " page, and they will be listed here." msgstr "" -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "プラットフォーム" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "前回のアクセス" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# ライブラリー" @@ -4142,7 +4370,7 @@ msgstr "" #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4162,33 +4390,33 @@ msgstr "キャプチャ" msgid "Not clear? Refresh it." msgstr "覚えていませんか? 再設定しましょう。" -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "パスワードあるいはユーザー名をお忘れですか?" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "%(remember_days)s 日間ログイン状態を覚えておく。" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "キャプチャの再表示に失敗しました。再度試してみてください。" -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4229,10 +4457,6 @@ msgstr "" msgid "Current Password" msgstr "現在のパスワード" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "新規パスワード入力" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4369,11 +4593,6 @@ msgstr "メールは空欄にできません" 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 "削除日時" @@ -4395,12 +4614,12 @@ msgid "1 month ago" msgstr "一ヶ月前" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "成功" @@ -4630,7 +4849,7 @@ msgid "Please enter password" msgstr "パスワードを入力してください" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "削除しました。" @@ -4771,6 +4990,15 @@ msgstr "スター" msgid "Successfully unstarred." msgstr "スター削除完了。" +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "新規ディレクトリ" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "ディレクトリ名" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "閉じる" @@ -4796,88 +5024,62 @@ msgstr "ファイルアップロードが失敗しました" msgid "Failed to get upload url" msgstr "アップロードURLの取得に失敗しました。" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "ファイルが大きすぎます" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "ファイルが小さすぎます" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "ファイルタイプが許可されていません" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: 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/sysadmin/admin_repo_view.html:290 #: 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/sysadmin/admin_repo_view.html:291 #: 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/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "アップロードされました" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "キャンセルしました" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "開始" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "入力必須です" -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "組織" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "通信量" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "ログ" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "作成者" @@ -4929,6 +5131,13 @@ msgstr "ライブラリ削除" msgid "Files / Size" msgstr "" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "" @@ -4959,10 +5168,6 @@ msgstr "" msgid "No library has shared to this group" msgstr "" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4974,30 +5179,6 @@ msgstr "" msgid "Delete Group" msgstr "グループ削除" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5161,12 +5342,12 @@ msgid "Max User Number" msgstr "最大ユーザ数" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "数値を入力してください。" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "数値は0より大きい必要があります。" @@ -5306,7 +5487,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "" @@ -5319,7 +5500,7 @@ msgid "Admins" msgstr "管理者一覧" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "" @@ -5345,7 +5526,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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "ゲスト" @@ -5433,6 +5614,12 @@ msgstr "メールアドレス: %(email)s" msgid "Password: %(password)s" msgstr "パスワード: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5510,24 +5697,24 @@ msgstr "" msgid "Sorry, this user is not registered yet." msgstr "このユーザはまだ登録されていません。" -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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_base.html:46 #: 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 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "トップへ戻る" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "トップ" @@ -5623,8 +5810,8 @@ msgstr "" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "権限がありません。" @@ -5653,8 +5840,8 @@ msgid "Duplicated filename" msgstr "ファイル名の重複" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "ファイルが見つかりません" @@ -5713,11 +5900,11 @@ msgstr "「%s」の共有解除に失敗。" msgid "No revisions found" msgstr "" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "" @@ -5745,12 +5932,12 @@ msgstr "%(path)s を ルートディレクトリにリ msgid "\"%s\" does not exist." msgstr "" -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "内部エラー" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "ディレクトリー「%s」のダウンロードできません:サイズが大きすぎます。" @@ -5760,11 +5947,11 @@ msgstr "ディレクトリー「%s」のダウンロードできません:サ msgid "Unable to download \"%s\"" msgstr "「%s」をダウンロードできません。" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "「個人用Wiki」を有効にしました。" -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "「個人用Wiki」を無効にしました。" @@ -5781,7 +5968,7 @@ msgid "The group doesn't exist" msgstr "グループがありません。" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "ライブラリは暗号化されています。" @@ -5859,262 +6046,266 @@ msgstr "ファイルブロックリストの取得に失敗。" msgid "Wrong repo id" msgstr "repo id不正" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "アップロードリンクのトークンが不正。" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "アップロードID中に不正なrepo id" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "マージ中に競合が有りません。" -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "ライブラリ情報の編集に失敗しました。" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "サーバで設定の保存に失敗" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "設定を保存しました。" -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "" -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "ユーザ %s を見つけられません。" -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "" -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "組織ユーザ %sにライブラリを移転できません。" -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "" -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "パス名は、\"/\"で始まる必要があります。" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "パス名が不正です" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "操作が失敗しました" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTPError: failed to open file online" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URLError: failed to open file online" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "選択した文字コードは正しくありません。" -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "ファイルエンコーディングがわかりません。" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "ファイルサイズが%sを超えています。オンラインで開けません。" -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "ファイルを閲覧できません" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "ファイルフォーマットエラー" -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "ライブラリーは存在しません。" -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "ライブラリーは暗号化されています。" -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "ファイルが編集できません" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "ファイルが存在しません" -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "オンライン編集は、この種類のファイルには提供されていません。" -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "ファイルをダウンロードできません" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "ファイルにアクセスできません:共有の契約通信量を超えました。" -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "規定容量の設定に失敗:最大規定容量は %d MBです。" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "規定容量の設定に失敗:サーバ内部エラー" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "削除失敗:ユーザは組織の作成者です" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "%s の管理権限を剥奪しました。" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "管理権限の剥奪に失敗しました: ユーザが存在しない。" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "%sのあなたのアカウントを有効化しました。" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "パスワードは「%s」にリセットされました。" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "パスワードを %(passwd)sに変更しました。電子メールが %(user)sに送信されました。" -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "パスワードが %(passwd)sにリセットされましたが、 %(user)sへのメール送信が失敗しました。,メール設定を確認してください。" -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "%(user)sのパスワードを %(passwd)s にリセットしました。" -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6122,107 +6313,107 @@ msgid "" "configured." msgstr "" -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "パスワード再設定の失敗:ユーザが存在しない" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "あなたは「%s」に招待されています。" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "" -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "" -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "" -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "ユーザ「%s」を追加しました。" -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, 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:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "組織名を変更できませんでした。" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "移転に失敗。引数が不正です。" -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "移転失敗。ユーザ %s が見つかりません" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "組織ライブラリを移転できません。" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "ライブラリを組織ユーザ%sに移転できません。" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "移転が完了しました。" -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "システムライブラリーは削除できません。" -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "" -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "" -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "インポートしました" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "読み込むCSVファイルを指定してください。" -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "" diff --git a/locale/ja/LC_MESSAGES/djangojs.po b/locale/ja/LC_MESSAGES/djangojs.po index 8d160a4229..f2927686b4 100644 --- a/locale/ja/LC_MESSAGES/djangojs.po +++ b/locale/ja/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Japanese (http://www.transifex.com/haiwen/seahub/language/ja/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/ko/LC_MESSAGES/django.po b/locale/ko/LC_MESSAGES/django.po index a1ca5199f3..30580eed18 100644 --- a/locale/ko/LC_MESSAGES/django.po +++ b/locale/ko/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Korean (http://www.transifex.com/haiwen/seahub/language/ko/)\n" "MIME-Version: 1.0\n" @@ -20,14 +20,15 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "%s 사용자는 이미 그룹 구성원입니다." -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "%s 사용자는 조직에 없습니다." @@ -54,8 +55,8 @@ msgstr "잘못된 암호입니다" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "내부 서버 오류" @@ -65,34 +66,34 @@ msgstr "해독 라이브러리 오류" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "공유한 링크 보내기에 실패했습니다. 전자메일 서비스를 올바르게 설정하지 않았습니다. 관리자에게 알려주세요." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "파일" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "%s에서 파일을 공유했습니다" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "디렉터리" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "%s에서 디렉터리를 공유했습니다" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "%s에서 업로드 링크를 공유했습니다" @@ -101,14 +102,15 @@ msgstr "%s에서 업로드 링크를 공유했습니다" msgid "Password is too short." msgstr "암호가 너무 짧습니다." -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "암호가 너무 짧습니다" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "파일 협업 팀 조직" @@ -144,7 +146,7 @@ msgid "No activity now or the function is not supported." msgstr "활동이 없거나 기능을 지원하지 않습니다." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "라이브러리를 만듦" @@ -159,7 +161,8 @@ msgstr "%(library_name)s 라이브러리를 삭제함" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -167,8 +170,8 @@ msgstr "%(library_name)s 라이브러리를 삭제함" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -184,7 +187,7 @@ msgstr "네트워크를 확인하세요." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -210,13 +213,16 @@ msgstr "중요한 날짜" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -244,10 +250,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -307,7 +314,7 @@ msgid "New password confirmation" msgstr "새 암호 확인" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "두 개의 암호 입력창의 입력이 일치하지 않습니다" @@ -319,7 +326,7 @@ msgstr "이전 암호" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "입력하신 이전 암호가 틀립니다. 다시 입력하세요." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "암호(다시 입력)" @@ -328,15 +335,19 @@ msgstr "암호(다시 입력)" msgid "Enter a valid e-mail address." msgstr "올바른 전자메일 주소를 입력하세요." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "로그아웃했습니다" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "전자메일 보내기에 실패했습니다. 관리자에게 알려주세요." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "암호를 업데이트할 수 없습니다. LDAP 관리자에게 문의하세요." @@ -423,6 +434,7 @@ msgstr "현재 아바타:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -434,24 +446,24 @@ msgstr "현재 아바타:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -512,43 +524,48 @@ msgstr "아바타 업데이트에 성공했습니다." msgid "Successfully deleted the requested avatars." msgstr "요청한 아바타 삭제에 성공했습니다." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "전자메일 주소" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "사용자 이름" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "이 값의 길이는 40이어야 합니다" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "올바른 전자메일 주소를 입력하세요." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "이 전자메일 주소 사용자가 이미 있습니다" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "잘못된 사용자 ID 입니다." -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "이름" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "부서" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "전화" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "참고" @@ -617,7 +634,7 @@ msgid "Recovered deleted directory" msgstr "삭제한 디렉터리를 복원했습니다" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "라이브러리 이름 또는 설명이 바뀌었습니다" @@ -661,22 +678,22 @@ msgstr[0] "%(seconds)d초 전" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -689,21 +706,21 @@ msgstr "읽기/쓰기" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -774,15 +791,16 @@ msgstr "연락처" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -810,7 +828,7 @@ msgstr "연락처" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "이름" @@ -855,11 +873,11 @@ msgstr "작업" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -880,21 +898,21 @@ msgstr "편집" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -926,8 +944,9 @@ msgstr "연락처를 추가하면 라이브러리를 빠르게 공유하고 파 #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -937,8 +956,8 @@ msgstr "연락처를 추가하면 라이브러리를 빠르게 공유하고 파 #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "전자메일" @@ -1036,17 +1055,17 @@ msgstr "설명이 너무 깁니다(최대 100글자)" msgid "Name %s is not valid" msgstr "%s 이름이 잘못되었습니다" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "인자가 빠졌습니다" @@ -1108,7 +1127,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:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "그룹이 없습니다" @@ -1258,16 +1277,16 @@ msgstr "라이브러리를 클릭하고 선택해주세요." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1344,21 +1363,21 @@ msgstr "이름이 필요합니다." msgid "Description is required." msgstr "설명이 필요합니다." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "권한이 거부되었습니다" @@ -1711,11 +1730,14 @@ msgstr "나가기" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "사용자" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1723,9 +1745,11 @@ msgstr "정보" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1736,12 +1760,16 @@ msgid "Libraries" msgstr "라이브러리" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1801,12 +1829,12 @@ msgstr "소유 라이브러리" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1819,11 +1847,11 @@ msgid "Size" msgstr "크기" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1833,7 +1861,7 @@ msgid "Last Update" msgstr "최근 업데이트" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1861,10 +1889,10 @@ msgid "This user has not created any libraries" msgstr "이 사용자는 어떤 라이브러리도 만들지 않았습니다" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "역할" @@ -1873,8 +1901,8 @@ msgstr "역할" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "만든 일시" @@ -1889,7 +1917,7 @@ msgstr "이 사용자는 어떤 그룹도 만들거나 참여하지 않았습니 #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "상태" @@ -1909,7 +1937,7 @@ msgstr "만든 날짜 / 마지막 로그인" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "활성" @@ -1921,7 +1949,7 @@ msgstr "활성" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "비활성" @@ -1930,7 +1958,7 @@ msgstr "비활성" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "비어 있음" @@ -1948,33 +1976,32 @@ msgstr "사용자 삭제" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "소유자" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "관리자" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "구성원" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s 삭제에 성공했습니다" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "삭제 실패: 사용자가 없습니다" @@ -1998,6 +2025,7 @@ msgstr "메시지" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "시간" @@ -2044,16 +2072,22 @@ msgid "Send a message..." msgstr "메시지 보내기..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "이전" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2070,18 +2104,20 @@ msgstr "이 토론을 정말로 삭제하실래요?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "예" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "아니요" @@ -2123,57 +2159,66 @@ msgid "Virus detected on %s" msgstr "%s에 바이러스가 있습니다" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "%s에 새 공지가 있습니다" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "내부 오류" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "%(file_name)s 파일을 %(name)s에 업로드했습니다" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "%(file_name)s 파일을 삭제한 라이브러리로 업로드했습니다" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s님께서 %(repo_name)s 라이브러리를 공유해주셨습니다." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "%(user)s님께 새 메시지 를 받았습니다." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s에 새 토론 내용이 있습니다." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s 님이 %(group_name)s 그룹에 새 토론 내용을 올렸습니다." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s님이 %(group_name)s 그룹 참여를 요청했습니다, 확인 메시지: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2220,11 +2265,19 @@ msgstr "%(user)s님이 %(lib_name)s 라 #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "%(user)s님의 새 메시지가 있습니다." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2232,7 +2285,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "%(file_name)s 파일을 %(folder_name)s 폴더에 업로드했습니다." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2240,14 +2293,14 @@ msgid "" "message: %(msg)s" msgstr "%(user)s 사용자가 a href=\"%(url_base)s%(grp_url)s\">%(grp_name)s 그룹 참여를 요청했습니다, 확인 메시지는 다음과 같습니다: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "%(user)s 사용자가 %(grp_name)s 그룹에 귀하를 추가했습니다" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "다음 페이지에서 확인하세요:" @@ -2277,6 +2330,7 @@ msgid "Delete Notification" msgstr "알림 삭제" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2284,6 +2338,7 @@ msgstr "알림 삭제" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "안녕하세요," @@ -2352,14 +2407,17 @@ msgstr "프로파일 설정" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "설정" @@ -2593,40 +2651,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "전자메일 주소는 512글자를 넘을 수 없습니다" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "암호를 비워둘 수 없습니다" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "올바른 암호를 입력해주세요." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "링크 - 공유" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "다운로드 링크" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "업로드 링크" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 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/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "방문" @@ -2637,7 +2701,7 @@ msgstr "유효기간" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2653,7 +2717,7 @@ msgstr "보기" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2686,7 +2750,7 @@ msgid "Folders - Share" msgstr "폴더 - 공유" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "폴더" @@ -2697,15 +2761,15 @@ msgstr "다음과 공유" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "권한" @@ -2771,175 +2835,211 @@ msgid "" "groups you are in." msgstr "여러분의 홈페이지의 라이브러리에서 공유 버튼을 누르거나 여러분 그룹에서 새 라이브러리를 만들어 친구와 협업 구성원에게 라이브러리를 공유할 수 있습니다." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "모든 구성원에 대한 공유에 실패했습니다. 나중에 다시 해보세요." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "모든 구성원 대상 공유에 성공했습니다. 공유에서 확인해보세요." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "라이브러리 소유자만이 이 구성요소를 공유할 권한이 있습니다." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "라이브러리가 없습니다" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "잘못된 인자" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "인자가 잘못되었습니다." -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "공유 제거에 실패했습니다" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "그룹 ID가 잘못되었습니다" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "공유 해제 실패: 그룹이 존재하지 않습니다." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "공유 제거에 성공했습니다" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "모든 구성원" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "링크가 없습니다" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "내부 서버 오류이거나 입력한 전자메일 주소가 잘못되었을 수 있습니다" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "디렉터리를 선택해주세요." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "저장에 성공했습니다." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "공유 업로드 링크 보내기에 실패했습니다. 전자메일 서비스를 올바르게 설정하지 않았습니다. 관리자에게 알려주세요." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "공유 링크를 만들 권한이 없습니다" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "잘못된 인자" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "라이브러리가 없습니다." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "디렉터리가 없습니다." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "입력한 전자메일 주소를 확인하세요" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "죄송합니다만, 요청한 페이지가 없습니다." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "시스템 관리자 나가기" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "닫기" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: 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:71 -msgid "See All Notifications" -msgstr "모든 알림 보기" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" -msgstr "" +msgstr "프로파일 및 더 보기" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "로그아웃" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "시스템 관리자" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "더이상 이 버전의 IE를 지원하지 않습니다. 10 이상의 버전으로 업그레이드하세요." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "알림" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "환영합니다! Seafile입니다." -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile은 파일을 라이브러리에 정리해줍니다. 각각의 라이브러리는 따로 동기화 하고 공유됩니다. 개인 라이브러리를 만들었습니다. 더 많은 라이브러리는 나중에 만들 수 있습니다." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2947,7 +3047,7 @@ msgid "" msgstr "Seafile은 파일을 라이브러리에 정리해줍니다. 각각의 라이브러리는 따로 동기화하고 공유됩니다. 방문객이기 때문에 라이브러리를 만들 수 없습니다." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "가입" @@ -2977,28 +3077,31 @@ msgid "Please enter the password." msgstr "암호를 입력하세요." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: 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:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "접근 기록" @@ -3007,9 +3110,12 @@ msgstr "접근 기록" msgid "Current Path:" msgstr "현재 경로:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "사용자" @@ -3019,11 +3125,16 @@ msgstr "사용자" msgid "Type" msgstr "형식" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "장치 이름" @@ -3037,6 +3148,7 @@ msgstr "손님 사용자" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3062,10 +3174,6 @@ msgstr "초안을 저장했습니다." 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 "암호는 한 시간동안만 서버에서 유지합니다." @@ -3190,7 +3298,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "기본" @@ -3215,10 +3323,10 @@ msgid "Password is required." msgstr "암호가 필요합니다." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "이력" @@ -3314,85 +3422,90 @@ msgstr "Seafile" msgid "About Us" msgstr "정보" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "파일" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "내 소유" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "공유함" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "조직" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "모든 그룹" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "도구" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "모듈 활성화" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "별표" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "활동" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "개인 위키" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "장치" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "공유 관리" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "링크" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "폴더 업로드" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "자동 유효기간 추가" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "일" @@ -3410,18 +3523,12 @@ msgid "Shared Libs" msgstr "공유 라이브러리" #: 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/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "디렉터리 이름" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "새 폴더" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "새 파일" @@ -3439,8 +3546,7 @@ msgstr "단순 마크업 형식." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "상세" @@ -3504,7 +3610,123 @@ msgstr "바꾸기" msgid "Don't replace" msgstr "바꾸지 않음" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "조직" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "단체" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "트래픽" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "기록" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "바이러스 검사" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "시스템 정보" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "전문가판" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "만료일자:" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "커뮤니티판" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "전문가판으로 업그레이드" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "제한" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "플랫폼" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "최근 접근" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "링크 끊기" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "지우기" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "오류" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "새 라이브러리" @@ -3518,13 +3740,14 @@ msgid "Encrypt" msgstr "암호화" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(최소 %(repo_password_min_length)s문자)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "암호를 다시 입력하세요" @@ -3534,34 +3757,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "깨짐(관리자에게 이 라이브러리를 복구하라고 알려주십시오)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "공유" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "다른 동작" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "이름 바꾸기" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3584,58 +3807,59 @@ msgid "Folder Permission" msgstr "폴더 권한" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "이동" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "복사" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "업로드" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "파일 업로드" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "새 폴더" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "목록" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" -msgstr "" +msgstr "목록 보기" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "격자" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" -msgstr "" +msgstr "바둑판식 보기" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3643,175 +3867,177 @@ msgstr "" msgid "Trash" msgstr "휴지통" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "하위 라이브러리" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" -msgstr "" +msgstr "동작" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "다른 동작" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "클라이언트로 열기" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "별표" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "별표 해제" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "잠금" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "잠금 해제" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "잠그기" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "가져오기 실패" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "다운로드 링크" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "업로드 링크" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "사용자와 공유" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "그룹과 공유" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "암호 보호 추가" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(최소 %(share_link_password_min_length)s 문자)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "표시" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "임의 암호 만들기" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "만들기" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "링크:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "직접 다운로드 링크:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "보내기" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "보낼 대상:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "세미콜론 ';' 으로 구분한 전자메일 주소" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "메시지 (선택):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "보내는 중..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 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:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "업로드 링크:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "그룹" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "공유에서 나가기" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "위키" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3822,182 +4048,191 @@ msgstr "위키" msgid "Members" msgstr "구성원" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "토론" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "사용자 권한" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "그룹 권한" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "아이콘" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "별표 해제" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" -msgstr "" +msgstr "라이브러리 형식" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "공유자" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "공유할 라이브러리를 선택하세요" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "삭제한 라이브러리" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "수정 세부 내용" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "이 위키에서 파일 검색" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "이 라이브러리에서 파일 검색" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "파일 검색" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "고급" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "이 그룹에 공유하는 라이브러리가 없습니다" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "관리자" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "답글 작성" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "위키 추가" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "위키 제거" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "구성원 가져오기" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "구성원 관리" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "탈퇴" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "그룹에서 나가기" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "그룹 이름을 다음으로 바꾸기" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "보낼 그룹 대상" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "CSV 에서 그룹 구성원 가져오기" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "파일 형식: user@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "추가" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "관리자가 라이브러리 기록 설정을 비활성화했습니다" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "전체 이력 유지" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "이력 유지하지 않음" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "특정 기간동안의 이력 유지:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "일" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "만든 사람" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "폴더" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "폴더 선택" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "이전 암호" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "새 암호(최소 %(repo_password_min_length)s문자)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "새 암호" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "새 암호를 다시 입력하세요" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "링크 끊기" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "모든 알림 보기" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4014,6 +4249,11 @@ msgstr "파일을 모을 라이브러리를 만들 수 있습니다. 각각의 msgid "No library is shared to you" msgstr "다른 사람이 공유한 라이브러리가 없습니다" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "조직" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "라이브러리 추가" @@ -4060,10 +4300,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "그룹은 여러분과 친구가 메시지를 남기고 라이브러리를 통해 공동 작업을 하는 공간입니다. 여러분이 참여한 그룹은 아래에 있습니다." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "그룹 이름" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4079,15 +4315,15 @@ msgstr "기록 가능하게 공유한 라이브러리는 다른 그룹 구성원 #: seahub/templates/libraries.html:143 msgid "Discussions" -msgstr "" +msgstr "토론" #: seahub/templates/libraries.html:147 msgid "More..." -msgstr "" +msgstr "더 보기..." #: seahub/templates/libraries.html:149 msgid "No discussion in this group yet." -msgstr "" +msgstr "이 그룹에 토론 내용이 아직 없습니다." #: seahub/templates/libraries.html:156 msgid "Add a discussion..." @@ -4103,14 +4339,6 @@ msgid "" " page, and they will be listed here." msgstr "파일 보기 페이지에서 \"별표 표시\" 버튼을 눌러 중요한 파일에 별표 표시할 수 있으며, 해당 파일은 이곳에 나타납니다." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "플랫폼" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "최근 접근" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "라이브러리 갯수" @@ -4140,7 +4368,7 @@ msgstr "이 계정을 활성화하려면, %(expiration_days)s일 내로 다음 #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4160,33 +4388,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "알아보기 힘든가요? 새로 고치세요." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "잘못된 전자메일 주소 또는 암호입니다" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "%(remember_days)s일 동안 기억" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "커베로스" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "CAPTCHA 새로 고침에 실패했습니다. 나중에 다시 해보세요." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "전자메일 또는 사용자 이름을 비워둘 수 없습니다" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4227,10 +4455,6 @@ msgstr "계속하려면 암호를 새로 설정하십시오." msgid "Current Password" msgstr "현재 암호" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "새 암호" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4367,11 +4591,6 @@ msgstr "전자메일 주소는 비워둘 수 없습니다" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s 휴지통" -#: 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 "삭제 시간" @@ -4393,12 +4612,12 @@ msgid "1 month ago" msgstr "한 달 전" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "성공" @@ -4493,7 +4712,7 @@ msgstr "다음 페이지로 가서 파일을 업로드할 수 있습니다:" msgid "" "Your account is created successfully, please wait for administrator to " "activate your account." -msgstr "" +msgstr "계정을 잘 만들었습니다, 관리자가 예정을 활성화할 때까지 기다리십시오." #: seahub/templates/snippets/add_file_js.html:15 msgid "You don't have any library at present" @@ -4628,7 +4847,7 @@ msgid "Please enter password" msgstr "암호를 입력해주세요" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "삭제 성공." @@ -4769,6 +4988,15 @@ msgstr "개 별" msgid "Successfully unstarred." msgstr "별표 해제에 성공했습니다." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "새 디렉터리" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "디렉터리 이름" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "닫기" @@ -4794,88 +5022,62 @@ msgstr "파일 업로드에 실패했습니다" msgid "Failed to get upload url" msgstr "업로드 URL 가져오기에 실패했습니다" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "파일이 너무 큽니다" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "파일이 너무 작습니다" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "파일 형식을 허용하지 않습니다" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: 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/sysadmin/admin_repo_view.html:290 #: 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/sysadmin/admin_repo_view.html:291 #: 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/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "업로드함" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "취소함" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "시작" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "필요합니다." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "조직" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "단체" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "트래픽" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "기록" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "바이러스 검사" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "만든 사람" @@ -4927,6 +5129,13 @@ msgstr "라이브러리 삭제" msgid "Files / Size" msgstr "파일 / 크기" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "계속하려면 암호를 입력하세요" @@ -4957,10 +5166,6 @@ msgstr "그룹 정보" msgid "No library has shared to this group" msgstr "이 그룹에 공유한 라이브러리가 없습니다" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "관리자" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4972,30 +5177,6 @@ msgstr "액셀 내보내기" msgid "Delete Group" msgstr "그룹 삭제" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "시스템 정보" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "전문가판" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "만료일자:" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "커뮤니티판" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "전문가판으로 업그레이드" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "제한" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "모든 단체" @@ -5159,12 +5340,12 @@ msgid "Max User Number" msgstr "최대 사용자 수" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "입력 값은 숫자여야합니다" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "입력 숫자는 0보다 커야합니다" @@ -5304,7 +5485,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP(가져옴)" @@ -5317,7 +5498,7 @@ msgid "Admins" msgstr "관리자" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "최근 로그인" @@ -5343,7 +5524,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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "손님" @@ -5431,6 +5612,12 @@ msgstr "전자메일: %(email)s" msgid "Password: %(password)s" msgstr "암호: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5508,24 +5695,24 @@ msgstr "다음으로" msgid "Sorry, this user is not registered yet." msgstr "이 사용자는 등록하지 않았습니다." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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_base.html:46 #: 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 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "상위 메뉴로 돌아가기" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "위로" @@ -5621,8 +5808,8 @@ msgstr "잘못된 인자입니다." #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "권한이 거부되었습니다." @@ -5651,8 +5838,8 @@ msgid "Duplicated filename" msgstr "중복된 파일 이름" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "파일이 없습니다" @@ -5711,11 +5898,11 @@ msgstr "\"%s\" 공유 해제에 실패했습니다." msgid "No revisions found" msgstr "리비전이 없습니다" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "파일 잠금 확인 오류" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "파일이 잠겨있습니다" @@ -5743,12 +5930,12 @@ msgstr "%(path)s 경로의 루트 디렉터리로 되돌 msgid "\"%s\" does not exist." msgstr "\"%s\"이(가) 없습니다." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "내부 오류" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "\"%s\" 디렉터리를 다운로드할 수 없습니다: 크기가 너무 큽니다." @@ -5758,11 +5945,11 @@ msgstr "\"%s\" 디렉터리를 다운로드할 수 없습니다: 크기가 너 msgid "Unable to download \"%s\"" msgstr "\"%s\"을(를) 다운로드할 수 없습니다" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "\"개인 위키\" 활성화에 성공했습니다." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "\"개인 위키\" 비활성화에 성공했습니다." @@ -5779,7 +5966,7 @@ msgid "The group doesn't exist" msgstr "그룹이 없습니다." #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "라이브러리가 암호화되었습니다." @@ -5857,262 +6044,266 @@ msgstr "파일 차단 목록 가져오기에 실패했습니다." msgid "Wrong repo id" msgstr "잘못된 저장소 ID 입니다" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "실패" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "잘못된 업로드 링크 토큰입니다." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "업로드 링크에 잘못된 저장소 ID가 있습니다." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "합친 내용에 충돌이 없습니다." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "라이브러리 정보 편집에 실패했습니다." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "서버 설정 저장에 실패했습니다" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "설정을 저장했습니다." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "%s 사용자 이름이 잘못되었습니다." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "%s 사용자가 없습니다." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "%s 사용자는 현재 조직에 없습니다." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "라이브러리를 %s 조직 사용자에게 보낼 수 없습니다." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "암호 바꾸기에 실패했습니다. 소유자가 아닙니다." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "잘못된 폴더 권한입니다. \"rw\" 또는 \"r\"이어야 합니다" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "경로는 \"/\"로 시작해야 합니다" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "경로는 \"/\"로 끝나면 안됩니다" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "잘못된 경로" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "잘못된 사용자입니다. 등록해야합니다." -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "처리에 실패했습니다." -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "잘못된 폴더 권한" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "폴더 권한을 우선 추가하세요" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "입력한 전자메일과 선택한 연락처를 다시 확인하세요" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "잘못된 그룹입니다" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "그룹이 없습니다." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "파일이 너무 커서 실패했습니다" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTP오류: 파일을 온라인에서 열기에 실패했습니다" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URL오류: 온라인에서 파일 열기에 실패했습니다" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "선택한 인코딩이 적합하지 않습니다" -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "알 수 없는 파일 인코딩" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "파일 크기가 %s을(를) 넘어, 온라인에서 열 수 없습니다." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "라이브러리를 암호화했습니다. 온라인에서 파일을 열어볼 수 없습니다." -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "파일을 볼 수 없습니다" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "잘못된 파일 형식입니다." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "파일 경로가 잘못되어 파일을 다운로드할 수 없습니다" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "파일 경로가 잘못되어 파일을 다운로드할 수 없습니다" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "공유 연결을 사용중이어서 파일을 다운로드할 수 없습니다." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "라이브러리가 없습니다." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "라이브러리가 암호화되었습니다." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "파일을 편집할 수 없습니다" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "파일이 없습니다." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "이 형식의 파일에 대해 온라인에서 편집할 수 없습니다." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "파일을 다운로드 할 수 없습니다." -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "파일 접근 불가: 공유 링크 트래픽을 사용하고 있습니다." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "다운로드할 수 없습니다. 폴더가 없습니다." -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "라이브러리를 볼 수 있습니다" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "라이브러리를 볼 수 없으며, 잘못된 폴더 경로입니다" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "잘못된 사용자 이름" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "엑셀 내보내기에 실패했습니다" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "제한 용량 설정 실패: 최대 제한 용량은 %d MB 입니다" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "제한 용량 설정에 실패했습니다: 내부 서버 오류" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "삭제 실패: 사용자는 조직 설립자입니다" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "%s용 시험판을 완전히 제거했습니다" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "%s 사용자의 관리자 권한 취소에 성공했습니다" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "관리자 해임 실패: 사용자가 없습니다" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "%s의 계정을 활성화했습니다" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "%s에 암호를 재설정했습니다" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "암호를 %(passwd)s(으)로 바꾸기에 성공했으며 %(user)s님께 전자메일을 보냈습니다." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "%(passwd)s(으)로 암호 바꾸기에 성공했지만, %(user)s님께 전자메일을 보내지 못했습니다. 전자메일 설정을 확인하세요." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "%(user)s님의 암호를 %(passwd)s(으)로 바꾸기에 성공했습니다." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6120,107 +6311,107 @@ msgid "" "configured." msgstr "%(user)s님의 암호를 %(passwd)s(으)로 바꾸기에 성공했습니다만, 전자 메일 서비스를 제대로 설정하지 않아 전자메일 알림을 보낼 수 없었습니다." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "암호 재설정 실패: 사용자가 없습니다" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "%s 참여를 초대받았습니다" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "%s 사용자 추가에 실패했습니다." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "%s 사용자 추가를 성공했습니다. 전자메일 알림을 보냈습니다." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "%s 사용자 추가를 성공했습니다. 전자메일 알림을 보내는 동안 오류가 발생했습니다. 전자메일 설정을 확인해주세요." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "%s 사용자 추가를 성공했습니다." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "%s 사용자 추가를 성공했습니다만, 전자메일 서비스를 올바르게 설정하지 않아 전자메일 알림을 보낼 수 없었습니다." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "조직 이름 바꾸기에 실패했습니다" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "성공적으로 삭제했습니다" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "보내기에 실패했습니다. 잘못된 인자입니다." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "%s 사용자가 없어 보내기에 실패했습니다" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "조직 라이브러리를 보낼 수 없습니다" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "라이브러리를 %s 조직 사용자에게 보낼 수 없습니다" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "보내기를 성공했습니다." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "시스템 라이브러리는 삭제할 수 없습니다." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "삭제에 실패했습니다. 나중에 다시 해보세ㅇ." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s 사용자의 관리자 설정에 성공했습니다." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "%s님 관리자 설정 실패: 사용자가 없습니다." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "가져오기를 성공했습니다." -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "먼저 csv 파일을 선택하세요." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "잘못된 설정" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "잘못된 값" diff --git a/locale/ko/LC_MESSAGES/djangojs.po b/locale/ko/LC_MESSAGES/djangojs.po index 595df12f4c..e8514f987a 100644 --- a/locale/ko/LC_MESSAGES/djangojs.po +++ b/locale/ko/LC_MESSAGES/djangojs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Korean (http://www.transifex.com/haiwen/seahub/language/ko/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "지금" @@ -31,33 +31,58 @@ msgstr "지금" msgid "Name is required" msgstr "이름이 필요합니다" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "암호를 입력하세요" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "암호를 다시 입력하세요" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "암호가 너무 짧습니다" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "암호가 일치하지 않습니다" #: static/scripts/app/models/repo.js:53 msgid "Encrypted library" -msgstr "" +msgstr "암호화 라이브러리" #: static/scripts/app/models/repo.js:55 msgid "Read-Write library" -msgstr "" +msgstr "읽기-쓰기 라이브러리" #: static/scripts/app/models/repo.js:57 msgid "Read-Only library" -msgstr "" +msgstr "읽기 전용 라이브러리" + +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "네트워크를 확인하세요." #: static/scripts/app/views/details.js:47 msgid "New files" @@ -88,35 +113,40 @@ msgstr "삭제한 디렉터리" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "실패했습니다. 네트워크를 확인하세요." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "%(name)s 링크 끊기에 성공했습니다." @@ -146,12 +176,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "취소했습니다." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "잘못된 대상 경로" @@ -204,8 +234,8 @@ msgid "{placeholder} Folder Permission" msgstr "{placeholder} 폴더 사용 권한" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "사용자를 검색하거나 전자메일 주소를 입력한 후 엔터 키를 누르십시오" @@ -221,39 +251,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "디렉터리를 눌러 선택하십시오." @@ -262,7 +273,7 @@ msgstr "디렉터리를 눌러 선택하십시오." msgid "{placeholder} History Setting" msgstr "{placeholder} 기록 설정" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "라이브러리 기록 설정에 성공했습니다." @@ -270,150 +281,150 @@ msgstr "라이브러리 기록 설정에 성공했습니다." msgid "{placeholder} Share Links" msgstr "{placeholder} 공유 링크" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "닫기(Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "불러오는 중..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "이전(왼쪽 화살표 키)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "다음(오른쪽 화살표 키)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%total% 중 %curr%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "이미지를 불러올 수 없습니다." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "새 탭 열기" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "암호가 필요합니다." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "필요합니다." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "확장자만 있습니다. 이름을 입력하세요." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "처리 중..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "%(name)s을(를) 성공적으로 삭제했습니다." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "%(name)s 및 항목 1개를 성공적으로 삭제했습니다." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "%(name)s 및 항목 %(amount)s개를 성공적으로 삭제했습니다." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "%(name)s 삭제에 실패했습니다." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "%(name)s 및 항목 1개 삭제에 실패했습니다." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "%(name)s 및 항목 %(amount)s개 삭제에 실패했습니다." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "항목 삭제" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "정말로 선택한 항목을 삭제할까요?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "선택한 항목을 옮길 위치:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "선택한 항목을 복사할 위치:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "%(name)s을(를) 성공적으로 이동했습니다." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "%(name)s 및 항목 1개를 성공적으로 이동했습니다." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "%(name)s 및 항목 %(amount)s개를 성공적으로 이동했습니다." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "%(name)s을(를) 성공적으로 복사했습니다." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "%(name)s 및 항목 1개를 성공적으로 복사했습니다." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "%(name)s 및 항목 %(amount)s개를 성공적으로 복사했습니다." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "내부 오류입니다. %(name)s 및 항목 %(amount)s개 이동에 실패했습니다." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "내부 오류입니다. %(name)s 이동에 실패했습니다." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "내부 오류입니다. %(name)s 및 항목 %(amount)s개 복사에 실패했습니다." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "내부 오류입니다. %(name)s 복사에 실패했습니다." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "파일 %(total)s개 중 %(index)s개 이동 중" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "파일 %(total)s개 중 %(index)s개 복사 중" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "%(name)s 이동에 실패했습니다." -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "%(name)s 복사에 실패했습니다." @@ -453,10 +464,10 @@ msgstr "업로드 결과가 빈 파일입니다" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -500,19 +511,19 @@ msgstr "파일 업로드를 취소했습니다" msgid "File Upload failed" msgstr "파일 업로드에 실패했습니다" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "업로드 URL 가져오기에 실패했습니다" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "업로드 URL 가져오기에 실패했습니다" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "{filename} 파일을 바꿀까요?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "파일이 잠겨있습니다" @@ -521,7 +532,7 @@ msgid "Set {placeholder}'s permission" msgstr "{placeholder} 권한 설정" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "그룹 선택" @@ -542,32 +553,38 @@ msgstr "{placeholder} 구성원" msgid "Successfully unshared {placeholder}" msgstr "{placeholder}을(를) 성공적으로 공유 해제했습니다" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "더 이상 선택할 수 없습니다" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "CSV 파일을 선택하십시오" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "가져오기에 성공했습니다." -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "그룹 삭제" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "정말 그룹을 삭제하시겠습니까?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "그룹 나가기" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "정말로 이 그룹에서 나가시겠습니까?" @@ -579,11 +596,11 @@ msgstr "{lib_name} 라이브러리를 정말 삭제할까요?" msgid "Delete succeeded." msgstr "상공적으로 삭제했습니다." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "다음 위치로 {library_name} 라이브러리 전송" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "라이브러리 전송에 성공했습니다." @@ -591,35 +608,36 @@ msgstr "라이브러리 전송에 성공했습니다." msgid "Share {placeholder}" msgstr "{placeholder} 공유" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "유효기간 경과함" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "숨김" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "표시" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "일자를 입력하세요." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "유효 기간을 입력하세요" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "최소한 하나의 전자메일 주소를 입력하세요." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "{placeholder}에게 성공적으로 보냈습니다" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "{placeholder}에게 보내기에 실패했습니다" @@ -631,22 +649,26 @@ msgstr "성공" msgid "Successfully unstared {placeholder}" msgstr "{placeholder}을(를) 성공적으로 별표 해제했습니다." -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "사용자를 검색하거나 전자메일 주소를 입력한 후 엔터 키를 누르십시오" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "하나 이상의 문자를 입력하세요" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "일치하는 결과가 없습니다" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "검색 중..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "불러오기에 실패했습니다" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/lv/LC_MESSAGES/django.po b/locale/lv/LC_MESSAGES/django.po index ced5765439..cf5e966e97 100644 --- a/locale/lv/LC_MESSAGES/django.po +++ b/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Latvian (http://www.transifex.com/haiwen/seahub/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,14 +18,15 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -52,8 +53,8 @@ msgstr "Kļūdaina parole" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Iekšējā servera kļūda" @@ -63,34 +64,34 @@ msgstr "Atkodēšanas kļūda" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Koplietošanas saites sūtīšana neizdevās. E-pasta pakalpojumi nav konfigurēti pareizi. Lūdzu, sazinieties ar administratoru." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "datne" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "mape" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "" @@ -99,14 +100,15 @@ msgstr "" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Parole par īsu" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Datņu koplietošana" @@ -142,7 +144,7 @@ msgid "No activity now or the function is not supported." msgstr "Darbību vai funkcija netiek atbalstīta." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Bibliotēka izveidota" @@ -157,7 +159,8 @@ msgstr "Dzēsta bibliotēka %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -165,8 +168,8 @@ msgstr "Dzēsta bibliotēka %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -182,7 +185,7 @@ msgstr "Lūdzu, pārbaudiet tīkla pieslēgumu" #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -208,13 +211,16 @@ msgstr "Svarīgi datumi" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -242,10 +248,11 @@ msgid "Email or Username" msgstr "E-pasts vai lietotājvārds" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -305,7 +312,7 @@ msgid "New password confirmation" msgstr "Apstiprināt paroli" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Paroļu lauki nesakrīt" @@ -317,7 +324,7 @@ msgstr "Vecā parole" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Vecā parole ievadīta kļudaini. Lūdzu atkārtojiet." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Parole (vēlreiz)" @@ -326,15 +333,19 @@ msgstr "Parole (vēlreiz)" msgid "Enter a valid e-mail address." msgstr "Ierakstiet derīgu e-pasta adresi" -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Atslēdzies" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Nezidevās nosūtīt e-pastu, sazinieties ar administratoru." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Nevar atjaunināt paroli, lūdzu sazinieties ar LDAP administratoru." @@ -421,6 +432,7 @@ msgstr "Pašreizējais avatars:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -432,24 +444,24 @@ msgstr "Pašreizējais avatars:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -510,43 +522,48 @@ msgstr "Veiksmīgi atjaunināts avatars." msgid "Successfully deleted the requested avatars." msgstr "Veiksmīgi dzēsts pieprasītais avatars." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "E-pasta adrese" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Lietotājvārds" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Vērtībai ir jābūt 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Ievadiet derīgu e-pasta adresi." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Lietotājs ar šādu e-pasta adresi jau pastāv" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Nederīgs lietotāja ID" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "vārds" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "nodaļas" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "telefons" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "Piezīme" @@ -615,7 +632,7 @@ msgid "Recovered deleted directory" msgstr "Dzēsta mape atjaunota" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Mainīts bibliotēkas nosaukums vai apraksts" @@ -667,22 +684,22 @@ msgstr[2] "%(seconds)d sekundēm" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -695,21 +712,21 @@ msgstr "Lasīt-Rakstīt" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -782,15 +799,16 @@ msgstr "E-pasts" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -818,7 +836,7 @@ msgstr "E-pasts" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nosaukums" @@ -863,11 +881,11 @@ msgstr "Darbības" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -888,21 +906,21 @@ msgstr "Rediģēt" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -934,8 +952,9 @@ msgstr "Pievienojiet draugu kontaktiem, lai tam ātri sniegtu pieeju bibliotēk #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -945,8 +964,8 @@ msgstr "Pievienojiet draugu kontaktiem, lai tam ātri sniegtu pieeju bibliotēk #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "E-pasts" @@ -1044,17 +1063,17 @@ msgstr "Apraksts pārāk garš (maksimums 255 simboli)" msgid "Name %s is not valid" msgstr "Nosaukums %s nav derīgs" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Iztrūkst arguments" @@ -1116,7 +1135,7 @@ msgid "Permission error: only group staff can add member" msgstr "Piekļūves kļūda: tikai grupas locekļi var pievienot dalībnieku" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Grupa nepastāv" @@ -1266,16 +1285,16 @@ msgstr "Lūdzu, noklikšķiniet uz un izvēlieties bibliotēku." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1352,21 +1371,21 @@ msgstr "Nepieciešams nosaukums." msgid "Description is required." msgstr "Nepieciešams apraksts." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Pieeja liegta" @@ -1719,11 +1738,14 @@ msgstr "Iziet" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Lietotāji" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1731,9 +1753,11 @@ msgstr " informācija" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1744,12 +1768,16 @@ msgid "Libraries" msgstr "Bibliotēkas" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Aktīvie lietotāji" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1809,12 +1837,12 @@ msgstr "Īpašumā" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1827,11 +1855,11 @@ msgid "Size" msgstr "Izmērs " #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1841,7 +1869,7 @@ msgid "Last Update" msgstr "Atjaunots" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1869,10 +1897,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Loma" @@ -1881,8 +1909,8 @@ msgstr "Loma" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Izveidots" @@ -1897,7 +1925,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Statuss" @@ -1917,7 +1945,7 @@ msgstr "Izveidots/pēdējā pieteikšanās" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Aktīvs" @@ -1929,7 +1957,7 @@ msgstr "Aktīvs" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Neaktīvs" @@ -1938,7 +1966,7 @@ msgstr "Neaktīvs" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Tukšs" @@ -1956,33 +1984,32 @@ msgstr "Dzēst lietotāju" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Īpašnieks" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Administrators" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Dalībnieks" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "Veiksmīgi dzēsts %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Neizdevās dzēst: lietotājs neeksistē" @@ -2006,6 +2033,7 @@ msgstr "Ziņa" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Laiks" @@ -2052,16 +2080,22 @@ msgid "Send a message..." msgstr "Sūtīt ziņu..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Iepriekšējais" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2078,18 +2112,20 @@ msgstr "Tiešām vēlaties dzēst šo sarunu?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Jā" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Nē" @@ -2131,57 +2167,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Jauns paziņojums no %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Iekšējā kļūda" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Datne ar nosaukumu %(file_name)s lejupielādēta mapē %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Datne ar nosaukumu %(file_name)s lejupielādēta mapē Dzēstas bibliotēkas" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "" -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Esat saņēmis jaunu vēstuli no %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s ir jauna saruna." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s nosūtīja jaunu sarunu %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(group_staff)s has added you to group " @@ -2230,11 +2275,19 @@ msgstr "" #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Esat saņēmis jaunu vēstuli no %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2242,7 +2295,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2250,14 +2303,14 @@ msgid "" "message: %(msg)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "" @@ -2287,6 +2340,7 @@ msgid "Delete Notification" msgstr "Dzēst paziņojumu" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2294,6 +2348,7 @@ msgstr "Dzēst paziņojumu" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Labdien, " @@ -2362,14 +2417,17 @@ msgstr "Profila iestatījumi" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Iestatījumi" @@ -2603,40 +2661,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "E-pasts nav garāks par 512 simboliem" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "Parole nevar būt tukša" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Lūdzu, ievadiet pareizo paroli." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Saites - Koplietot" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Lejupielādēt saites" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Augšupielādēt saites" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Bibliotēka" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Apmeklējumi" @@ -2647,7 +2711,7 @@ msgstr "Izbeigšanās" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2663,7 +2727,7 @@ msgstr "Skatīt" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2696,7 +2760,7 @@ msgid "Folders - Share" msgstr "Mapes - Koplietot" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Mapes" @@ -2707,15 +2771,15 @@ msgstr "Dalīts ar" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Tiesības" @@ -2781,175 +2845,211 @@ msgid "" "groups you are in." msgstr "Jūs varat koplietot bibliotēkas ar draugiem vai kolēģiem uzklikšķinot uz \"Dalīties\" ikonas kādāi no Jūsu bibliotēkām." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Neizdevās izveidot pieejas visiem dalībniekiem, mēģiniet vēlāk." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Pieejas dalībniem izveidotas veiksmīgi, apskatiet Koplietošana." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "" -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "Bibliotēka nepastāv" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Nederīgs argumnents" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Arguments nav derīgs" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Neizdevās noņemt koplietojumu" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "grupas ID nav derīgs" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Kļūda noņemot koplietojumu: grupa nepastāv." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Veiksmīgi noņemts koplietojums" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "visi dalībnieki" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Saite nepastāv" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Lūdzu, izvēlieties mapi." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Veiksmīgi saglabāts." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "" -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Nederīgi argumnenti" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Bibliotēka nepastāv." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "Mape nepastāv." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Atvainojiet, bet pieprasīto lapu nevarēja atrast." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Iziet no administratora loga" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Aizvērt" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Paziņojums" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Skatīt visus paziņojumus" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Iziet" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Administratora logs" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Paziņojums" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Laipni lūdzam Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2957,7 +3057,7 @@ msgid "" msgstr "" #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Reģistrēties" @@ -2987,28 +3087,31 @@ msgid "Please enter the password." msgstr "Lūdzu, ievadiet paroli." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Lejuplādēt" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3017,9 +3120,12 @@ msgstr "" msgid "Current Path:" msgstr "Pašreizējais ceļš:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Lietotājs" @@ -3029,11 +3135,16 @@ msgstr "Lietotājs" msgid "Type" msgstr "Tips" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP adrese" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Ierīces nosaukums" @@ -3047,6 +3158,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3072,10 +3184,6 @@ msgstr "Uzmetums saglabāts." msgid "is encrypted" msgstr "ir šifrēta" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Parole: " - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "Parole tiks glabāta uz servera tikai 1 stundu." @@ -3200,7 +3308,7 @@ msgstr "Kolona" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Noklusēts" @@ -3225,10 +3333,10 @@ msgid "Password is required." msgstr "Parole ir nepieciešama." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Vēsture" @@ -3324,85 +3432,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Par mums" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Datnes" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Manas" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Dalītas" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "Organizācija" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Visas grupas" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Aktivizēt moduļus" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Zvaigžņotas" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Aktivitātes" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Privāts Wiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Ierīces" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Koplietošanā" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Saites" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Augšuplādēt mapi" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Pievienot automātisko izbeigšanos" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Dienas" @@ -3420,18 +3533,12 @@ msgid "Shared Libs" msgstr "Koplietots" #: 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" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" msgstr "Jauna mape" -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Mapes nosaukums" - #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Jauna datne" @@ -3449,8 +3556,7 @@ msgstr "vienkāršs iezīmēšanas formāts." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Detaļas" @@ -3514,7 +3620,123 @@ msgstr "Aizstāt" msgid "Don't replace" msgstr "Neaizstāt" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organizācijas" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Datplūsma" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Žurnāls" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Vīrusu skenēšana" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Sistēmas info" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Profesionālais izdevums" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "termiņš beidzas" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Community Edition" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "jaunināšana uz profesionālo izdevumu" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Ierobežojumi" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Platforma" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Pēdējā piekļuve" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Atsaistīt" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Tīrīt" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Kļūda" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Jauna bibliotēka" @@ -3528,13 +3750,14 @@ msgid "Encrypt" msgstr "Šifrēt" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(vismaz %(repo_password_min_length)s rakstāmzīmes)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Atkārtot paroli" @@ -3544,34 +3767,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Dalīties" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Vairāk darbības" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Pārsaukt" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3594,58 +3817,59 @@ msgid "Folder Permission" msgstr "Mapes tiesības" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Pārvietot" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Kopēt" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Augšuplādēt" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Augšuplādēt datnes" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Jauna mape" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Saraksts" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Režģis" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3653,175 +3877,177 @@ msgstr "" msgid "Trash" msgstr "Miskaste" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Apakšbibliotēkas" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Vairāk darbības" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "zvaigžņotas" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "bez zvaigzīnes" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "bloķēts" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Atbloķēt" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Bloķēt" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Atnest neizdevās" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Lejupielādēt saiti" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Augšupielādēt saiti" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Pievienot paroles aizsardzību" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Rādīt" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Ģenerēt nejaušu paroli" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Izveidot" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Saite: " -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Sūtīt" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Sūtīt uz:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "E-pasti, atdalīti ar ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Ziņa (nav obligāti)" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Sūta..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 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:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Augšupielādēt saiti: " -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Grupa" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Atļauja koplietojumam" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3832,182 +4058,191 @@ msgstr "Wiki" msgid "Members" msgstr "Dalībnieki" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Sarunas" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Lietotāja tiesības" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Grupas tiesības" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "ikona" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Bez zvaigznītes" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Dalās" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Dzēstās bibliotēkas" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Detalizēta informācija par izmaiņām" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Mekklēt datnes wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Meklēt datnes bibliotēkā" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Meklēt datnes" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "paplašināti" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "Administrators" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Atbildēt" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Importēt dalībniekus" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Aizmirst" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Atstāt grupu" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Pārdēvēt grupu uz" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Pārsūtīt grupu uz" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Datnes formāts: user@mail.lv" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "Pievienot" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Glabāt pilnu vēsturi" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Negrabāt vēsturi" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Glabāt vēsturi par periodu:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "dienas" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Izveidoja" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Mape" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Atlasīt mapes" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Vecā parole" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Jauna parole (vismaz %(repo_password_min_length)s rakstāmzīmes)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Jauna parole" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Jaunā parole atkārtoti" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Atsaistīt" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Skatīt visus paziņojumus" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4024,6 +4259,11 @@ msgstr "Lai organizētu savas datnes, veidojiet datņu bibliotēkas, pa vienai k msgid "No library is shared to you" msgstr "" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organizācija" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Pievienot bibliotēku" @@ -4070,10 +4310,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Grupa ir vieta saziņai ar jums un jūsu draugiem. Tajā jūs varat atstāt ziņas un dalīties ar bibliotēkām. Šeit ir uzskaitītas grupas, kurās jūs esat biedrs." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Grupas nosaukums" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4113,14 +4349,6 @@ msgid "" " page, and they will be listed here." msgstr "" -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Platforma" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Pēdējā piekļuve" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Bibliotēkas" @@ -4150,7 +4378,7 @@ msgstr "" #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4170,33 +4398,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Neskaidrs? Atjauniniet." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Nepareizs e-pasts vai parole" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Atcerēties mani %(remember_days)s dienas" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Neizdevās atsvaidzināt CAPTCHA. Lūdzu, mēģiniet vēlreiz vēlāk." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4237,10 +4465,6 @@ msgstr "" msgid "Current Password" msgstr "Patreizējā parole" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Jauna parole" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4377,11 +4601,6 @@ msgstr "E-pasts nevar būt tukšs" 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 "Tīrīt" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Dzēst laiku" @@ -4403,12 +4622,12 @@ msgid "1 month ago" msgstr "Pirms 1 mēneša" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Veiksme" @@ -4638,7 +4857,7 @@ msgid "Please enter password" msgstr "Lūdzu, ievadiet paroli." #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Veiksmīgi dzēsts." @@ -4779,6 +4998,15 @@ msgstr "Zvaigznīte" msgid "Successfully unstarred." msgstr "Veiksmīgi noņemta zvaigzne." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Jauna mape" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Mapes nosaukums" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "aizvērt" @@ -4804,88 +5032,62 @@ msgstr "Kļūda augšupielādējot datni" msgid "Failed to get upload url" msgstr "Neizdevās iegūt augšupielādes saiti" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Datnes izmērs par lielu" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Datnes izmērs par mazu" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Datnes tips nav atļauts" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Pārsniegts maksimālais datņu skaits" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Augšupielādētie baiti pārsniedz datnes lielumu" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Tukšu datņu augšupielādes rezultāts" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Kļūda" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "augšuplādē" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "atcelt" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Sākt" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Nepieciešams" -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organizācijas" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Datplūsma" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Žurnāls" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Vīrusu skenēšana" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Autors" @@ -4937,6 +5139,13 @@ msgstr "Dzēst bibliotēku" msgid "Files / Size" msgstr "Datnes/Izmērs" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Lai turpinātu, apstipriniet paroli" @@ -4967,10 +5176,6 @@ msgstr "Grupas info" msgid "No library has shared to this group" msgstr "" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "Administrators" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4982,30 +5187,6 @@ msgstr "Eksportēt Excel" msgid "Delete Group" msgstr "Dzēst grupu" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Sistēmas info" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Profesionālais izdevums" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "termiņš beidzas" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Community Edition" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "jaunināšana uz profesionālo izdevumu" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Ierobežojumi" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5169,12 +5350,12 @@ msgid "Max User Number" msgstr "Maksimālais lietotāju skaits" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Jāievada skaitlis" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "Ievades numuram jābūt lielākam par 0" @@ -5314,7 +5495,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP(importēts)" @@ -5327,7 +5508,7 @@ msgid "Admins" msgstr "Administrators" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Pēdējā pieteikšanās" @@ -5353,7 +5534,7 @@ msgstr "Varat pievienot lietotāju kā viesi, kuram netiks atļauts izveidot bib #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Viesis" @@ -5441,6 +5622,12 @@ msgstr "E-pasts: %(email)s" msgid "Password: %(password)s" msgstr "Parole: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5518,24 +5705,24 @@ msgstr "uz" msgid "Sorry, this user is not registered yet." msgstr "Atvainojiet, šis lietotājs vēl nav reģistrēts." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Pašreizējais ceļš:" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "atjaunināt šo datni" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Atpakaļ uz augšu" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "augšā" @@ -5631,8 +5818,8 @@ msgstr "" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Pieeja liegta." @@ -5661,8 +5848,8 @@ msgid "Duplicated filename" msgstr "Dubultā datnes nosaukums" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Šāda datne nepastāv" @@ -5721,11 +5908,11 @@ msgstr "Neizdevās atcelt koplietošanu \"%s\"." msgid "No revisions found" msgstr "" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "" @@ -5753,12 +5940,12 @@ msgstr "Veiksmīgi nomainīts %(path)s uz saknes mapi." msgid "\"%s\" does not exist." msgstr "\"%s\" nepastāv." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Iekšējā kļūda" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Nevar ielādēt katalogu \"%s\": izmērs ir pārāk liels." @@ -5768,11 +5955,11 @@ msgstr "Nevar ielādēt katalogu \"%s\": izmērs ir pārāk liels." msgid "Unable to download \"%s\"" msgstr "Nevar lejupielādēt \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "Veiksmīgi aktivizēts \"Privāts Wiki\"." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "Veiksmīgi deaktivizēts \"Privāts Wiki\"." @@ -5789,7 +5976,7 @@ msgid "The group doesn't exist" msgstr "Grupa nepastāv" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Bibliotēka ir šifrēta." @@ -5867,262 +6054,266 @@ msgstr "Neizdevās iegūt datņu bloķēšanas sarakstu" msgid "Wrong repo id" msgstr "Nepareizs repozitorija ID" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Neizdevās" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Slikta augšupielādes saites pilnvara." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Slikts repozitorija ID augšupielādes saitē." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Sapludināts bez konfliktiem" -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Neizdevās rediģēt bibliotēkas informāciju." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Neizdevās saglabāt iestatījumus serverī" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Iestatījumi saglabāti" -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Lietotājvārds %s nav derīgs." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Lietotājs %s nav atrasts." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "Lietotājs %s nav šajā organizācijā." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "Nevar pārsūtīt bibliotēku organizācijas lietotājam %s." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Kļūda mainot paroli jūs neesat īpašnieks" -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Nederīgas mapes tiesības, jābūt \"rw\" vai \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "Ceļam jāsākas ar \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "Ceļš nedrīkst beigties ar \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Nederīgs ceļš" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Nederīgs lietotājs ir jāreģistrē" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Darbība neizdevās" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Nepareizas mapes tiesības" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Lūdzu, pievienojiet mapes tiesības" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Nederīga grupa" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "Grupa nepastāv." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTPError: neizdevās atvērt datni tiešsaistē" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URLError: neizdevās atvērt datni tiešsaistē" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "Atlasītais kodējums nav pareizs." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Nezināms datnes kodējums" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "Datnes lielums pārsniedz %s, nevar atvērt tiešsaistes režīmā.." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Nevar apskatīt datni" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Nederīgs datnes formāts" -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "Nevar lejupielādēt datni, nederīgs datnes ceļš" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "Nevar lejupielādēt datni, nepareizs datnes ceļš" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "Bibliotēka nepastāv." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "Bibliotēka ir šifrēta." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Nevar rediģēt datni" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Datne nepastāv." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Rediģēšana tiešsaistē netiek piedāvāta šī tipa datnēm." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Nevar lejupielādēt datni" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "" -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Nederīgs lietotājvārds" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Neizdevās iestatīt kvotas: iekšējā servera kļūda" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Neizdevās dzēst: lietotājs ir organizācijas veidotājs" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Veiksmīgi noņemts trial: %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Veiksmīgi anulēt administratora atļaujas %s" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Neizdevās atsaukt administratoru: lietotājs neeksistē" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Jūsu konts %s ir aktivizēts" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "Parole ir atiestatīta uz %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Veiksmīgi atiestatīta parole %(passwd)s, e-pasta ziņa ir nosūtīta %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Veiksmīgi atiestatīta parole %(passwd)s, tomēr neizdevās nosūtīt e-pastu %(user)s, pārbaudiet savu e-pasta konfigurāciju." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Veiksmīgi atiestatīta parole %(passwd)s lietotājam %(user)s." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6130,107 +6321,107 @@ msgid "" "configured." msgstr "Veiksmīgi atiestatīta parole %(passwd)s lietotājam %(user)s. Taču e-pasta ziņojumu nevar nosūtīt, jo e-pasta pakalpojums nav pareizi konfigurēts." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Neizdevās atiestatīt paroli: lietotājs neeksistē" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Jums ir uzaicinājums pievienoties %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Neizdevās pievienot lietotāju %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "Veiksmīgi pievienots lietotājs %s. E-pasta paziņojums ir nosūtīts." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "Veiksmīgi pievienots lietotājs %s. Gadījās kļūda nosūtot e-pasta paziņojumu, lūdzu, pārbaudiet e-pasta konfigurāciju." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "Veiksmīgi pievienots lietotājs %s." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "Veiksmīgi pievienots lietotājs %s. Taču e-pasta ziņojumu nevar nosūtīt, jo e-pasta pakalpojums nav pareizi konfigurēts." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Neizdevās pārsaukt organizāciju" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Veikmīgi dzēsts." -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Neizdevās pārsūtīt, nederīgi argumenti." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Neizdevās pārsūtīt, lietotājs %s nav atrasts" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "Nevar pārsūtīt organizācijas bibliotēkas" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "Nevar pārsūtīt bibliotēku organizācijas lietotājam %s" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Veiksmīgi pārsūtīts." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "Sistēmas bibliotēku nevar dzēst." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Nevar izdzēst, lūdzu, mēģiniet vēlāk." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "Veiksmīgi iestatīts %s, kā administrators." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Neizdevās iestatīt %s, kā administratoru: lietotājs neeksistē." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Imports veiksmīgs" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Lūdzu, atlasiet .csv datni, vispirms." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Nepareizi iestatījumi" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Nederīga vērtība" diff --git a/locale/lv/LC_MESSAGES/djangojs.po b/locale/lv/LC_MESSAGES/djangojs.po index ce665c9901..1f6d984a8f 100644 --- a/locale/lv/LC_MESSAGES/djangojs.po +++ b/locale/lv/LC_MESSAGES/djangojs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Latvian (http://www.transifex.com/haiwen/seahub/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Tikko" @@ -31,19 +31,19 @@ msgstr "Tikko" msgid "Name is required" msgstr "Nepieciešams nosaukums" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Lūdzu, ievadiet paroli." -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Lūdzu ievadīt paroli vēlreiz" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Parole par īsu" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Paroles nesakrīt" @@ -59,6 +59,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Lūdzu pārbaudiet tīkla pieslēgumu" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Jauna datne" @@ -88,35 +113,40 @@ msgstr "Dzēstās mapes" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Neizdevās. Lūdzu pārbaudiet tīkla pieslēgumu." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -146,12 +176,12 @@ msgstr "Neizdevās." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Atcelt." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Nederīgs mērķa ceļš" @@ -204,8 +234,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -221,39 +251,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Tiesību kļūda" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Lūdzu pārbaudiet tīkla pieslēgumu" - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "" @@ -262,7 +273,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -270,150 +281,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Aizvērt (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Ielāde... " -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% no %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Parole ir nepieciešama." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Nepieciešams." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Apstrādē..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Veiksmīgi dzēsts %(name)s." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr " Veiksmīgi dzēsts %(name)s un 1 cits ieraksts." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr " Veiksmīgi dzēsts %(name)s un %(amount)s citi ieraksti." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Kļūda dzēšot %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Kļūda dzēšot %(name)s un 1 citu ierakstu." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Kļūda dzēšot %(name)s un %(amount)s citus ierakstus." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Dzēst ierakstus" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Vai tiešām vēlaties dzēst atlasītos ierakstus?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr " Veiksmīgi pārsūtīts %(name)s." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "Veiksmīgi pārsūtīts %(name)s un 1 cits ieraksts" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "Veiksmīgi pārsūtīts %(name)s un %(amount)s citi ieraksti." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "Veiksmīgi kopēts %(name)s." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "Veiksmīgi kopēts %(name)s un 1 cits ieraksts." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "Veiksmīgi kopēts %(name)s un %(amount)s citi ieraksti." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Iekšējā kļūda. Kļūda pārvietojot %(name)s un %(amount)s citus ierakstus." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Iekšējā kļūda. Kļūda pārvietojot %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Iekšējā kļūda. Kļūda kopējot %(name)s un %(amount)s citus ierakstus." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Iekšējā kļūda. Kļūda kopējot %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Pārvieto datni %(index)s no %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Kopē datni %(index)s no %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Kļūda pārvietojot %(name)s." -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Kļūda kopējot %(name)s." @@ -453,10 +464,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -500,19 +511,19 @@ msgstr "Datnes augšupielāde atcelta" msgid "File Upload failed" msgstr "Kļūda augšupielādējot datni" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Neizdevās iegūt augšupielādes saiti" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Neizdevās iegūt atjaunošanas saiti" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -521,7 +532,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Atlasīt grupas" @@ -542,32 +553,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -579,11 +596,11 @@ msgstr "" msgid "Delete succeeded." msgstr "Veiksmīgi dzēsts." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -591,35 +608,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Slēpt" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Rādīt" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Lūdzu, ievadiet dienas" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Lūdzu, ievadiet derīgas dienas" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -631,22 +649,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Nav atbilstību" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Meklē..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/lv_LV/LC_MESSAGES/djangojs.po b/locale/lv_LV/LC_MESSAGES/djangojs.po index 3bb317b31d..a056db96e5 100644 --- a/locale/lv_LV/LC_MESSAGES/djangojs.po +++ b/locale/lv_LV/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Latvian (Latvia) (http://www.transifex.com/haiwen/seahub/language/lv_LV/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: lv_LV\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/nb/LC_MESSAGES/djangojs.po b/locale/nb/LC_MESSAGES/djangojs.po index 04378a1b58..456063f6f5 100644 --- a/locale/nb/LC_MESSAGES/djangojs.po +++ b/locale/nb/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/haiwen/seahub/language/nb/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/nb_NO/LC_MESSAGES/djangojs.po b/locale/nb_NO/LC_MESSAGES/djangojs.po index ece0d8a720..f4bbc82041 100644 --- a/locale/nb_NO/LC_MESSAGES/djangojs.po +++ b/locale/nb_NO/LC_MESSAGES/djangojs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/haiwen/seahub/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Nettopp" @@ -31,19 +31,19 @@ msgstr "Nettopp" msgid "Name is required" msgstr "Navn er påkrevd" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Vennligst oppgi passord" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Vennligst skriv inn passordet på nytt." -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Passordet er for kort" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Passordene stemmer ikke overens" @@ -59,6 +59,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Vennligst sjekk nettverkstilkoblingen." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Nye filer" @@ -88,35 +113,40 @@ msgstr "Slettede kataloger" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Feilet. Vennligst sjekk nettverkstilkoblingen." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -146,12 +176,12 @@ msgstr "Mislyktes." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Avbrutt." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Ugyldig destinasjonsbane" @@ -204,8 +234,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -221,39 +251,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Tilgangsfeil" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Vennligst sjekk nettverkstilkoblingen." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "" @@ -262,7 +273,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -270,150 +281,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Lukk (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Laster..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Forrige (Venstre piltast)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Neste (Høyre piltast)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% av %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "Bildet kunne ikke lastes inn." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Åpne i ny fane" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Passord er påkrevd." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Påkrevd" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Dette er bare en endelse - vennligst tast inn et navn." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Behandler..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Vellykket sletting av %(name)s." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "Vellykket sletting av %(name)s og 1 annet element." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Vellykket sletting av %(name)s og %(amount)s andre elementer." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Kunne ikke slette %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Mislykket sletting av %(name)s og 1 annet element." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Mislykket sletting av %(name)s og %(amount)s øvrige elementer." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Slett elementer" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Er du sikker på at du ønsker å slette de valgte elementene?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Flytt valgte element(er) til:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Kopiere valgte element(er) til:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "Vellykket flytting av %(name)s." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "Vellykket sletting av %(name)s samt 1 annet element." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "Vellykket flytting av %(name)s og %(amount)s øvrige elementer." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "Vellykket kopiering av %(name)s." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "Vellykket kopiering av %(name)s og 1 øvrig element." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "Vellykket kopiering av %(name)s og %(amount)s øvrige elementer." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Intern feil. Mislykket flytting av %(name)s og %(amount)s øvrige elementer." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Intern feil. Mislykket forsøk på flytting av %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Intern feil. Mislykket forsøk på kopiering av %(name)s og %(amount)s øvrige elementer." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Intern feil. Mislykket forsøk på kopiering av %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Flytter fil %(index)s av %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Kopierer fil %(index)s av %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Kunne ikke flytte %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Kunne ikke kopiere %(name)s" @@ -453,10 +464,10 @@ msgstr "Resultatet er en tom filopplasting" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -500,19 +511,19 @@ msgstr "Filoppastingen ble avbrutt" msgid "File Upload failed" msgstr "Mislykket filopplasting" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Lykkes ikke med å få en opplastingslenke" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Lykkes ikke med å få en oppdateringslenke" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Erstatt fil {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Filen er låst" @@ -521,7 +532,7 @@ msgid "Set {placeholder}'s permission" msgstr "Sett {placeholder}'s tillatelse" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Velg frupper" @@ -542,32 +553,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "Vellykket oppheving av deling for {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -579,11 +596,11 @@ msgstr "Ønsker du virkelig å slette {lib_name}?" msgid "Delete succeeded." msgstr "Vellykket sletting." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -591,35 +608,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "Dele {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Utgått" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Skjul" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Vis" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Tast inn antall dager." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Vennligst tast inn gyldige dager" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Vennligst legg inn minst en e-postadresse" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Vellykket sending til {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Mislykket sending til {placeholder}" @@ -631,22 +649,26 @@ msgstr "Vellykket" msgid "Successfully unstared {placeholder}" msgstr "Vellykket fjerning av stjernemarkering av {placeholder}" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Vennligst skriv inn 1 eller flere bokstaver" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Ingen treff" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Søker..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Innlasting feilet" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/nl_NL/LC_MESSAGES/djangojs.po b/locale/nl_NL/LC_MESSAGES/djangojs.po index dbd5194627..dbf6a9afb9 100644 --- a/locale/nl_NL/LC_MESSAGES/djangojs.po +++ b/locale/nl_NL/LC_MESSAGES/djangojs.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/haiwen/seahub/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -20,12 +20,12 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Zojuist" @@ -33,25 +33,25 @@ msgstr "Zojuist" msgid "Name is required" msgstr "Naam is verplicht" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Voer wachtwoord in" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Gelieve het wachtwoord opnieuw in te voeren" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Wachtwoord is te kort" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Wachtwoorden komen niet overeen" #: static/scripts/app/models/repo.js:53 msgid "Encrypted library" -msgstr "" +msgstr "Versleutelde bibliotheek" #: static/scripts/app/models/repo.js:55 msgid "Read-Write library" @@ -61,6 +61,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Controleer de netwerkverbinding." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Nieuwe bestanden" @@ -90,35 +115,40 @@ msgstr "Verwijderde mappen" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Mislukt. Controleer de netwerkverbinding." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "Succesvol ontkoppeld %(name)s." @@ -148,12 +178,12 @@ msgstr "Mislukt." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Geannuleerd." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Ongeldig bestandspad bestemming" @@ -206,8 +236,8 @@ msgid "{placeholder} Folder Permission" msgstr "{placeholder} Map toegangsrechten" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "Zoek gebruiker of voer email in en druk op Enter" @@ -223,39 +253,20 @@ msgstr "Selecteer een groep" #: 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Rechtenprobleem" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Controleer de netwerkverbinding." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "Klik en selecteer een map." @@ -264,7 +275,7 @@ msgstr "Klik en selecteer een map." msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -272,150 +283,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Sluiten (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Laden..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Vorige (linker pijltjestoets)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Volgende (rechter pijltjestoets)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% van %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "De afbeelding kon niet worden geladen." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Open in nieuw tabblad" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Wachtwoord is verplicht." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Het is verplicht." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Alleen een extensie, voer een naam in." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "In behandeling..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Verwijderen %(name)s gelukt." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "Verwijderen %(name)s en 1 ander item gelukt." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Verwijderen %(name)s en %(amount)s andere items gelukt" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Kon %(name)s niet verwijderen." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Kon %(name)s en 1 ander item niet verwijderen." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Kon %(name)s en %(amount)s andere items niet verwijderen." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Items verwijderen" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Weet je zeker dat je deze items wilt verwijderen?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Geselecteerde item(s) verplaatsen naar:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Geselecteerde item(s) kopiëren naar:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "Verplaatsen van %(name)s gelukt." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "Verplaatsen van %(name)s en 1 ander item gelukt." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "Verplaatsen van %(name)s en %(amount)s andere items gelukt." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "Kopiëren van %(name)s gelukt." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "Kopiëren van %(name)s en 1 ander item gelukt." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "Kopiëren van %(name)s en %(amount)s andere items gelukt." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Interne fout. Kon %(name)s en %(amount)s andere item(s) niet verplaatsen." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Interne fout. Kon %(name)s niet verplaatsen." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Interne fout. Kon %(name)s en %(amount)s andere item(s) niet kopiëren." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Interne fout. Kon %(name)s niet kopiëren." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Verplaatsen van bestand %(index)s van %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Kopieren van bestand %(index)s van %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Kon %(name)s niet verplaatsen" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Kon %(name)s niet kopiëren" @@ -455,10 +466,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -502,19 +513,19 @@ msgstr "Bestandsupload geannuleerd" msgid "File Upload failed" msgstr "Bestandsupload mislukt" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Kon geen upload URL verkrijgen" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Kon geen update URL verkrijgen" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Bestand {filename} vervangen?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Bestand is vergrendeld" @@ -523,7 +534,7 @@ msgid "Set {placeholder}'s permission" msgstr "Stel rechten van {placeholder} in" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Selecteer groepen" @@ -544,32 +555,38 @@ msgstr "{placeholder} leden" msgid "Successfully unshared {placeholder}" msgstr "Delen van {placeholder} opgeheven" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "Je kunt niet meer opties selecteren" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "Kies aub eerst een CSV bestand" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "Succesvol geïmporteerd" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "Sluit groep" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "Groep echt sluiten?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "Verlaat Groep" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "Weet je zeker dat je deze groep wil verlaten?" @@ -581,47 +598,48 @@ msgstr "Wil je {lib_name} echt verwijderen?" msgid "Delete succeeded." msgstr "Verwijdering succesvol." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" -msgstr "" +msgstr "Verplaats bibliotheek {library_name} naar" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." -msgstr "" +msgstr "Verplaatsen van de bibliotheek is gelukt." #: static/scripts/app/views/share.js:57 msgid "Share {placeholder}" msgstr "{placeholder} delen" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Verlopen" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Verbergen" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Toon" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Geef dagen op." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Geef geldige dagen op" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Voer minimaal een e-mailadres in." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Versturen naar {placeholder} gelukt" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Kon niet naar {placeholder} versturen" @@ -633,22 +651,26 @@ msgstr "Gelukt" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Voer 1 of meer tekens in." -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Niet gevonden" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Zoeken..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Ophalen mislukt" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/pl/LC_MESSAGES/django.po b/locale/pl/LC_MESSAGES/django.po index 34c1ccfbea..fff487f747 100644 --- a/locale/pl/LC_MESSAGES/django.po +++ b/locale/pl/LC_MESSAGES/django.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 17:31+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 17:20+0000\n" "Last-Translator: K.S. \n" "Language-Team: Polish (http://www.transifex.com/haiwen/seahub/language/pl/)\n" "MIME-Version: 1.0\n" @@ -22,14 +22,15 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "Użytkownik %s już jest członkiem grupy." -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "Nie znaleziono użytkownika %s w organizacji." @@ -56,8 +57,8 @@ msgstr "Nieprawidłowe hasło" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Wewnętrzny błąd serwera" @@ -67,34 +68,34 @@ msgstr "Błąd deszyfrowania biblioteki" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Niepowodzenie wysyłania udostępnionego łącza. Usługa e-mail nie jest poprawnie skonfigurowana, proszę skontaktować się z administratorem." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "plik" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Został Ci udostępniony plik w %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "folder" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Został Ci udostępniony folder w %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Udostępniono Ci łącze przesyłania w %s" @@ -103,14 +104,15 @@ msgstr "Udostępniono Ci łącze przesyłania w %s" msgid "Password is too short." msgstr "Hasło jest zbyt krótkie." -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Hasło jest za krótkie" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "praca grupowa organizacja współpraca" @@ -146,7 +148,7 @@ msgid "No activity now or the function is not supported." msgstr "Brak aktywności lub funkcja jest nieobsługiwana." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Utworzona biblioteka" @@ -161,7 +163,8 @@ msgstr "Usunięta biblioteka %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -169,8 +172,8 @@ msgstr "Usunięta biblioteka %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -186,7 +189,7 @@ msgstr "Proszę sprawdzić sieć." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -212,13 +215,16 @@ msgstr "Ważne daty" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -246,10 +252,11 @@ msgid "Email or Username" msgstr "Email lub nazwa użytkownika" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -309,7 +316,7 @@ msgid "New password confirmation" msgstr "Potwierdzenie hasła" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Podane hasła nie są identyczne." @@ -321,7 +328,7 @@ msgstr "Stare hasło" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Twoje stare hasło jest nieprawidłowe. Proszę wprowadzić je ponownie." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Hasło (ponownie)" @@ -330,15 +337,19 @@ msgstr "Hasło (ponownie)" msgid "Enter a valid e-mail address." msgstr "Podaj prawidłowy adres e-mail." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "To konto zostało zamrożone z powodu zbyt dużej liczby nieudanych logowań." + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Wylogowany" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Nie udało się wysłać e-maila, proszę się skontaktować z administratorem." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Nie można zaktualizować hasła, skontaktuj się z administratorem usługi LDAP" @@ -425,6 +436,7 @@ msgstr "Obecny awatar: " #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -436,24 +448,24 @@ msgstr "Obecny awatar: " #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -514,43 +526,48 @@ msgstr "Pomyślnie zaktualizowano Twój awatar." msgid "Successfully deleted the requested avatars." msgstr "Pomyślnie usunięto wybrane awatary." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "Konto %(account)s w %(site)s zamarzło." + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Adres e-mail" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Nazwa użytkownika" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Ta wartość musi być o długości 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Podaj poprawny adres email." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Użytkownik z podanym adresem e-mail już istnieje" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Nieprawidłowy identyfikator użytkownika." -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "nazwa" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "wydział" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "telefon" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "notatka" @@ -619,7 +636,7 @@ msgid "Recovered deleted directory" msgstr "Odzyskano usunięty katalog" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Zmieniona nazwa biblioteki lub opis" @@ -671,22 +688,22 @@ msgstr[2] "%(seconds)d sekund temu" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -699,21 +716,21 @@ msgstr "Do odczytu i zapisu" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -786,15 +803,16 @@ msgstr "E-mail " #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -822,7 +840,7 @@ msgstr "E-mail " #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nazwa" @@ -867,11 +885,11 @@ msgstr "Akcje" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -892,21 +910,21 @@ msgstr "Edytuj" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -938,8 +956,9 @@ msgstr "Dodaj jakieś kontakty, aby móc szybko udostępniać biblioteki i przes #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -949,8 +968,8 @@ msgstr "Dodaj jakieś kontakty, aby móc szybko udostępniać biblioteki i przes #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "E-mail" @@ -1048,17 +1067,17 @@ msgstr "Opis jest zbyt długi (maksymalnie 100 znaków)" msgid "Name %s is not valid" msgstr "Nazwa %s nie jest prawidłowa" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Brakujący parametr" @@ -1120,7 +1139,7 @@ msgid "Permission error: only group staff can add member" msgstr "Błąd uprawnień: tylko obsługa grupy może dodawać członków" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Grupa nie istnieje" @@ -1270,16 +1289,16 @@ msgstr "Proszę kliknąć i wybrać bibliotekę." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1356,21 +1375,21 @@ msgstr "Nazwa jest wymagana." msgid "Description is required." msgstr "Opis jest wymagany." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Odmowa dostępu" @@ -1723,11 +1742,14 @@ msgstr "Wyjście" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Użytkownicy" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1735,9 +1757,11 @@ msgstr "Informacje" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1748,12 +1772,16 @@ msgid "Libraries" msgstr "Biblioteki" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Aktywni użytkownicy" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1813,12 +1841,12 @@ msgstr "Posiadane biblioteki" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1831,11 +1859,11 @@ msgid "Size" msgstr "Rozmiar" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1845,7 +1873,7 @@ msgid "Last Update" msgstr "Ostatnia aktualizacja" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1873,10 +1901,10 @@ msgid "This user has not created any libraries" msgstr "Ten użytkownik nie utworzył żadnej biblioteki" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Rola" @@ -1885,8 +1913,8 @@ msgstr "Rola" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Utworzono" @@ -1901,7 +1929,7 @@ msgstr "Ten użytkownik nie utworzył, ani nie dołączył do żadnej grupy" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Status" @@ -1921,7 +1949,7 @@ msgstr "Utworzono / Ostatnie logowanie" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Aktywny" @@ -1933,7 +1961,7 @@ msgstr "Aktywny" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Nieaktywny" @@ -1942,7 +1970,7 @@ msgstr "Nieaktywny" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Pusto" @@ -1960,33 +1988,32 @@ msgstr "Usuń użytkownika" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Właściciel" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Admin" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Członek" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "Pomyślnie usunięto %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Niepowodzenie usuwanie: użytkownik nie istnieje" @@ -2010,6 +2037,7 @@ msgstr "Wiadomość" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Czas" @@ -2056,16 +2084,22 @@ msgid "Send a message..." msgstr "Wyślij wiadomość..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Poprzedni" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2082,18 +2116,20 @@ msgstr "Czy na pewno chcesz usunąć tę dyskusję?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Tak" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Nie" @@ -2135,57 +2171,66 @@ msgid "Virus detected on %s" msgstr "Wykryto wirusa w %s" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "%s nowych powiadomień" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Błąd wewnętrzny" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Plik %(file_name)s przesłano do %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Plik %(file_name)s przesłano do Usuniętej Biblioteki" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s udostępnił Ci bibliotekę %(repo_name)s." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "%(user)s udostępnił grupie %(group_name)s bibliotekę %(repo_name)s." + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Otrzymałeś nową wiadomość od %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "Grupa %(group_name)s zawiera nową dyskusję" -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s zamieścił nową dyskusję w grupie %(group_name)s" -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s prosi o członkostwo w grupie %(group_name)s, wiadomość weryfikacyjna: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2234,11 +2279,19 @@ msgstr "%(user)s udostępnił Ci bibliotekę %(lib_name)s to %(group_name)s." +msgstr "%(user)s udostępnił %(group_name)s bibliotekę %(lib_name)s." + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Otrzymałeś nową wiadomość od %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2246,7 +2299,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "Plik %(file_name)s zostanie przesłany do Twojego folderu %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2254,14 +2307,14 @@ msgid "" "message: %(msg)s" msgstr "Użytkownik %(user)s prosi o dołączenie do grupy %(grp_name)s, wiadomość weryfikacyjna: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "Użytkownik %(user)s dodał Cię do grupy %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Idź zobacz na następującej stronie:" @@ -2291,6 +2344,7 @@ msgid "Delete Notification" msgstr "Usuń powiadomienie" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2298,6 +2352,7 @@ msgstr "Usuń powiadomienie" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Cześć," @@ -2366,14 +2421,17 @@ msgstr "Ustawienia profilu" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Ustawienia" @@ -2607,40 +2665,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "Adres e-mail jest nie dłuższy niż 512 znaków" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "Hasło nie może być puste" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Proszę wpisać prawidłowe hasło." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "Twój kod to %(code)s, będzie on ważny przez godzinę." + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Łącza - Udział" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Łącza pobierania" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Łącza przesyłania" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Biblioteka" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Wizyty" @@ -2651,7 +2715,7 @@ msgstr "Wygaśnięcie" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2667,7 +2731,7 @@ msgstr "Wyświetl" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2700,7 +2764,7 @@ msgid "Folders - Share" msgstr "Foldery - Udział" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Foldery" @@ -2711,15 +2775,15 @@ msgstr "Udostępnij" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Uprawnienie" @@ -2785,175 +2849,211 @@ msgid "" "groups you are in." msgstr "Możesz udostępniać biblioteki swoim znajomym klikając ikonę udostępniania przy na swojej liście bibliotek lub tworząc nowe biblioteki w grupach do których należysz." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "Weryfikacja adresu email" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "Podaj swój adres email, aby kontynuować." + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "Pobierz kod" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "Kod weryfikacyjny" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "Kod weryfikacyjny został wysłany na podany adres email." + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Nie udało się udostępnić wszystkim członkom, proszę później spróbować ponownie." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Pomyślnie udostępniono wszystkim członkom, sprawdź udziały." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Tylko właściciel biblioteki ma możliwość jej udostępnienia." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "Biblioteka nie istnieje" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Nieprawidłowy argument" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Parametr jest nieprawidłowy" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Nie udało się usunąć udziału" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "identyfikator grupy nie jest prawidłowy" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Niepowodzenie przy wyłączaniu udostępniania: grupa nie istnieje." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Pomyślnie usunięto udział" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "wszyscy członkowie" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Łącze nie istnieje" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Wewnętrzny błąd serwera lub proszę sprawdzić wpisany e-mail" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Proszę wybrać katalog." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Zapisano pomyślnie." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "Nie udało się wysłać udostępnionego łącza przesyłania. Usługa e-mail nie jest poprawnie skonfigurowana, proszę się skontaktować z administratorem." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "Nie masz uprawnień do tworzenia łączy udostępniania" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Nieprawidłowe parametry" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Biblioteka nie istnieje." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "Folder nie istnieje." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Proszę sprawdzić wprowadzony e-mail" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "Adres e-mail jest nieprawidłowy" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "Nie znaleziono łącza udostępniania" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "Kod weryfikacyjny do łącz udostępniania" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "Nie udało się wysłać kodu weryfikacyjnego, proszę spróbować później." + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Niestety, żądana strona nie została odnaleziona." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Wyjdź z administracji" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Zamknij" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Powiadomienia" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Wszystkie powiadomienia" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "Pokaż profil i więcej" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Wyloguj się" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Administracja" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Ta wersja przeglądarki IE, nie jest już obsługiwana. Proszę ją zaktualizować do wersji 10 lub nowszej." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Powiadomienia" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Witaj w Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile porządkuje pliki tworząc biblioteki. Każda biblioteka może być niezależnie udostępniania i synchronizowana. Specjalnie dla Ciebie utworzyliśmy Twoją osobistą bibliotekę. W dowolnej chili możesz tworzyć kolejne." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2961,7 +3061,7 @@ msgid "" msgstr "Seafile porządkuje pliki tworząc biblioteki. Każda biblioteka może być niezależnie udostępniania i synchronizowana. Jednakże nie możesz tworzyć bibliotek ponieważ jesteś gościem." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Zarejestruj" @@ -2991,28 +3091,31 @@ msgid "Please enter the password." msgstr "Proszę podać hasło." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Pobierz" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Log dostępu" @@ -3021,9 +3124,12 @@ msgstr "Log dostępu" msgid "Current Path:" msgstr "Aktualna ścieżka:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Użytkownik" @@ -3033,11 +3139,16 @@ msgstr "Użytkownik" msgid "Type" msgstr "Typ" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Nazwa urządzenia" @@ -3051,6 +3162,7 @@ msgstr "Użytkownik anonimowy" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3076,10 +3188,6 @@ msgstr "Zapisano szkic." msgid "is encrypted" msgstr "jest zaszyfrowany" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Hasło: " - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "Hasło będzie przechowywane na serwerze wyłącznie przez 1 godzinę." @@ -3204,7 +3312,7 @@ msgstr "Kolumny" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Domyślnie" @@ -3229,10 +3337,10 @@ msgid "Password is required." msgstr "Hasło jest wymagane." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Historia" @@ -3328,85 +3436,90 @@ msgstr "Seafile" msgid "About Us" msgstr "O nas" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Pliki" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Moje" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Udostępnione" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" msgstr "Organizacja" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Wszystkie grupy" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "Narzędzia" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Aktywuj moduły" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Oznaczone gwiazdką" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Aktywności" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Osobista Wiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Urządzenia" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Udostępnianie" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Łącza" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Wyślij folder" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Dodaj termin ważności" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Dni" @@ -3424,18 +3537,12 @@ msgid "Shared Libs" msgstr "Współdzielone biblioteki" #: 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 "Nowy katalog" - -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Nazwa katalogu" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "Nowy folder" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Nowy plik" @@ -3453,8 +3560,7 @@ msgstr "format prostych znaczników" #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Szczegóły" @@ -3518,7 +3624,123 @@ msgstr "Zastąp" msgid "Don't replace" msgstr "Nie zastępuj" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organizacje" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "Instytucje" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Ruch" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Logi" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Skanowanie antywirusowe" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Informacje systemowe" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Wersja Profesjonalna" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "wygasa" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Wersja Społecznościowa" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Aktualizuj do wersji Pro" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Limity" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "Stacjonarne" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "Przenośne" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "Błędy" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Platforma" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "Wersja" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Ostatni dostęp" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "Brak podłączonych urządzeń" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Odłącz" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Wyczyść" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "Urządzenie" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Błąd" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "Brak błędów synchronizacji" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Nowa biblioteka" @@ -3532,13 +3754,14 @@ msgid "Encrypt" msgstr "Zaszyfruj" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(minimum %(repo_password_min_length)s znaków)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Powtórz hasło" @@ -3548,34 +3771,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Uszkodzona (proszę się skontaktować z administratorem w celu naprawy)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Udostępnij" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Więcej operacji" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Zmień nazwę" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3598,58 +3821,59 @@ msgid "Folder Permission" msgstr "Uprawnienia folderu" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Przenieś" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Kopiuj" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Prześlij" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Prześlij pliki" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Nowy folder" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Lista" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "widok listy" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Siatka" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "widok siatki" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3657,175 +3881,177 @@ msgstr "widok siatki" msgid "Trash" msgstr "Kosz" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Biblioteki podrzędne" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "Akcje" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Więcej operacji" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Otwórz w kliencie" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "Oznaczone gwiazdką" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "Nieoznaczone gwiazdką" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "zablokowany" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Odblokuj" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Zablokuj" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Niepowodzenie pobierania" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Łącze pobierania" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Łącze przesyłania" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Udostępnij użytkownikowi" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Udostępnij grupie" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Dodaj ochronę hasła" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(min. %(share_link_password_min_length)s znaków)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Pokaż" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Wygeneruj losowe hasło" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Wygeneruj" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Odsyłacz: " -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Bezpośrednie łącze pobierania:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Wyślij" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Wyślij do:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Adresy e-mail, oddzielone za pomocą ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Wiadomość (opcjonalnie)" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Wysyłanie..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Możesz udostępnić utworzone łącze, aby umożliwić innym przesyłanie plików do tego katalogu." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Łącze przesyłania: " -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Grupa" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Opuść udział" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3836,182 +4062,191 @@ msgstr "Wiki" msgid "Members" msgstr "Członkowie" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Dyskusja" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Uprawnienia użytkownika" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Uprawnienia grupy:" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "ikona" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Usuń gwiazdkę" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "Typ biblioteki" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Udostępniony przez" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Wybierz biblioteki do udostępnienia" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Usunięta biblioteka" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Szczegóły modyfikacji" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Przeszukaj pliki w tej Wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Przeszukaj pliki w tej bibliotece" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Przeszukaj pliki" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "zaawansowane" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "Żadna biblioteka nie jest współdzielona w tej grupie" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "właściciel" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "admin" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Odpowiedz" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "Dodaj Wiki" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "Usuń Wiki" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Importuj członków" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "Zarządzaj członkami" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Odwołaj" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Opuść grupę" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Zmień nazwę grupy na" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Przekaż grupę do" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Importuj członków grupy z pliku CSV" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Format pliku: user@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "Dodaj" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "Ustawienie historii biblioteki jest wyłączone przez administratora." -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Przechowuj pełną historię" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Nie przechowuj historii" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Przechowuj historię z ostatnich:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "dni" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Utworzony przez" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Folder" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Wybierz folder" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Stare hasło" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Nowe hasło (min. %(repo_password_min_length)s znaków)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Nowe hasło" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Powtórz nowe hasło" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Odłącz" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Wszystkie powiadomienia" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4028,6 +4263,11 @@ msgstr "Możesz tworzyć biblioteki, aby porządkować swoje pliki. Przykładowo msgid "No library is shared to you" msgstr "Żadna biblioteka nie została Ci udostępniona" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organizacja" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Dodaj bibliotekę" @@ -4074,10 +4314,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Grupa jest miejscem, w którym Ty i Twoi przyjaciele możecie wymieniać się wiadomościami i współdzielić biblioteki. Grupy, których jesteś członkiem będą tutaj wymienione." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Nazwa grupy" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4117,14 +4353,6 @@ msgid "" " page, and they will be listed here." msgstr "Możesz oznaczać gwiazdką ważne pliki klikając przycisk \"Star\" na stronie przeglądania pliku. Tak oznaczone pliki będą tutaj wypisane." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Platforma" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Ostatni dostęp" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Biblioteki" @@ -4154,7 +4382,7 @@ msgstr "Aby aktywować to konto, proszę kliknąć następujący link w ciągu % #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4174,33 +4402,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Nieczytelne? Odśwież." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Nieprawidłowy e-mail lub hasło" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Zapamiętaj mnie przez %(remember_days)s dni" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Niepowodzenie odświeżania CAPTCHA, proszę później spróbować ponownie." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "Adres e-mail lub nazwa użytkownika nie może być pusta" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4241,10 +4469,6 @@ msgstr "Przed kontynuowaniem proszę zaktualizować swoje hasło." msgid "Current Password" msgstr "Aktualne hasło" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Nowe hasło" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4381,11 +4605,6 @@ msgstr "Adre e-mail nie może być pusty" msgid "%(repo_dir_name)s Trash" msgstr "Kosz %(repo_dir_name)s" -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "Wyczyść" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Usuń czas" @@ -4407,12 +4626,12 @@ msgid "1 month ago" msgstr "1 miesiąc temu" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Sukces" @@ -4642,7 +4861,7 @@ msgid "Please enter password" msgstr "Proszę podać hasło" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Usunięto pomyślnie." @@ -4783,6 +5002,15 @@ msgstr "Gwiazdki" msgid "Successfully unstarred." msgstr "Pomyślnie usunięto gwiazdkę" +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Nowy katalog" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Nazwa katalogu" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "zamknij" @@ -4808,88 +5036,62 @@ msgstr "Błąd w trakcie wysyłania pliku" msgid "Failed to get upload url" msgstr "Nie udało się uzyskać łącza przesyłania" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Plik jest zbyt duży" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Plik jest zbyt mały" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Niedozwolony typ pliku" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Przekroczono maksymalną liczbę plików" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Przesłane dane przekraczają rozmiar pliku" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Wynik przesyłania pustego pliku" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Błąd" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "przesłany" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "anulowany" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Start" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Jest wymagane." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organizacje" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "Instytucje" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Ruch" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Logi" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Skanowanie antywirusowe" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Twórca" @@ -4941,6 +5143,13 @@ msgstr "Usuń bibliotekę" msgid "Files / Size" msgstr "Pliki / Rozmiar" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "Uwaga: Ustawienia wprowadzone przez interfejs www są przechowywane w tabeli (seahub-db/constance_config) bazy danych. Są one ważniejsze od ustawień zapisanych w plikach konfiguracyjnych." + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Potwierdź hasło, aby kontynuować" @@ -4971,10 +5180,6 @@ msgstr "Informacje o grupie" msgid "No library has shared to this group" msgstr "Żadna biblioteka nie została udostępniona tej grupie" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "admin" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4986,30 +5191,6 @@ msgstr "Wyeksportuj do Excel" msgid "Delete Group" msgstr "Usuń grupę" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Informacje systemowe" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Wersja Profesjonalna" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "wygasa" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Wersja Społecznościowa" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Aktualizuj do wersji Pro" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Limity" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "Wszystkie instytucje" @@ -5173,12 +5354,12 @@ msgid "Max User Number" msgstr "Maksymalna liczba ludzi" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Wartość powinna być liczbą" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "Wartość powinna być większa niż 0" @@ -5318,7 +5499,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP (import)" @@ -5331,7 +5512,7 @@ msgid "Admins" msgstr "Admini" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Ostatnie logowanie" @@ -5357,7 +5538,7 @@ msgstr "Możesz także dodać użytkownika jako gościa, nie będzie miał możl #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Gość" @@ -5445,6 +5626,12 @@ msgstr "E-mail: %(email)s" msgid "Password: %(password)s" msgstr "Hasło: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "Konto %(user)s zamarzło z powodu wielu nieudanych logowań. Proszę sprawdzić:" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5522,24 +5709,24 @@ msgstr "do" msgid "Sorry, this user is not registered yet." msgstr "Przepraszamy, ten użytkownik nie jest jeszcze zarejestrowany." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Aktualna ścieżka: " -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "aktualizuj ten plik" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Wróć na górę" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "góra" @@ -5635,8 +5822,8 @@ msgstr "Nieprawidłowe parametry." #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Odmowa dostępu." @@ -5665,8 +5852,8 @@ msgid "Duplicated filename" msgstr "Duplikat nazwy pliku" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Plik nie istnieje" @@ -5725,11 +5912,11 @@ msgstr "Niepowodzenie wyłączania udostępnienia \"%s\"." msgid "No revisions found" msgstr "Nie odnaleziono rewizji" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Sprawdź błąd blokady pliku" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "Plik jest zablokowany" @@ -5757,12 +5944,12 @@ msgstr "Pomyślnie przywrócono %(path)s do katalogu główn msgid "\"%s\" does not exist." msgstr "\"%s\" nie istnieje." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Błąd wewnętrzny" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Nie można pobrać katalogu \"%s\": rozmiar jest zbyt duży." @@ -5772,11 +5959,11 @@ msgstr "Nie można pobrać katalogu \"%s\": rozmiar jest zbyt duży." msgid "Unable to download \"%s\"" msgstr "Nie można pobrać \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "Pomyślnie włączono \"Osobistą Wiki\"." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "Pomyślnie wyłączono \"Osobistą Wiki\"." @@ -5793,7 +5980,7 @@ msgid "The group doesn't exist" msgstr "Grupa nie istnieje" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Biblioteka jest zaszyfrowana." @@ -5871,262 +6058,266 @@ msgstr "Niepowodzenie pobierania listy bloków pliku" msgid "Wrong repo id" msgstr "Błędny identyfikator repozytorium" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Niepowodzenie" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Nieprawidłowy token łącza przesyłania." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Nieprawidłowy identyfikator repozytorium w odnośniku przesyłania." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Brak konfliktów podczas scalania." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Niepowodzenie edycji informacji biblioteki" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Nie udało się zapisać ustawień na serwerze" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Ustawienia zapisane." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Nazwa użytkownika %s jest niepoprawna" -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Użytkownik %s nie został odnaleziony." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "Użytkownik %s nie jest aktualnie w organizacji." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "Nie można przekazać biblioteki użytkownikowi %s organizacji." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Nie można zmienić hasła, nie jesteś właścicielem konta." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Nieprawidłowe uprawnienia folderu, powinny być \"rw\" lub \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "Ścieżka powinna zaczynać się od \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "Ścieżka nie powinna kończyć się znakiem \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Nieprawidłowa ścieżka" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Nieprawidłowy użytkownika, powinien być zarejestrowany" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Operacja zakończona niepowodzeniem" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Nieprawidłowe uprawnienia folderu" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Proszę najpierw dodać uprawnienia folderu" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Proszę sprawdzić podany e-mail i wybrane kontakty" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Nieprawidłowa grupa" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "Grupa nie istnieje." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Niepowodzenie, plik jest zbyt duży" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "Błąd HTTP: niepowodzenie otwierania pliku online" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "Błąd URL: niepowodzenie otwierania pliku online" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "Wybrane kodowanie jest nieprawidłowe." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Nieznane kodowanie pliku" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "Rozmiar pliku przekracza %s, nie może być otwarty online." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "Biblioteka jest zaszyfrowana, nie można otworzyć pliku online." -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Nie można wyświetlić pliku" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Niepoprawny format pliku" -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "Nie można pobrać pliku, nieprawidłowa ścieżka" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "Nie można pobrać pliku, zła ścieżka" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "Nie można pobrać pliku, transfer łącza został wykorzystany." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "Nie można wyświetlić surowego pliku, transfer dla tego łącza został wykorzystany." + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "Biblioteka nie istnieje." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "Biblioteka jest zaszyfrowana." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Nie można edytować pliku" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Plik nie istnieje." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Edycja online nie jest oferowana dla plików tego typu." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Nie udało się pobrać pliku" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Nie można uzyskać dostępu do pliku: transfer dla łącza został wykorzystany." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "Nie można pobrać: nie znaleziono folderu." -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "Nie można wyświetlić biblioteki" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "Nie można wyświetlić biblioteki, zła ścieżka folderu." -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Nieprawidłowa nazwa użytkownika" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "Nie udało się wyeksportować do Excel" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Nie udało się ustawić limitów dyskowych: maksimum to %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Niepowodzenie ograniczania przestrzeni: błąd wewnętrzny serwera" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Nie udało się usunąć: użytkowników jest twórcą organizacji" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Pomyślnie usunięto okres próbny dla: %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Pomyślnie cofnięto uprawnienia administracyjne użytkownikowi %s" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Niepowodzenie cofania uprawnień administracyjnych: użytkownik nie istnieje" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Twoje konto w %s jest aktywowane" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "Hasło w %s zostało zresetowane" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Pomyślnie zresetowano hasło na %(passwd)s, wiadomość e-mail została wysłana do %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Pomyślnie zresetowano hasło na %(passwd)s, ale nie udało się wysłać wiadomości do %(user)s, proszę sprawdzić konfigurację e-mail." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Pomyślnie zresetowano użytkownikowi %(user)s hasło na %(passwd)s." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6134,107 +6325,107 @@ msgid "" "configured." msgstr "Pomyślnie zresetowano użytkownikowi %(user)s hasło na %(passwd)s. Niestety powiadomienie e-mail nie zostało wysłane, ponieważ usługa e-mail nie została poprawnie skonfigurowana." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Niepowodzenie resetowania hasłą: użytkownik nie istnieje" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Zostałeś zaproszony do %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Nie udało się dodać użytkownika %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "Pomyślnie dodano użytkownika %s. Powiadomienie e-mail zostało wysłane." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "Pomyślnie dodano użytkownika %s. Niestety podczas wysyłania powiadomienie e-mail wystąpił błąd. Proszę sprawdzić konfigurację e-mail." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "Pomyślnie dodano użytkownika %s." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "Pomyślnie dodano użytkownika %s. Niestety powiadomienie e-mail nie zostało wysłane ponieważ usługa e-mail nie została poprawnie skonfigurowana." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Nie udało się zmienić nazwy organizacji" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Pomyślnie usunięto." -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Niepowodzenie przekazywania, nieprawidłowe parametry." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Niepowodzenie przekazywania, użytkownik %s nie został odnaleziony" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "Nie udało się przekazać biblioteki organizacji" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "Nie można przekazać biblioteki użytkownikowi %s organizacji" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Pomyślnie przeniesiono." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "Biblioteka systemowa nie może zostać usunięta." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Nie udało się usunąć, proszę spróbować później." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "Pomyślnie przyznano %s uprawnienia administracyjne." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Niepowodzenie przyznawania %s uprawnień administracyjnych: użytkownik nie istnieje." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Import zakończony pomyślnie" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Najpierw wybierz plik CSV." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Nieprawidłowe ustawienie" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Nieprawidłowa wartość" diff --git a/locale/pl/LC_MESSAGES/djangojs.po b/locale/pl/LC_MESSAGES/djangojs.po index bb72ec5129..42e1770bd6 100644 --- a/locale/pl/LC_MESSAGES/djangojs.po +++ b/locale/pl/LC_MESSAGES/djangojs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 17:32+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 16:58+0000\n" "Last-Translator: K.S. \n" "Language-Team: Polish (http://www.transifex.com/haiwen/seahub/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Przed chwilą" @@ -31,19 +31,19 @@ msgstr "Przed chwilą" msgid "Name is required" msgstr "Nazwa jest wymagana" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Proszę podać hasło" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Proszę ponownie podać hasło" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Hasło jest zbyt krótkie" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Hasła nie są identyczne" @@ -59,6 +59,31 @@ msgstr "Biblioteka do odczytu i zapisu" msgid "Read-Only library" msgstr "Biblioteka tylko do odczytu" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Proszę sprawdzić sieć." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Nowe pliki" @@ -88,35 +113,40 @@ msgstr "Usunięte katalogi" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Niepowodzenie. Proszę sprawdzić sieć." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "Pomyślnie odłączono %(name)s" @@ -146,12 +176,12 @@ msgstr "Niepowodzenie." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Anulowano." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Nieprawidłowa ścieżka docelowa" @@ -204,8 +234,8 @@ msgid "{placeholder} Folder Permission" msgstr "Uprawnienia folderu {placeholder}" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "Wyszukaj użytkownika lub podaj adres email i naciśnij Enter." @@ -221,39 +251,20 @@ msgstr "Wybierz grupę" #: 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Błąd uprawnień" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Proszę sprawdzić sieć." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "Proszę kliknąć i wybrać katalog." @@ -262,7 +273,7 @@ msgstr "Proszę kliknąć i wybrać katalog." msgid "{placeholder} History Setting" msgstr "Ustawienia historii {placeholder}" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "Pomyślnie ustawiono historię biblioteki." @@ -270,150 +281,150 @@ msgstr "Pomyślnie ustawiono historię biblioteki." msgid "{placeholder} Share Links" msgstr "Łącza {placeholder}" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Zamknij (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Wczytywanie..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Poprzedni (strzałka w lewo)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Następny (strzałka w prawo)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% z %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "Obraz nie może być wczytany." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Otwórz w nowej karcie" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Hasło jest wymagane." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Wymagane." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Tylko rozszerzenie, proszę podać nazwę." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Przetwarzanie..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Pomyślnie usunięto %(name)s." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "Pomyślnie usunięto %(name)s i 1 inny element." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Pomyślnie usunięto %(name)s i %(amount)s innych elementów." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Nie udało się usunąć %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Nie udało się usunąć %(name)s i 1 innego elementu." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Nie udało się usunąć %(name)s i %(amount)s innych elementów." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Usuń elementy" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Czy na pewno chcesz trwale usunąć wybrane elementy?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Przenieś wybrane elementy do:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Kopiuj wybrane elementy do:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "Pomyślnie przeniesiono %(name)s." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "Pomyślnie przeniesiono %(name)s i 1 inny element." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "Pomyślnie przeniesiono %(name)s i %(amount)s innych elementów." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "Pomyślnie skopiowano %(name)s." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "Pomyślnie skopiowano %(name)s i 1 inny element." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "Pomyślnie skopiowano %(name)s i %(amount)s innych elementów." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Błąd wewnętrzny. Nie można przenieść %(name)s i %(amount)s innych elementów." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Błąd wewnętrzny. Nie można przenieść %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Błąd wewnętrzny. Nie można skopiować %(name)s i %(amount)s innych elementów." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Błąd wewnętrzny. Nie można skopiować %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Przenoszenie pliku %(index)s z %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Kopiowanie pliku %(index)s z %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Nie można przenieść %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Nie można skopiować %(name)s" @@ -453,10 +464,10 @@ msgstr "Wynik przesyłania pustego pliku" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -500,19 +511,19 @@ msgstr "Anulowano wysyłanie pliku" msgid "File Upload failed" msgstr "Błąd w trakcie wysyłania pliku" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Nie udało się uzyskać adresu wysyłania" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Nie udało się uzyskać adresu aktualizacji" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Zamienić plik {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Plik jest zablokowany" @@ -521,7 +532,7 @@ msgid "Set {placeholder}'s permission" msgstr "Ustaw uprawnienia {placeholder}" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Wybierz grupy" @@ -542,32 +553,38 @@ msgstr "Członkowie {placeholder}" msgid "Successfully unshared {placeholder}" msgstr "Pomyślnie zakończono udostępnianie {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "Nie możesz wybrać więcej pozycji" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "Pomyślnie przeniesiono grupę. Jesteś teraz zwykłym użytkownikiem grupy." + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "Proszę wybrać plik CSV" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "Zaimportowano pomyślnie." -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "Odwołaj grupę" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "Czy na pewno chcesz odwołać tę grupę?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "Opuść grupę" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "Czy na pewno chcesz opuścić tę grupę?" @@ -579,11 +596,11 @@ msgstr "Naprawdę chcesz usunąć {lib_name}?" msgid "Delete succeeded." msgstr "Usunięto pomyślnie." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "Przenieś bibliotekę {library_name} do" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "Pomyślnie przeniesiono bibliotekę." @@ -591,35 +608,36 @@ msgstr "Pomyślnie przeniesiono bibliotekę." msgid "Share {placeholder}" msgstr "Udostępnij {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Wygasło" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Ukryj" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Pokaż" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Proszę podać dni." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Podaj prawidłową liczbę dni" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Proszę podać przynajmniej e-mail." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Pomyślnie wysłano do {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Nie udało się wysłać do {placeholder}" @@ -631,22 +649,26 @@ msgstr "Sukces" msgid "Successfully unstared {placeholder}" msgstr "Pomyślnie usunięto {placeholder} z ulubionych" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "Wyszukaj użytkowników lub podaj adresy email i naciśnij Enter." -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Proszę podać 1 lub więcej znaków" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Brak wyników" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Wyszukiwanie..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Niepowodzenie wczytywania" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "Pomyślnie wyczyszczono wszystkie błędy." diff --git a/locale/pt_BR/LC_MESSAGES/django.po b/locale/pt_BR/LC_MESSAGES/django.po index 0e6e29aefa..5e9c40e2fd 100644 --- a/locale/pt_BR/LC_MESSAGES/django.po +++ b/locale/pt_BR/LC_MESSAGES/django.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/haiwen/seahub/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -29,14 +29,15 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -63,8 +64,8 @@ msgstr "Senha incorreta" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Erro interno do servidor" @@ -74,34 +75,34 @@ msgstr "Falha ao descriptografar a biblioteca" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Falha ao enviar o link compartilhado. O serviço de e-mail não está configurado adequadamente, favor entre em contato com o administrador." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "arquivo" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Um arquivo está compartilhado com você em %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "Diretorio" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Uma pasta está compartilhada com você %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Um link de upload está compartilhado com você em %s" @@ -110,14 +111,15 @@ msgstr "Um link de upload está compartilhado com você em %s" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "A senha é muito curta" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Equipe de colaboração" @@ -153,7 +155,7 @@ msgid "No activity now or the function is not supported." msgstr "Sem atividade agora ou a função não é suportada." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Biblioteca criada" @@ -168,7 +170,8 @@ msgstr "Biblioteca excluídas %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -176,8 +179,8 @@ msgstr "Biblioteca excluídas %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -193,7 +196,7 @@ msgstr "Por favor, verifique a conexão com a rede" #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -219,13 +222,16 @@ msgstr "Datas importantes" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -253,10 +259,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -316,7 +323,7 @@ msgid "New password confirmation" msgstr "Nova senha confirmada" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "As senhas não coincidem." @@ -328,7 +335,7 @@ msgstr "Senha anterior" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Sua antiga senha foi informada incorretamente. Por favor, tente novamente." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Informe a senha novamente" @@ -337,15 +344,19 @@ msgstr "Informe a senha novamente" msgid "Enter a valid e-mail address." msgstr "Informe um endereço de e-mail válido." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Desconectado" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Falha ao enviar e-mail. Por favor, contate o administrador." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Não é possível atualizar senha, por favor contate o administrador." @@ -432,6 +443,7 @@ msgstr "Avatar atual:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -443,24 +455,24 @@ msgstr "Avatar atual:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -521,43 +533,48 @@ msgstr "Seu avatar foi atualizado com sucesso." msgid "Successfully deleted the requested avatars." msgstr "Excluído com sucesso os avatares solicitados." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Endereço de e-mail" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Nome de usuário" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Este valor deve ter o tamanho de 40 caracteres" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Insira um e-mail válido" -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Já existe um usuário cadastrado com este email" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "ID de usuário inválido" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "nome" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "departamento" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "telefone" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "nota" @@ -626,7 +643,7 @@ msgid "Recovered deleted directory" msgstr "Diretório apagado recuperado" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "O nome da biblioteca mudou ou sua descrição" @@ -674,22 +691,22 @@ msgstr[1] "%(seconds)d segundos atrás" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -702,21 +719,21 @@ msgstr "Leitura-Escrita" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -788,15 +805,16 @@ msgstr "E-mail" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -824,7 +842,7 @@ msgstr "E-mail" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Nome" @@ -869,11 +887,11 @@ msgstr "Operações" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -894,21 +912,21 @@ msgstr "Editar" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -940,8 +958,9 @@ msgstr "Ao adicionar contatos, você facilmente poderá compartilhar e enviar ar #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -951,8 +970,8 @@ msgstr "Ao adicionar contatos, você facilmente poderá compartilhar e enviar ar #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "E-mail" @@ -1050,17 +1069,17 @@ msgstr "Descrição é muito longa (o máximo é 100 caracteres)" msgid "Name %s is not valid" msgstr "Nome %s não é válido" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Argumento ausente" @@ -1122,7 +1141,7 @@ msgid "Permission error: only group staff can add member" msgstr "Erro de permissão: apenas membros com autorização podem adicionar membros." #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "O grupo não existe" @@ -1272,16 +1291,16 @@ msgstr "Por favor, clique e escolha uma biblioteca." #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1358,21 +1377,21 @@ msgstr "O nome é obrigatório." msgid "Description is required." msgstr "A descrição é obrigatória." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Permissão negada" @@ -1725,11 +1744,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Usuários" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1737,9 +1759,11 @@ msgstr "Informação" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1750,12 +1774,16 @@ msgid "Libraries" msgstr "Bibliotecas" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1815,12 +1843,12 @@ msgstr "Suas Bibliotecas" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1833,11 +1861,11 @@ msgid "Size" msgstr "Tamanho" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1847,7 +1875,7 @@ msgid "Last Update" msgstr "Última atualização" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1875,10 +1903,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Papel" @@ -1887,8 +1915,8 @@ msgstr "Papel" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Criado em" @@ -1903,7 +1931,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Estado" @@ -1923,7 +1951,7 @@ msgstr "Criado em / Último Login" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Ativo" @@ -1935,7 +1963,7 @@ msgstr "Ativo" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Inativo" @@ -1944,7 +1972,7 @@ msgstr "Inativo" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Vazio" @@ -1962,33 +1990,32 @@ msgstr "Excluir usuário" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Proprietário" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Administrador" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s excluído com sucesso" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Falha ao excluir: o usuário não existe" @@ -2012,6 +2039,7 @@ msgstr "Mensagem" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Hora" @@ -2058,16 +2086,22 @@ msgid "Send a message..." msgstr "Envie uma mensagem..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Anterior" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2084,18 +2118,20 @@ msgstr "Você realmente deseja excluir essa discussão?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Sim" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Não" @@ -2137,57 +2173,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Nova notificação em %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Erro interno" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Um arquivo de nome %(file_name)s foi enviado para %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "O Arquivo chamado %(file_name)s será carregado para biblioteca deletada" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s compartilhou uma biblioteca chamada %(repo_name)s com você." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Você recebeu uma nova mensagem de %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s tem uma nova conversa." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s publicou uma nova conversa em %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s requisitou acesso ao grupo %(group_name)s, menasgem de verificação: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2235,11 +2280,19 @@ msgstr "%(user)s compartilhou uma biblioteca chamado %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Você recebeu uma nova mensagem de %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2247,7 +2300,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "O Arquivo chamado %(file_name)s foi enviado para a sua pasta %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2255,14 +2308,14 @@ msgid "" "message: %(msg)s" msgstr "Usuário %(user)s pediu para se juntar grupo%(grp_name)s, mensagem de verificação: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Vá verificar na seguinte página:" @@ -2292,6 +2345,7 @@ msgid "Delete Notification" msgstr "Excluir notificação" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2299,6 +2353,7 @@ msgstr "Excluir notificação" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Oi, " @@ -2367,14 +2422,17 @@ msgstr "Configurar perfil" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Configuração" @@ -2608,40 +2666,46 @@ msgstr "Chinês Tradicional" msgid "Email is not longer than 512 characters" msgstr "Email não pode ter mais de 512 caracteres" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "A senha não pode ser vazia" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Por favor insira uma senha correta." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Links - Compartilhados" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Baixar Links" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Enviar Links" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Biblioteca" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Visitas" @@ -2652,7 +2716,7 @@ msgstr "Expiração" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2668,7 +2732,7 @@ msgstr "Ver" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2701,7 +2765,7 @@ msgid "Folders - Share" msgstr "Pastas - Compartilhadas" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Pastas" @@ -2712,15 +2776,15 @@ msgstr "Compartilhar com" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Permissão" @@ -2786,175 +2850,211 @@ msgid "" "groups you are in." msgstr "Você pode compartilhar bibliotecas com seus amigos e colegas, clicando no ícone de compartilhamento de suas próprias bibliotecas em sua página inicial ou criar uma nova biblioteca em grupos que você esteja dentro." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Falha ao compartilhar com todos os membros, favor tente novamente." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Compartilhado com todos os membros com sucesso, confira em Compartilhamentos." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Apenas o dono tem permissão para compartilhar." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "Biblioteca não existe" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Argumento invalido" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Argumento não é válido" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Falha ao remover compartilhamento" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "ID do grupo inválido" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Falhou o retirar o compartilhamento: o grupo não existe." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Compartilhamento removido com sucesso" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "Todos os membros" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "O link não existe" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Erro interno no servidor.por favor confira os emails(s) que inseriu" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Por favor, escolha um diretório." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Salvo com sucesso." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "O envio do link de upload compartilhado falhou. O serviço de e-mail não está configurado, por favor contate o administrador." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "Voçê nao tem permissão para criar compartilhar um link" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Argumento inválido" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Biblioteca não existe." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "Diretorio não Existe" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Por favor confira os emails(s) que vôçe inseriu" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Desculpe, mas a página requisitada não pode ser encontrada." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Sair da Administração" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Fechar" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Notificações" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Ver todas as Notificaçõe" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Sair" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Administrador do sistema" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Nós já não suportamos esta versão do IE. Por favor, atualize para a versão 10 ou superior." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Notificações" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Bem vindo ao Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile organiza arquivos em bibliotecas. Cada biblioteca pode ser sincronizada e compartilhada separadamente. Nós criamos uma biblioteca para você. Você pode criar mais bibliotecas depois." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2962,7 +3062,7 @@ msgid "" msgstr "Seafile organiza arquivos em bibliotecas. Cada biblioteca pode ser sincronizada e compartilhada separadamente. Como você é um convidado por enquanto, você não pode criar bibliotecas." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Registre-se" @@ -2992,28 +3092,31 @@ msgid "Please enter the password." msgstr "Por favor informe a senha." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Download" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3022,9 +3125,12 @@ msgstr "" msgid "Current Path:" msgstr "Caminho atual:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Usuário" @@ -3034,11 +3140,16 @@ msgstr "Usuário" msgid "Type" msgstr "Tipo" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Nome do Dispositivo" @@ -3052,6 +3163,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3077,10 +3189,6 @@ msgstr "Rascunho salvo." msgid "is encrypted" msgstr "é criptografado " -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Senha:" - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "A senha será mantida no servidor por apenas 1 hora." @@ -3205,7 +3313,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Padrão" @@ -3230,10 +3338,10 @@ msgid "Password is required." msgstr "A senha é obrigatoria" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Histórico" @@ -3329,85 +3437,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Sobre" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Arquivos" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Pessoal" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Compartilhado" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "Organização" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Todos os grupos" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Habilitar módulos" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Marcado" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Atividades" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Wiki Pessoal" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Dispositivos" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Compartilhar Administrador" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Links" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Pasta de Upload" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Adicionar auto expiração" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Dias" @@ -3425,18 +3538,12 @@ msgid "Shared Libs" msgstr "Bibliotecas Compartilhadas" #: 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 "Novo diretório" - -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Nome do diretório" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "Nova Pasta" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Novo arquivo" @@ -3454,8 +3561,7 @@ msgstr "Formato simples" #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Detalhes" @@ -3519,7 +3625,123 @@ msgstr "Substituir" msgid "Don't replace" msgstr "Não Substituir" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organizações" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Tráfego" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Logs" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Informações do Sistema" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Edição Profissional" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "expira em" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Edição da Cominudade" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Atualizar para Edição Profissional" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Plataforma" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Último Acesso" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Desvincular" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Limpo" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Erro" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Nova biblioteca" @@ -3533,13 +3755,14 @@ msgid "Encrypt" msgstr "Criptografar" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(pelo menos %(repo_password_min_length)s caracteres)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Informe a senha novamente" @@ -3549,34 +3772,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Compartilhar" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Mais operacões" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Renomear" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3599,58 +3822,59 @@ msgid "Folder Permission" msgstr "Permissão da Pasta" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Mover" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Copiar" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Enviar arquivo" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Enviar arquivos" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Nova Pasta" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3658,175 +3882,177 @@ msgstr "" msgid "Trash" msgstr "Lixeira" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Sub-bibliotecas" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Mais operações" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "marcado" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "desmarcar" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "Travado" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Destravar" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Trava" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Busca falhou" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Baixar Link" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Enviar Link" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Compartilhar com usuario" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Compartilhar com grupo" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Adicionar proteção por senha" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Mostrar" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Gerar senha aleatoria" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Gerar" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Link:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Download com Link Direto" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Enviar" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Enviar para:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "E-mails, separados por ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Mensagem (opcional):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Enviando…" -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Você pode compartilhar o link gerado para os outros e, em seguida, eles podem fazer upload de arquivos para este diretório através do link." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Enviar Link:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Grupo" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Permitir compartilhamento" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3837,182 +4063,191 @@ msgstr "Wiki" msgid "Members" msgstr "Membros" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Discussão" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Permissão de Usuario" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Permissão de Grupo" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "ícone" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Desmarcar" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Compartilhado por" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Selecione bibliotecas para compartilhar" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Detalhes de modificação" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Pesquisar arquivos nessa wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Pesquisar arquivos nessa biblioteca" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Pesquisar arquivos" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "Avançado" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "Nenhuma biblioteca está compartilhada com esse grupo" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "admin" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Responder" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Descartar" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Sair do Grupo" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Renomear Grupo para" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Transferir Grupo para" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Manter histórico completo" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Não manter histórico" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Mantenha apenas o período do histórico:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "dias" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Criado por" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Pasta" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Selecione a Pasta" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Antiga senha" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Nova Senha(pelo menos %(repo_password_min_length)s caracteres)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Nova Senha" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Nova senha de novo" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Desvincular" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Ver todas as Notificaçõe" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4029,6 +4264,11 @@ msgstr "Você pode criar uma biblioteca para organizar seus arqquivos. Por exemp msgid "No library is shared to you" msgstr "Não existe bibliotecas compartilhadas com você" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organização" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Adicionar biblioteca" @@ -4075,10 +4315,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Grupo é um lugar para você e seus amigos deixarem mensagens e colaborarem em bibliotecas. Grupos em que você participa estarão listados aqui:" -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Nome do grupo" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4118,14 +4354,6 @@ msgid "" " page, and they will be listed here." msgstr "Você pode marcar arquivos importantes como favorito, clicando no botão \"Marcar\" na página de visualização de arquivo e ele será listado aqui" -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Plataforma" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Último Acesso" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Bibliotecas" @@ -4155,7 +4383,7 @@ msgstr "Para ativar esta conta, por favor, clique no seguinte link nos próximos #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4175,33 +4403,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Não está limpo? Atualize-o." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "E-mail ou senha incorreta" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Lembre me por %(remember_days)s daias " -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Falha ao atualizar o CAPTCHA. por favor tente novamente" -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4242,10 +4470,6 @@ msgstr "" msgid "Current Password" msgstr "Senha Atual" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Nova Senha" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4382,11 +4606,6 @@ msgstr "E-mail não ficar em branco" 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 "Limpo" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Excluir hora" @@ -4408,12 +4627,12 @@ msgid "1 month ago" msgstr "1 mes atrás" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Sucesso" @@ -4643,7 +4862,7 @@ msgid "Please enter password" msgstr "Por favor, informe a senha" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Apagado com sucesso" @@ -4784,6 +5003,15 @@ msgstr "Favoritos" msgid "Successfully unstarred." msgstr "Desmarcado com sucesso." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Novo diretório" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Nome do diretório" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "fechar" @@ -4809,88 +5037,62 @@ msgstr "Carregamento de Arquivo falhou" msgid "Failed to get upload url" msgstr "Falha ao obter a url de upload" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "O arquivo é muito grande" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "O arquivo é muito pequeno" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Tipo de arquivo não suportado" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Número máximo de arquivos excedeu" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Bytes enviados excedem o tamanho do arquivo" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Resultou em um arquivo vazio" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Erro" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "Carregado" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "cancelado" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Iniciar" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "É obrigatório." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organizações" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Tráfego" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Logs" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Criador" @@ -4942,6 +5144,13 @@ msgstr "Deletar Biblioteca" msgid "Files / Size" msgstr "" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Confirme a senha para continuar" @@ -4972,10 +5181,6 @@ msgstr "Informações do Grupo" msgid "No library has shared to this group" msgstr "Nenhuma biblioteca foi compartilhada com esse grupo" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "admin" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4987,30 +5192,6 @@ msgstr "" msgid "Delete Group" msgstr "Excluir grupo" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Informações do Sistema" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Edição Profissional" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "expira em" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Edição da Cominudade" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Atualizar para Edição Profissional" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5174,12 +5355,12 @@ msgid "Max User Number" msgstr "Número máximo de usuários" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "A entrada deve ser um número" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "Insira um numero que seja maior que 0" @@ -5319,7 +5500,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP(imported)" @@ -5332,7 +5513,7 @@ msgid "Admins" msgstr "Administradores" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Ultimo Login" @@ -5358,7 +5539,7 @@ msgstr "Você também pode adicionar um usuário como convidado, que não poder #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Convidado" @@ -5446,6 +5627,12 @@ msgstr "E-mail: %(email)s" msgid "Password: %(password)s" msgstr "Senha: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5523,24 +5710,24 @@ msgstr "para" msgid "Sorry, this user is not registered yet." msgstr "Desculpe, esse usuário não está registrado ainda." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Caminho atual:" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "Atualizar este arquivo" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Voltar ao topo" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "topo" @@ -5636,8 +5823,8 @@ msgstr "Argumentos invalidos" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Permissão negada." @@ -5666,8 +5853,8 @@ msgid "Duplicated filename" msgstr "Nome de arquivo duplicado" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "O arquivo não existe" @@ -5726,11 +5913,11 @@ msgstr "Falha ao remover o compartilhamento \"%s\"." msgid "No revisions found" msgstr "Nenhuma revisão encontrada" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Erro de verificação de bloqueio de arquivo" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "Arquivo bloqueado" @@ -5758,12 +5945,12 @@ msgstr "Revertido com sucesso %(path)s para diretório raí msgid "\"%s\" does not exist." msgstr "\"%s\" não existe." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Erro interno" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Download do diretório \"%s\" foi desabilitado: o tamanho é muito grande." @@ -5773,11 +5960,11 @@ msgstr "Download do diretório \"%s\" foi desabilitado: o tamanho é muito grand msgid "Unable to download \"%s\"" msgstr "Incapaz de baixar \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "\"Wiki Pessoal\" habilitado com sucesso." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "\"Wiki Pessoal\" desabilitado com sucesso." @@ -5794,7 +5981,7 @@ msgid "The group doesn't exist" msgstr "O grupo não existe" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "A biblioteca está criptografada." @@ -5872,262 +6059,266 @@ msgstr "Falha ao obter a lista de bloqueio do arquivo" msgid "Wrong repo id" msgstr "id do repo errado" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Falha" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Token do link de upload invalida" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "id do repo no link upload invalido" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Não há conflito na mesclagem." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Falha ao editar a informação da biblioteca." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Falhou ao salvar as configurações no servidor" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Configurações salvas." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Usuário %s não é válido." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Usário %s não foi encontrado." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "Usuario %s não esta na organização atual" -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "Não é possível transferir biblioteca para organização do usuario %s." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Falha ao mudar senha, voçê não é o dono." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Permisao de pasta invalida , ela dev e ser \"rw\" ou \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "Caminho não começa com \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "Caminho não termina com \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Caminho Inválido" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Usuario invalido,deve ser registrado" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Operação falhou" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Permissão de pasta incorreta" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Por favor adicione permissão a pasta primeiro" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Por favor, verifique o e-mail (s) que você digitou e os contatos que você selecionou" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Grupo Inválido" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "Grupo não existe" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "Erro HTTP: Falha ao abrir arquivo online" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "Erro URL: Falha ao abrir arquivo online" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "A codificação escolhida não é adequada." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Codificação de arquivo desconhecida" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "O tamanho do arquivo supera %s, não pode ser aberto online." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Incapaz de visualizar o arquivo" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Formato de arquivo inválido" -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "Impossivel realizar o download do arquivo, caminho invalido" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "Impossivel realizar o download do arquivo, caminho incorreto" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "Não é possível baixar o arquivo: cota de tráfego do link se esgotou." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "A biblioteca não existe." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "A biblioteca está encriptada." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Incapaz de editar o arquivo" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "O arquivo não existe." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Edição online não oferecido para esse tipo de arquivo." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Não foi possível baixar o arquivo" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Não é possível acessar o arquivo: cota de tráfego do link se esgotou." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "Não foi possível efetuar o download: pasta não existe" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Usuário inválido" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Definição de cota falhou: a cota maxima é %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Definição de cota falhou: erro interno do servidor" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Falha ao excluir: o usuário é um criador de organização" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Trial removido com sucesso para: %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "A permissão de administrador do usuário %s foi revogada com sucesso" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Falha ao revogar a permissão de administrador: o usuário não existe" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Sua conta em %s está ativada" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "A senha foi reconfigurada em %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Reiniciada com sucesso a senha para %(passwd)s, um e-mail foi enviado para %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Reiniciada com sucesso a senha para %(passwd)s, mas falhou ao enviar um e-mail %(user)s, favor verifique sua configuração de e-mail." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Reiniciada com sucesso a senha para %(passwd)s para o usuário %(user)s." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6135,107 +6326,107 @@ msgid "" "configured." msgstr "Reiniciada com sucesso a senha para %(passwd)s, para usuário %(user)s, mas uma notificação de e-mail não pode ser enviada porque o serviço de e-mail não esta configurado corretamente." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Redefinição da senha falhou: usuário não existe." -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Você foi convidado para entrar %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Falha ao adicionar usuário %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "O usuário %s foi adicionado com sucesso. Um e-mail de notificação foi enviado." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "O usuário %s foi adicionado com sucesso. Um erro ocorreu ao enviar um e-mail de notificação, favor verifique sua configuração de e-mail." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "Usuário %s adicionado com sucesso." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "O usuário %s foi adicionado com sucesso mas uma notificação de e-mail não pode ser enviada, porque \" \"o serviço de e-mail não está configurado propriamente." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Erro ao renomear organização" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Falha ao transferir, argumentos inválidos" -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Falha ao transferir, usuário %s não encontrado" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "Não é possível transferir biblioteca da organização " -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "Não é possível transferir biblioteca para organização do usuario %s." -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Transferido com sucesso." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "A biblioteca do sistema não pode ser deletada." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s foi definido como administrador com sucesso" -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Falha ao definir %s como administrador: usuário não existe" -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Importação efetuada com sucesso" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Por favor selecione o arquivo csv primeiro" -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "" diff --git a/locale/pt_BR/LC_MESSAGES/djangojs.po b/locale/pt_BR/LC_MESSAGES/djangojs.po index a3866e02ac..11a946cc8e 100644 --- a/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/haiwen/seahub/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Agora mesmo" @@ -31,19 +31,19 @@ msgstr "Agora mesmo" msgid "Name is required" msgstr "Nome requerido" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Por favor insira a senha" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Por favor insira a senha novamente" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Senha muito curta" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Senhas não coincidem" @@ -59,6 +59,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Por favor " + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -88,35 +113,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Falha. Por favor, verifique a rede." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -146,12 +176,12 @@ msgstr "Falhou" #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Cancelados" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Caminho de destino inválido" @@ -204,8 +234,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -221,39 +251,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Erro de Permissão" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Por favor " - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "" @@ -262,7 +273,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -270,150 +281,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Fechar(Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Carregando..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Voltar (Seta para a esquerda)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Proximo (Seta para a direita)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% do %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "A imagem não pode ser carregada." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Abrir Nova Aba" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Senha obrigatoria" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Obrigatorio" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Há apenas uma extensão aqui, por favor, insira um nome." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Processando..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "%(name)s. Deletado com sucesso " -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "Deletado com sucesso %(name)s." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Excluída com êxito% (name)s e %(amount) s outros itens." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Falha ao deletar %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Falha ao deletar %(name)s e 1 outro items" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Falha ao deletar %(name)s e %(amount)s outros items." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Deletar items" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Tem certeza que deseja deletar os items selecionados?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "Movidos com sucesso %(name)s." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "%(name)s e 1 outro item.copiados com sucesso" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "%(name)s e %(amount)s outros items.copiados com sucesso" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr " %(name)s. copiados com sucesso" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "%(name)s copiado com sucesso e 1 outro items" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "%(name)s and %(amount)s outros items.copiados com sucesso" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Erro interno. Falha ao mover %(name)s e %(amount)s outros item(s)." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Erro interno. Falha ao mover %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Erro intero. Falha ao copiar %(name)s e %(amount)s outros item(s)." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Erro interno. Falha ao copiar %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Movendo %(index) arquivos de %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Copiando %(index) arquivos de %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Falha ao mover %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Falha ao copiar %(name)s" @@ -453,10 +464,10 @@ msgstr "Resultado do carregamento de arquivos vazio" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -500,19 +511,19 @@ msgstr "Carregamento de Arquivo cancelado" msgid "File Upload failed" msgstr "Carregamento de Arquivo falhou" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Falha ao obter o URL de envio" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Falha ao obter o URL de atualização" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Substituir arquivo {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Arquivo está bloqueado" @@ -521,7 +532,7 @@ msgid "Set {placeholder}'s permission" msgstr "Setar {placeholder}'s permissão" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Selecionar grupos" @@ -542,32 +553,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "{placeholder} desmarcado com sucesso" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -579,11 +596,11 @@ msgstr "Realmente deseja deletar {lib_name}?" msgid "Delete succeeded." msgstr "Deleção Efetuada" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -591,35 +608,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "Compartilhar {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Esconder" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Mostrar" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Por favor insira os dias" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Por favor insira dias validos" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Por favor, insira pelo menos um e-mail." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Enviado com sucesso para {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Falha ao enviar para {placeholder}" @@ -631,22 +649,26 @@ msgstr "Sucesso" msgid "Successfully unstared {placeholder}" msgstr "{placeholder} desmarcado com sucesso" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/pt_PT/LC_MESSAGES/djangojs.po b/locale/pt_PT/LC_MESSAGES/djangojs.po index 8ec766ac7a..5ce1642fc3 100644 --- a/locale/pt_PT/LC_MESSAGES/djangojs.po +++ b/locale/pt_PT/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/haiwen/seahub/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/ru/LC_MESSAGES/django.po b/locale/ru/LC_MESSAGES/django.po index b36cb918b3..010e1e2e34 100644 --- a/locale/ru/LC_MESSAGES/django.po +++ b/locale/ru/LC_MESSAGES/django.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:51+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 14:54+0000\n" "Last-Translator: Vladimir \n" "Language-Team: Russian (http://www.transifex.com/haiwen/seahub/language/ru/)\n" "MIME-Version: 1.0\n" @@ -33,14 +33,15 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "Пользователь %s уже участник группы." -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "Пользователь %s не найден в сообществе." @@ -67,8 +68,8 @@ msgstr "Неверный пароль" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Внутренняя ошибка сервера" @@ -78,34 +79,34 @@ msgstr "Ошибка расшифровки библиотеки" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Отправка ссылки общего доступа не удалось. Услуги электронной почты не настроены должным образом. Пожалуйста, свяжитесь с администрацией." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "файл" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Пользователь поделился с вами файлом на %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "каталог" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Пользователь поделился с вами каталогом на %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Вам доступна ссылка для загрузки на %s" @@ -114,14 +115,15 @@ msgstr "Вам доступна ссылка для загрузки на %s" msgid "Password is too short." msgstr "Пароль слишком короткий." -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Пароль слишком короткий" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Совместный файл сообщества" @@ -157,7 +159,7 @@ msgid "No activity now or the function is not supported." msgstr "Не активно сейчас или функция не поддерживается" #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Библиотека создана" @@ -172,7 +174,8 @@ msgstr "Библиотека %(library_name)s удалена" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -180,8 +183,8 @@ msgstr "Библиотека %(library_name)s удалена" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -197,7 +200,7 @@ msgstr "Не удалось. Пожалуйста, проверьте сеть." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -223,13 +226,16 @@ msgstr "Ключевые даты" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -257,10 +263,11 @@ msgid "Email or Username" msgstr "Email или Логин" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -320,7 +327,7 @@ msgid "New password confirmation" msgstr "Подтверждение нового пароля" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Пароли не совпадают." @@ -332,7 +339,7 @@ msgstr "Старый пароль" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Ваш старый пароль был введен неправильно. Пожалуйста, введите его снова." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Пароль (еще раз)" @@ -341,15 +348,19 @@ msgstr "Пароль (еще раз)" msgid "Enter a valid e-mail address." msgstr "Введите действительный адрес электронной почты." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "Этот аккаунт был заблокирован из-за слишком большого числа неудачных попыток входа." + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Выйти" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Невозможно отправить сообщение. Пожалуйста, обратитесь к администратору." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Не удалось изменить пароль. Обратитесь к администратору службы LDAP." @@ -436,6 +447,7 @@ msgstr "Текущий аватар: " #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -447,24 +459,24 @@ msgstr "Текущий аватар: " #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -525,43 +537,48 @@ msgstr "Ваш аватар успешно загружен." msgid "Successfully deleted the requested avatars." msgstr "Аватар успешно удален." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "Аккаунт %(account)s на %(site)s заблокирован." + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Email адрес" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Имя пользователя" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Это значение должно иметь длину 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Введите действительный адрес электронной почты." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Пользователь с таким email уже существует" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Неверный идентификатор пользователя" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "имя" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "отдел" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "телефон" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "описание" @@ -630,7 +647,7 @@ msgid "Recovered deleted directory" msgstr "Восстановлено удаленных файлов" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Изменено название или описание библиотеки" @@ -686,22 +703,22 @@ msgstr[3] "%(seconds)d секунд назад" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -714,21 +731,21 @@ msgstr "Чтение-запись" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -802,15 +819,16 @@ msgstr "Email " #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -838,7 +856,7 @@ msgstr "Email " #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Имя" @@ -883,11 +901,11 @@ msgstr "Операции" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -908,21 +926,21 @@ msgstr "Редактировать" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -954,8 +972,9 @@ msgstr "Добавьте контакты, чтобы вы могли быстр #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -965,8 +984,8 @@ msgstr "Добавьте контакты, чтобы вы могли быстр #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Email" @@ -1064,17 +1083,17 @@ msgstr "Слишком длинное описание (максимум 100 с msgid "Name %s is not valid" msgstr "Имя %s недействительно" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Пропущен аргумент" @@ -1136,7 +1155,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:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Группа не существует" @@ -1286,16 +1305,16 @@ msgstr "Пожалуйста, нажмите для выбора библиот #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1372,21 +1391,21 @@ msgstr "Необходимо имя." msgid "Description is required." msgstr "Необходимо описание." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Доступ запрещен" @@ -1739,11 +1758,14 @@ msgstr "Выход" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Пользователи" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1751,9 +1773,11 @@ msgstr "Инфо" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1764,12 +1788,16 @@ msgid "Libraries" msgstr "Библиотеки" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1829,12 +1857,12 @@ msgstr "Свои библиотеки" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1847,11 +1875,11 @@ msgid "Size" msgstr "Размер" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1861,7 +1889,7 @@ msgid "Last Update" msgstr "Последнее обновление" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1889,10 +1917,10 @@ msgid "This user has not created any libraries" msgstr "Пользователь не создал ни одной библиотеки" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Роль" @@ -1901,8 +1929,8 @@ msgstr "Роль" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Создать как" @@ -1917,7 +1945,7 @@ msgstr "Пользователь не создал или не присоеди #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Статус" @@ -1937,7 +1965,7 @@ msgstr "Создано / Последний вход" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Активный" @@ -1949,7 +1977,7 @@ msgstr "Активный" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Не активный" @@ -1958,7 +1986,7 @@ msgstr "Не активный" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Пусто" @@ -1976,33 +2004,32 @@ msgstr "Удалить пользователя" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Владелец" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Администратор" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Участник" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "Успешно удалено %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Не удалось удалить: Пользователь не существует" @@ -2026,6 +2053,7 @@ msgstr "Сообщение" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Время" @@ -2072,16 +2100,22 @@ msgid "Send a message..." msgstr "Отправить сообщение ..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Предыдущий" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2098,18 +2132,20 @@ msgstr "Вы действительно хотите удалить это об #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Да" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Нет" @@ -2151,57 +2187,66 @@ msgid "Virus detected on %s" msgstr "Обнаружен вирус в %s" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Новое уведомление в %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Внутренняя ошибка" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Файл с именем %(file_name)s был загружен в %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Файл с именем %(file_name)s был загружен в Удаленная библиотека" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s поделился с вами библиотекой %(repo_name)s." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "%(user)s поделился библиотекой %(repo_name)s в группе %(group_name)s." + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Вы получили новое сообщение от %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s появилось новое обсуждение." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s открыл новое обсуждение в %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s запросил присоединение к группе %(group_name)s, сообщение: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2251,11 +2296,19 @@ msgstr "%(user)s поделился с вами библиотекой %(lib_name)s to %(group_name)s." +msgstr "%(user)s поделился библиотекой %(lib_name)s в %(group_name)s." + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Вы получили новое сообщение от %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2263,7 +2316,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "Файл с именем %(file_name)s загружен в вашу папку %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2271,14 +2324,14 @@ msgid "" "message: %(msg)s" msgstr "Пользователь %(user)s просит включить его в группу %(grp_name)s, сообщение: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "Пользователь %(user)s добавил вас в группу %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Проследуйте для оплаты на:" @@ -2308,6 +2361,7 @@ msgid "Delete Notification" msgstr "Удалить Уведомление" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2315,6 +2369,7 @@ msgstr "Удалить Уведомление" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Здравствуйте," @@ -2383,14 +2438,17 @@ msgstr "Настройки профиля" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Настройки" @@ -2624,40 +2682,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "Email не длиннее 512 символов" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "Пароль не может быть пустым" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Пожалуйста, введите правильный пароль." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "Ваш код: %(code)s. Этот код будет действителен в течение одного часа." + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Ссылки - Общий доступ" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Ссылки для скачивания" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Ссылки для загрузки" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 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/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Посещения" @@ -2668,7 +2732,7 @@ msgstr "Истечение" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2684,7 +2748,7 @@ msgstr "Просмотр" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2717,7 +2781,7 @@ msgid "Folders - Share" msgstr "Общие папки" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Папки" @@ -2728,15 +2792,15 @@ msgstr "Общий доступ для" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Доступ" @@ -2802,175 +2866,211 @@ msgid "" "groups you are in." msgstr "Вы можете поделиться библиотеками с вашими друзьями и коллегами, нажав кнопку общего доступа в собственных библиотеках на вашей домашней странице или при создании новой библиотеки." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "Подтверждение адреса электронной почты" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "Пожалуйста, укажите свой адрес электронной почты, чтобы продолжить." + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "Получить код" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "Проверочный код" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "Проверочный код был отправлен на адрес электронной почты." + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Невозможно открыть общий доступ для всех участников. Повторите попытку позже." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Успешно предоставлен общий доступ для всех участников, для проверки перейдите к доступу." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Только владелец библиотеки имеет право дать общий доступ к ней." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "Библиотека не существует" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Недопустимые аргументы" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Аргумент недействителен" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Не удалось удалить общий доступ" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "идентификатор группы не является действительным" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Не удалось запретить общий доступ: группа не существует." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Общий доступ успешно закрыт" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "все участники" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Группа не существует" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Внутренняя ошибка сервера, или неправильно введены email адреса" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Пожалуйста, выберите папку." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Успешно добавлен." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "Отправка ссылки общего доступа не удалось. Служба электронной почты не настроена должным образом. Пожалуйста, свяжитесь с администратором." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "У вас нет прав для создания общедоступной ссылки" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Недопустимые аргументы" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Библиотека не существует" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "Каталог не существует" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Пожалуйста, проверьте введенные email адреса" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "Email адрес недействителен" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "Ссылка не найдена" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "Проверочный код для посещения ссылок" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "Не удалось отправить проверочный код, пожалуйста, попробуйте позже." + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Извините, но запрошенная страница не может быть найдена." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Выйти из консоли Администратора" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Закрыть" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: 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:71 -msgid "See All Notifications" -msgstr "Показать все уведомления" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "Просмотр профиля и другое" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Выход" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Управление системой" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Мы больше не поддерживаем эту версию Internet Explorer. Пожалуйста, обновите ваш браузер до версии 10 или выше." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Уведомления" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Приветствуем в системе Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile организует хранение ваших файлов в библиотеках. Каждая библиотека может быть автоматически синхронизирована или отдана в общее пользование отдельно. Мы уже создали личную библиотеку для вашего пользования. В последствии вы можете создавать любое количество библиотек для работы с ними. " -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2978,7 +3078,7 @@ msgid "" msgstr "Seafile организует хранение ваших файлов в библиотеках. Каждая библиотека может быть автоматически синхронизирована или отдана в общее пользование отдельно. Вы работаете в системе в качестве гостевого пользователя и не можете создавать библиотеки." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Регистрация" @@ -3008,28 +3108,31 @@ msgid "Please enter the password." msgstr "Пожалуйста введите пароль" #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: 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:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Журнал доступа" @@ -3038,9 +3141,12 @@ msgstr "Журнал доступа" msgid "Current Path:" msgstr " " -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Пользователь" @@ -3050,11 +3156,16 @@ msgstr "Пользователь" msgid "Type" msgstr "Тип" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Имя устройства" @@ -3068,6 +3179,7 @@ msgstr "Анонимный пользователь" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3093,10 +3205,6 @@ msgstr "Черновик сохранен." 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 "Пароль будет храниться на сервере в течение 1 часа." @@ -3221,7 +3329,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "По умолчанию" @@ -3246,10 +3354,10 @@ msgid "Password is required." msgstr "Требуется пароль." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "История" @@ -3345,85 +3453,90 @@ msgstr "Seafile" msgid "About Us" msgstr "О проекте" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Файлы" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Мои" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Доступные" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" msgstr "Сообщество" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Все группы" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "Инструменты" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Включить Модули" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Отмеченные" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Активность" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Персональная Wiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Устройства" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Предоставленные ресурсы" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Ссылки" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Загрузить папку" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Добавить авто истечение срока действия" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Дней" @@ -3441,18 +3554,12 @@ msgid "Shared Libs" msgstr "Общедоступные библиотеки" #: 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/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Имя каталога" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "Новая папка" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Новый файл" @@ -3470,8 +3577,7 @@ msgstr "формат простой разметки." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Детали" @@ -3535,7 +3641,123 @@ msgstr "Заменить" msgid "Don't replace" msgstr "Не заменять" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Сообщества" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "Учреждения" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Трафик" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Журналы" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Антивирус" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Информация о системе" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Professional Edition" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "истекает" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Community Edition" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Обновить до Pro версии" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Ограничения" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "Настольный" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "Мобильный" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "Ошибки" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Платформа" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "Версия" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Последний доступ" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "Нет подключенных устройств" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Удаление" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Очистить" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "Устройство" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Ошибка" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "Нет ошибок синхронизации" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Новая библиотека" @@ -3549,13 +3771,14 @@ msgid "Encrypt" msgstr "Шифровать" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(не менее %(repo_password_min_length)s символов)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Подтвердите пароль" @@ -3565,34 +3788,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Повреждено (пожалуйста, обратитесь к администратору, чтобы исправить эту библиотеку)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Общий доступ" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Больше операций" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Переименовать" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3615,58 +3838,59 @@ msgid "Folder Permission" msgstr "Разрешения папки" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Переместить" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Копировать" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Загрузить" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Загрузить файлы" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Новая папка" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Список" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "список" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Сетка" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "сетка" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3674,175 +3898,177 @@ msgstr "сетка" msgid "Trash" msgstr "Корзина" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Суб-библиотеки" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "Действия" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Больше операций" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Открыть с помощью клиента" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "Отметить" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "Снять отметку" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "заблокирован" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Разблокировать" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Заблокировать" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Ошибка извлечения" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Ссылка для скачивания" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Ссылка для загрузки" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Общий доступ для пользователя" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Общий доступ для группы" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Защитить паролем" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(не менее %(share_link_password_min_length)s символов)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Показать" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Сгенерировать пароль" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Создать" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Ссылка: " -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Прямая ссылка для скачивания:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Отправить" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Отправить: " -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Email(ы), разделенные ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Сообщение (необязательно):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Отправка ..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 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:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Ссылка для загрузки: " -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Группа" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Покинуть общий ресурс" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3853,182 +4079,191 @@ msgstr "Wiki" msgid "Members" msgstr "Участники" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Обсуждение" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Разрешения пользователя" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Разрешения группы" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "значок" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Снять отметку" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "Тип библиотеки" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Доступно для" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Выберите библиотеки, общий доступ к которым вы хотите предоставить" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Удаленная библиотека" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Подробности изменения" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Поиск файлов в wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Поиск файлов в библиотеке" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Поиск файлов" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "расширенный" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "Ни одна библиотека не была предоставлена этой группе в общий доступ" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "владелец" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "admin" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Ответ" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "Добавить Wiki" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "Удалить Wiki" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Импорт участников" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "Управление участниками" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Удалить" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Покинуть группу" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Переименовать группу в" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Передать группу к" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Импорт участников группы из CSV файла" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Формат файла: user@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "Добавить" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "Настройка истории библиотеки отключена администратором" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Сохранять полную историю" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Не сохранять историю" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Сохранить только период истории: " -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "дней" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Создано" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Папка" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Выберите папку" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Старый пароль" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Новый пароль (не менее %(repo_password_min_length)s символов)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Новый пароль" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Новый пароль снова" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Удаление" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Показать все уведомления" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4045,6 +4280,11 @@ msgstr "Вы можете создавать библиотеки для орг msgid "No library is shared to you" msgstr "Ни одна библиотека не предоставлена вам в доступ" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Сообщество" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Добавить библиотеку" @@ -4091,10 +4331,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Группа - это место общения для вас и ваших друзей. В ней вы можете оставлять сообщения и совместно использовать библиотеки. Здесь перечислены группы, в которых вы состоите." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Имя группы" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4134,14 +4370,6 @@ msgid "" " page, and they will be listed here." msgstr "Можно отметить важные файлы, нажав кнопку \"Отметить\" на странице просмотра, и они будут здесь отображаться." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Платформа" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Последний доступ" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Библиотеки" @@ -4171,7 +4399,7 @@ msgstr "Для активации аккаунта перейдите по сс #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4191,33 +4419,33 @@ msgstr "Введите код с картинки" msgid "Not clear? Refresh it." msgstr "Неразборчиво? Обновите." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Неправильный email или пароль" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Запомнить меня на %(remember_days)s дней" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Речевой пароль" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Не удалось обновить картинку, попробуйте позже." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "Email или логин не может быть пустым" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4258,10 +4486,6 @@ msgstr "Пожалуйста, обновите свой пароль, прежд msgid "Current Password" msgstr "Текущий пароль" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Новый пароль" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4398,11 +4622,6 @@ msgstr "Email не может быть пустым" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Корзина" -#: 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 "Удалить время" @@ -4424,12 +4643,12 @@ msgid "1 month ago" msgstr "1 месяц назад" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Успех" @@ -4659,7 +4878,7 @@ msgid "Please enter password" msgstr "Пожалуйста введите пароль" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Успешно удалено." @@ -4800,6 +5019,15 @@ msgstr "Пометки" msgid "Successfully unstarred." msgstr "Отметка снята." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Новый каталог" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Имя каталога" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "закрыть" @@ -4825,88 +5053,62 @@ msgstr "Не удалось загрузить файл" msgid "Failed to get upload url" msgstr "Не удалось получить url загрузки" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Имя файла слишком длинное" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Имя файла слишком длинное" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Запрещенный тип файлов" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: 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/sysadmin/admin_repo_view.html:290 #: 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/sysadmin/admin_repo_view.html:291 #: 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/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "загружено" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "отменено" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Начать" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Это обязательно." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Сообщества" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "Учреждения" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Трафик" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Журналы" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Антивирус" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Создатель " @@ -4958,6 +5160,13 @@ msgstr "Удалить библиотеку" msgid "Files / Size" msgstr "Файлы / Размер" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "Примечание: Настройки через веб-интерфейс сохраняются в таблице базы данных (seahub-db/constance_config). Они имеют более высокий приоритет, чем настройки в файлах конфигурации." + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Подтвердите пароль, чтобы продолжить" @@ -4988,10 +5197,6 @@ msgstr "Информация о группе" msgid "No library has shared to this group" msgstr "Ни одна библиотека не была предоставлена этой группе в общий доступ" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "admin" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -5003,30 +5208,6 @@ msgstr "Экспорт в Excel" msgid "Delete Group" msgstr "Удалить группу" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Информация о системе" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Professional Edition" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "истекает" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Community Edition" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Обновить до Pro версии" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Ограничения" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "Все учреждения" @@ -5190,12 +5371,12 @@ msgid "Max User Number" msgstr "Максимальное количество пользователей" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Нужно указать число" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "Нужно указать положительное число" @@ -5335,7 +5516,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP(импортировано)" @@ -5348,7 +5529,7 @@ msgid "Admins" msgstr "Администраторы" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Последний вход" @@ -5374,7 +5555,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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Гость" @@ -5462,6 +5643,12 @@ msgstr "Email: %(email)s" msgid "Password: %(password)s" msgstr "Пароль: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "Аккаунт %(user)s заблокирован из-за слишком большого числа неудачных попыток входа. Проверить можно здесь::" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5539,24 +5726,24 @@ msgstr "для" msgid "Sorry, this user is not registered yet." msgstr "К сожалению, этот пользователь не зарегистрирован." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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_base.html:46 #: 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 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Вернуться к началу" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "вверх" @@ -5652,8 +5839,8 @@ msgstr "Недопустимые аргументы" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Доступ запрещен" @@ -5682,8 +5869,8 @@ msgid "Duplicated filename" msgstr "Дубликат файла" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Файл не существует" @@ -5742,11 +5929,11 @@ msgstr "Запрещение совместного использования \ msgid "No revisions found" msgstr "Изменений не найдено" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Проверить ошибку блокировки файла" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "Файл заблокирован" @@ -5774,12 +5961,12 @@ msgstr "Успешно возвращено %(path)s в ос msgid "\"%s\" does not exist." msgstr "\"%s\" не существует." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Внутренняя ошибка" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Не удается загрузить каталог \"%s\": размер слишком велик." @@ -5789,11 +5976,11 @@ msgstr "Не удается загрузить каталог \"%s\": разме msgid "Unable to download \"%s\"" msgstr "Не удается загрузить \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "Модуль \"Личной Wiki\" включен." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "Модуль \"Личной Wiki\" выключен." @@ -5810,7 +5997,7 @@ msgid "The group doesn't exist" msgstr "Группа не существует" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Библиотека зашифрована." @@ -5888,262 +6075,266 @@ msgstr "Невозможно получить список блокировки msgid "Wrong repo id" msgstr "Неверный repo id" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Не удалось" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Плохой токен ссылки загрузки." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Плохой repo id в ссылке загрузки." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Нет конфликта при слиянии." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Не удалось изменить информацию о библиотеке." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Не удалось сохранить настройки на сервере" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Настройки сохранены." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Имя %s недействительно." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Пользователь %s не найден." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "Пользователь %s не в текущем сообществе." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "Невозможно передать библиотеку сообществу пользователя %s." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Не удалось изменить пароль, вы не владелец." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Неверные права папки, должно быть \"rw\" или \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "Путь должен начинаться с \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "Путь не должен заканчиваться на \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Недопустимый путь" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Неверный пользователь, должен быть зарегистрирован" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Ошибка операции" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Неправильные права папки" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Пожалуйста, сначала добавьте права папки" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Пожалуйста, проверьте email адреса и контакты, которые вы выбрали" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Неверная группа" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "Группа не найдена" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Не удалось, файл слишком большой" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTP ошибка: файл не может быть открыт онлайн." -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URL ошибка: файл не может быть открыт онлайн." -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "Выбранный режим кодирования не является правильным." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Неизвестная кодировка файла." -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "Размер файла превышает %s, и не может быть открыт в онлайн режиме." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "Библиотека зашифрована, не может быть открыта онлайн." -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Не удается посмотреть файл" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Неверный формат файла." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "Невозможно скачать файл, неверный путь" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "Невозможно скачать файл, неправильный путь" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "Невозможно скачать файл, трафик по ссылке превышен." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "Невозможно просмотреть исходный файл, трафик по ссылке превышен." + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "Библиотека не существует." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "Библиотека зашифрована." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Невозможно отредактировать файл." -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Файл не существует." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Редактирование онлайн не предполагается для этого типа файлов." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Не удается скачать файл" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Доступ к файлу невозможен, трафик по ссылке превышен." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "Не удается скачать: папка не найдена." -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "Не удается посмотреть библиотеку" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "Не удается просмотреть библиотеку, неправильный путь к папке." -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Неверное имя пользователя" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "Не удалось экспортировать в Excel" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Невозможно задать квоту: максимальная квота %d МБ" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Невозможно задать квоту: внутренняя ошибка сервера" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Невозможно удалить: пользователь - создатель сообщества" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Успешно удалена пробная версия для: %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Права администратора %s успешно отозваны" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Не удалось отозвать администратора: Пользователь не существует" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Аккаунт на %s активирован" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "Пароль на %s был сброшен" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Пароль успешно изменен на %(passwd)s, сообщение было отправлено %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Пароль успешно изменен на %(passwd)s, но сообщение не было отправлено %(user)s, пожалуйста, проверьте настройки электронной почты." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Пароль успешно изменен на %(passwd)s для пользователя %(user)s." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6151,107 +6342,107 @@ msgid "" "configured." msgstr "Пароль успешно изменен на %(passwd)s для пользователя %(user)s. Но сообщение не было отправлено, потому что не правильно сконфигурирована почтовая служба." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Не удалось изменить пароль: пользователь не существует." -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Вы приглашены присоединиться к %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Неудачная попытка добавить пользователя %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "Успешно добавлен пользователь %s. Уведомление было отправлено по электронной почте." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "Успешно добавлен пользователь %s. Но произошла ошибка при отправке уведомления, пожалуйста, проверьте настройки электронной почты." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "Успешно добавлен пользователь %s." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "Успешно добавлен пользователь %s. Но сообщение не было отправлено, потому что не правильно сконфигурирована почтовая служба." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Не удалось переименовать сообщество" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Успешно удалено." -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Ошибка передачи, неверные параметры." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Невозможно отправить, пользователь %s не найден." -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "Невозможно перенести библиотеку сообщества" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "Невозможно перенести библиотеку к сообществу пользователя %s" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Успешно передана." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "Системная библиотека не может быть удалена." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Не удалось удалить, пожалуйста, попробуйте позже." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s установлен как администратор." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Не удалось установить %s как администратора: пользователь не существует." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Импорт завершен" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Пожалуйста, сначала выберите CSV файл." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Неправильная настройка" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Неправильное значение" diff --git a/locale/ru/LC_MESSAGES/djangojs.po b/locale/ru/LC_MESSAGES/djangojs.po index 5ff24a2950..9a2e0a43f7 100644 --- a/locale/ru/LC_MESSAGES/djangojs.po +++ b/locale/ru/LC_MESSAGES/djangojs.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:55+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 13:19+0000\n" "Last-Translator: Vladimir \n" "Language-Team: Russian (http://www.transifex.com/haiwen/seahub/language/ru/)\n" "MIME-Version: 1.0\n" @@ -20,12 +20,12 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Прямо сейчас" @@ -33,19 +33,19 @@ msgstr "Прямо сейчас" msgid "Name is required" msgstr "Имя обязательно" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Пожалуйста, введите пароль" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Пожалуйста, введите пароль еще раз" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Пароль слишком короткий" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Пароли не совпадают" @@ -61,6 +61,31 @@ msgstr "Чтение и запись библиотеки" msgid "Read-Only library" msgstr "Только чтение библиотеки" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Пожалуйста, проверьте сеть." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Новые файлы" @@ -90,35 +115,40 @@ msgstr "Удаленные каталоги" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Не удалось. Пожалуйста, проверьте сеть." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "Успешно удалено %(name)s." @@ -148,12 +178,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Отменено." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Путь назначения указан неверно" @@ -206,8 +236,8 @@ msgid "{placeholder} Folder Permission" msgstr "{placeholder} Разрешения папки" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "Искать пользователя или ввести email адрес, и нажать Enter" @@ -223,39 +253,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "Нажмите для выбора каталога." @@ -264,7 +275,7 @@ msgstr "Нажмите для выбора каталога." msgid "{placeholder} History Setting" msgstr "{placeholder} Настройка истории" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "Успешно установлена история библиотеки." @@ -272,150 +283,150 @@ msgstr "Успешно установлена история библиотек msgid "{placeholder} Share Links" msgstr "{placeholder} Общедоступные ссылки" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Закрыть (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Загрузка..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Назад (←)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Вперед (→)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% из %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "Изображение не было загружено." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Открыть в новой вкладке" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Требуется пароль." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Обязательное." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Здесь только расширение, пожалуйста, введите название." -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Обработка ..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Успешно удалено %(name)s." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "Успешно перемещено %(name)s и еще 1 объект." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Успешно удалено %(name)s и еще %(amount)s других объектов." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Не удалось удалить %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Не удалось удалить %(name)s и еще 1 объект." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Не удалось удалить %(name)s и еще %(amount)s других объектов." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Удаление элементов" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Вы уверены, что хотите удалить выбранные элементы?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Переместить выбранные элемент(ы) в:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Скопировать выбранные элемент(ы) в:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "Успешно перемещено %(name)s." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "Успешно перемещено %(name)s и еще 1 объект." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "Успешно перемещено %(name)s и еще %(amount)s других объектов." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "Успешно скопировано %(name)s." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "Успешно скопировано %(name)s и еще 1 объект." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "Успешно скопировано %(name)s и еще %(amount)s других объектов." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Внутренняя ошибка. Не удалось переместить %(name)s и еще %(amount)s других объектов." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Внутренняя ошибка. Не удалось переместить %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Внутренняя ошибка. Не удалось скопировать %(name)s и еще %(amount)s других объектов." -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Внутренняя ошибка. Не удалось скопировать %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Перемещается файл %(index)s из %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Копируется файл %(index)s из %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Не удалось переместить %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Не удалось скопировать %(name)s" @@ -455,10 +466,10 @@ msgstr "Результат загрузки пустого файла" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -502,19 +513,19 @@ msgstr "Загрузка файла отменена" msgid "File Upload failed" msgstr "Не удалось загрузить файл" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Не удалось получить ссылку для загрузки" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Не удалось получить ссылку для загрузки" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Заменить файл {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Файл заблокирован" @@ -523,7 +534,7 @@ msgid "Set {placeholder}'s permission" msgstr "Установить права доступа к {placeholder}" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Выберите группу" @@ -544,32 +555,38 @@ msgstr "{placeholder} Участники" msgid "Successfully unshared {placeholder}" msgstr "Успешно закрыт доступ к {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "Вы не можете выбрать больше вариантов" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "Успешно перемещены в группу. Теперь вы нормальный член группы." + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "Пожалуйста, выберите CSV файл" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "Успешно импортировано." -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "Удалить группу" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "Вы действительно хотите удалить эту группу?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "Выйти из группы" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "Вы уверены, что хотите выйти из группы?" @@ -581,11 +598,11 @@ msgstr "Действительно хотите удалить {lib_name}?" msgid "Delete succeeded." msgstr "Успешно удалено." -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "Смена владельца {library_name} на" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "Библиотека успешно передана." @@ -593,35 +610,36 @@ msgstr "Библиотека успешно передана." msgid "Share {placeholder}" msgstr "Открыть общий доступ к {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Истекло" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Скрыть" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Показать" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Пожалуйста, введите дни." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Пожалуйста, введите корректные дни" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Пожалуйста, введите по крайней мере, email." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Успешно отправлено в {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Ошибка отправки в {placeholder}" @@ -633,22 +651,26 @@ msgstr "Успешно" msgid "Successfully unstared {placeholder}" msgstr "Отметка снята с {placeholder}" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "Искать пользователей или ввести email адреса, и нажать Enter" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Пожалуйста, введите 1 или более символов" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Нет совпадений" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Поиск..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Не удалось загрузить" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "Успешно очищены все ошибки." diff --git a/locale/sk_SK/LC_MESSAGES/djangojs.po b/locale/sk_SK/LC_MESSAGES/djangojs.po index 4ee9079b5a..4fd8b13ddc 100644 --- a/locale/sk_SK/LC_MESSAGES/djangojs.po +++ b/locale/sk_SK/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/haiwen/seahub/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/sl_SI/LC_MESSAGES/djangojs.po b/locale/sl_SI/LC_MESSAGES/djangojs.po index 7cb6c38631..8b80bba1c0 100644 --- a/locale/sl_SI/LC_MESSAGES/djangojs.po +++ b/locale/sl_SI/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/haiwen/seahub/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Ravnokar" @@ -30,19 +30,19 @@ msgstr "Ravnokar" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Prosimo, preverite povezavo." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Neuspešno. Prosimo, preverite povezavo." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ msgstr "Neuspešno." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Prosimo, preverite povezavo." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Zapri (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Prejšnji (Leva puščica)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Naprej (Desna puščica)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Odpri v novem zavihku" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "Nalaganje datoteke preklicano" msgid "File Upload failed" msgstr "Nalaganje datoteke ni uspelo" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Datoteka je zaklenjena" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Izberi skupine" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Skrij" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Prikaži" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Prosimo, vnesite veljavno število dni" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Uspešno poslano {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Neuspešno poslano {placeholder}" @@ -630,22 +648,26 @@ msgstr "Uspeh" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Prosimo, vpiši 1 ali več znakov" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Ni zadetkov" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Iskanje..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Neuspešno nalaganje" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/sv/LC_MESSAGES/django.po b/locale/sv/LC_MESSAGES/django.po index fd2e7cd9e8..564b93d830 100644 --- a/locale/sv/LC_MESSAGES/django.po +++ b/locale/sv/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Swedish (http://www.transifex.com/haiwen/seahub/language/sv/)\n" "MIME-Version: 1.0\n" @@ -20,14 +20,15 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -54,8 +55,8 @@ msgstr "Fel lösenord" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Internt serverfel" @@ -65,34 +66,34 @@ msgstr "Avkrypteringsfel" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Misslyckades att dela länk. Email-service är inte korrekt konfigurerd, vänligen kontakta en administratör." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "fil" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "En fil är delad med dig på %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "katalog" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "En katalog är delad med dig på %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "En uppladdningslänk är delad med dig på %s" @@ -101,14 +102,15 @@ msgstr "En uppladdningslänk är delad med dig på %s" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Lösenordet är för kort" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Samarbetande Team" @@ -144,7 +146,7 @@ msgid "No activity now or the function is not supported." msgstr "Ingen aktivitet just nu, eller så är funktionen ej supporterad" #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Skapade katalog" @@ -159,7 +161,8 @@ msgstr "Raderade katalog %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -167,8 +170,8 @@ msgstr "Raderade katalog %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -184,7 +187,7 @@ msgstr "Kontrollera nätverksanslutningen" #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -210,13 +213,16 @@ msgstr "Viktiga datum" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -244,10 +250,11 @@ msgid "Email or Username" msgstr "Mejladress eller Användarnamn" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -307,7 +314,7 @@ msgid "New password confirmation" msgstr "Verifiera nytt lösenord" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Lösenorden överensstämmer inte" @@ -319,7 +326,7 @@ msgstr "Gammalt lösenord" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Ditt gamla lösenord var felaktigt. Försök igen" -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Lösenord (igen)" @@ -328,15 +335,19 @@ msgstr "Lösenord (igen)" msgid "Enter a valid e-mail address." msgstr "Ange en giltig email-adress" -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Utloggad" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Misslyckades att skicka email. Kontakta en administratör" -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Kan inte uppdatera lösenord, kontakta LDAP admin." @@ -423,6 +434,7 @@ msgstr "Nuvarande avatar:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -434,24 +446,24 @@ msgstr "Nuvarande avatar:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -512,43 +524,48 @@ msgstr "Din avatar uppdaterades" msgid "Successfully deleted the requested avatars." msgstr "De valda avatarerna togs bort" -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Email adress" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Användarnamn" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Detta värde måste ha längden 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Skriv in en giltig e-postadress." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Det finns redan en användare med denna email adress" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Ogiltigt användar-ID" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "namn" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "avdelning" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "telefon" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "anteckning" @@ -617,7 +634,7 @@ msgid "Recovered deleted directory" msgstr "Återskapade borttagen katalog" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Ändrade katalognamn eller beskrivning" @@ -665,22 +682,22 @@ msgstr[1] "%(seconds)d sekunder sedan" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -693,21 +710,21 @@ msgstr "Read-Write" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -779,15 +796,16 @@ msgstr "Email" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -815,7 +833,7 @@ msgstr "Email" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Namn" @@ -860,11 +878,11 @@ msgstr "Åtgärder" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -885,21 +903,21 @@ msgstr "Ändra" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -931,8 +949,9 @@ msgstr "Lägg till kontakter så du snabbt kan dela kataloger och skicka delning #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -942,8 +961,8 @@ msgstr "Lägg till kontakter så du snabbt kan dela kataloger och skicka delning #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Email" @@ -1041,17 +1060,17 @@ msgstr "Beskrivningen är för lång (max 255 tecken)" msgid "Name %s is not valid" msgstr "Namn %s är inte giltigt" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Argument saknas" @@ -1113,7 +1132,7 @@ msgid "Permission error: only group staff can add member" msgstr "Endast gruppmedlem kan lägga till nya medlemmar" #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Gruppen finns inte" @@ -1263,16 +1282,16 @@ msgstr "Klicka och välj standardkatalog" #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1349,21 +1368,21 @@ msgstr "Namn krävs" msgid "Description is required." msgstr "Beskrivning krävs" -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Åtkomst nekas" @@ -1716,11 +1735,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Användare" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1728,9 +1750,11 @@ msgstr "Info" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1741,12 +1765,16 @@ msgid "Libraries" msgstr "Kataloger" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Active Users" msgstr "Aktivera Användare" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1806,12 +1834,12 @@ msgstr "Egna Kataloger" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1824,11 +1852,11 @@ msgid "Size" msgstr "Storlek" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1838,7 +1866,7 @@ msgid "Last Update" msgstr "Senaste uppdatering" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1866,10 +1894,10 @@ msgid "This user has not created any libraries" msgstr "Denna användare har inte skapat några kataloger" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Roll" @@ -1878,8 +1906,8 @@ msgstr "Roll" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Skapad" @@ -1894,7 +1922,7 @@ msgstr "Denna användare har inte skapat eller gått med några grupper" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Status" @@ -1914,7 +1942,7 @@ msgstr "Skapad / Senast inloggning" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Aktiv" @@ -1926,7 +1954,7 @@ msgstr "Aktiv" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Inaktiv" @@ -1935,7 +1963,7 @@ msgstr "Inaktiv" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Tomt" @@ -1953,33 +1981,32 @@ msgstr "Ta bort användare" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Ägare" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Administrera" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "Medlem" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "Tog bort %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Misslyckades ta bort: användaren existerar inte" @@ -2003,6 +2030,7 @@ msgstr "Meddelande" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Tid" @@ -2049,16 +2077,22 @@ msgid "Send a message..." msgstr "Skicka ett meddelande..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Tidigare" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2075,18 +2109,20 @@ msgstr "Vill du verkligen radera denna diskussion?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Ja" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Nej" @@ -2128,57 +2164,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Ny notis på %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Internt fel" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "En fil med namn %(file_name)s är uppladdad till %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "En fil med namn %(file_name)s är uppladdad till Borttagen Katalog" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s har delat en katalog %(repo_name)s med dig." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Du har mottagit ett nytt meddelande från %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s har en ny diskussion." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s skapade en ny diskussion i %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s har bett dig anluta till gruppen %(group_name)s, Meddelande: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2226,11 +2271,19 @@ msgstr "%(user)s har delat en katalog %(lib_ #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Du har mottagit ett nytt meddelande från %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2238,7 +2291,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "En fil %(file_name)s har laddats upp till din mapp %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2246,14 +2299,14 @@ msgid "" "message: %(msg)s" msgstr "Användare %(user)s har bett dig ansluta till gruppen %(grp_name)s. Verifieringsmeddelande: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "Användaren %(user)s har lagt till dig till gruppen %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Kolla in följande sida:" @@ -2283,6 +2336,7 @@ msgid "Delete Notification" msgstr "Ta bort systemmeddelande" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2290,6 +2344,7 @@ msgstr "Ta bort systemmeddelande" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Hej," @@ -2358,14 +2413,17 @@ msgstr "Profilinställningar" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Inställningar" @@ -2599,40 +2657,46 @@ msgstr "Kinesiska (traditionell)" msgid "Email is not longer than 512 characters" msgstr "Email får inte vara längre än 512 tecken" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "Lösenord måste anges" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Skriv in rätt lösenord." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Länkar - delning" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Nedladdningslänkar" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Uppladdningslänkar" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Katalog" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Besök" @@ -2643,7 +2707,7 @@ msgstr "Utgångsdatum" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2659,7 +2723,7 @@ msgstr "Visa" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2692,7 +2756,7 @@ msgid "Folders - Share" msgstr "Mappar - Delning" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Mappar" @@ -2703,15 +2767,15 @@ msgstr "Dela med" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Behörighet" @@ -2777,175 +2841,211 @@ msgid "" "groups you are in." msgstr "Du kan dela kataloger med andra genom att klicka på dela-ikonen för dina egna kataloger på din startsida, eller genom att skapa nya kataloger i grupper du tillhör" -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Misslyckades att dela med all medlemmar, försök igen senare." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Delade med alla medlemmar. Kontrollera Kataloger." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Endast katalogens ägare har behörighet att dela det." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "Katalogen existerar inte" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Ogiltigt argument" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Argumentet är ej giltigt" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Misslyckades att ta bort delning" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "grupp-ID är inte giltigt" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Misslyckades att ta bort delning: gruppen existerar inte." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Tog bort delning" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "alla medlemmar" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Länken finns inte" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "Internt serverfel, alternativt kontrollera de mejladress(er) du angav" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Vänligen välj en katalog" -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Sparad" -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "Misslyckades att skicka en uppladdningslänk. Email-service är inte korrekt konfigurerad. Kontakta en administratör." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "Du har inte rättigheter att generera en delningslänk" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Ogiltiga argument" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Katalogen existerar inte" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "Katalog existerar inte" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Var god kontrollera de mejladress(er) du angav" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Ledsen, den önskade sidan hittas inte." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Lämna Systemadmin" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Stäng" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Meddelanden" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Se Alla Notifikationer" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Logga ut" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Systemadministratör" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "Vi supporterar inte längre denna version av IE. Vänligen uppgradera till version 10 eller högre." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Meddelanden" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Välkommen till Seafile" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile ordnar filer i kataloger. Varje katalog kan synkas och delas separat. Vi har skapat en personlig katalog åt dig. Du kan skapa fler kataloger senare" -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2953,7 +3053,7 @@ msgid "" msgstr "Seafile ordnar filer i kataloger. Varje katalog kan synkas och delas separat. Då du är en gästanvändare för tillfället, så kan du inte skapa nya kataloger." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Registrera" @@ -2983,28 +3083,31 @@ msgid "Please enter the password." msgstr "Ange lösenord" #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "Ladda ner" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "Accesslog" @@ -3013,9 +3116,12 @@ msgstr "Accesslog" msgid "Current Path:" msgstr "Nuvarande sökväg:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Användare" @@ -3025,11 +3131,16 @@ msgstr "Användare" msgid "Type" msgstr "Typ" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Enhetsnamn" @@ -3043,6 +3154,7 @@ msgstr "Anonnym användare" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3068,10 +3180,6 @@ msgstr "Utkast sparat" msgid "is encrypted" msgstr "är lösenordsskyddad" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Lösenord" - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "Lösenordet kommer sparas på servern endast en timme" @@ -3196,7 +3304,7 @@ msgstr "Kolumner" #: 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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Standard" @@ -3221,10 +3329,10 @@ msgid "Password is required." msgstr "Lösenord krävs" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Historik" @@ -3320,85 +3428,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Om Oss" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Filer" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Mina kataloger" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Delade" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "Organisation" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Alla grupper" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Aktivera moduler" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Favoriter" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Aktiviteter" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Personlig Wiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Enheter" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Administrera delningar" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Länkar" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Ladda upp katalog" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Lägg till automatisk utgångsdatum" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Dagar" @@ -3416,18 +3529,12 @@ msgid "Shared Libs" msgstr "Delade Kataloger" #: 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 "Ny katalog" - -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Katalognamn" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "Ny Katalog" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Ny fil" @@ -3445,8 +3552,7 @@ msgstr "simple markup format." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Detaljer" @@ -3510,7 +3616,123 @@ msgstr "Byta ut" msgid "Don't replace" msgstr "Byt inte ut" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organisationer" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Trafik" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Loggar" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "Virusscan" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Systeminformation" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Professional Edition" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "utgår vid" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Community Edition" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Uppgradera till Pro Edition" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "Begränsningar" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Plattform" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Senast Access" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Avlänka" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Rensa" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Fel" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Ny katalog" @@ -3524,13 +3746,14 @@ msgid "Encrypt" msgstr "Kryptera" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(minst %(repo_password_min_length)s tecken)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Lösenord igen" @@ -3540,34 +3763,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Trasig (vänligen kontakta din administratör för att laga denna katalog)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Dela" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Fler åtgärder" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Döp om" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3590,58 +3813,59 @@ msgid "Folder Permission" msgstr "Katalogrättigheter" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Flytta" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Kopiera" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Ladda upp" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Ladda upp filer" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Ny Katalog" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "Lista" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "Rutnät" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3649,175 +3873,177 @@ msgstr "" msgid "Trash" msgstr "Papperskorg" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Underkataloger" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Fler åtgärder" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Öppan via Klient" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "favorit skapad" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "favorit borttagen" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "låst" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Lås upp" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Lås" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Hämtning misslyckades" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Nedladdningslänk" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Uppladdningslänk" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Dela till användare" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Dela till grupp" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Lägg till lösenordsskydd" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(åtminstone %(share_link_password_min_length)s tecken)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Visa" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Generera ett slumpmässigt lösenord" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Generera" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Länk:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Direkt nedladdningslänk:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Skicka" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Skicka till:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Email, separerade med ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Meddelande (valfritt):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Skickar..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Du kan dela den genererade länken med andra och de kan ladda upp filer till denna katalog via länken." -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Uppladdningslänk" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Grupp" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Lämna delning" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3828,182 +4054,191 @@ msgstr "Wiki" msgid "Members" msgstr "Medlemmar" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Diskussion" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Användarrättigheter" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Grupp Rättigheter" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "ikon" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Ta bort favorit" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Delad av" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Välj katalog att dela" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "Katalog borttagen" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Detaljer" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Sök i alla filer i denna wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Sök efter filer i denna katalog" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Sök filer" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "avancerad" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "Inga kataloger är delade till denna grupp" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "admin" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Svara" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Importera Medlemmar" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Ta bort" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Lämna grupp" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Döp om grupp till" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Överför grupp till" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Importera gruppmedlemmar från en CSV fil" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Filformat: användare@mejl.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Spara full historik" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Spara inte historik" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Spara endast historiken " -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "dagar" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Skapad Av" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Katalog" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Välj en katalog" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Gammalt Lösenord" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Nytt Lösenord (minst %(repo_password_min_length)s tecken)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Nytt Lösenord" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Nytt Lösenord Igen" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Avlänka" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Se Alla Notifikationer" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4020,6 +4255,11 @@ msgstr "Du kan skapa en katalog för att hålla ordning på dina filer Du kan t. msgid "No library is shared to you" msgstr "Inga kataloger delas med dig" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organisation" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Lägg till Katalog" @@ -4066,10 +4306,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Grupp är en plats för dig och dina vänner för att lämna meddelande och samarbeta med kataloger. Grupper som du gått med i kommer listas här." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Gruppnamn" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4109,14 +4345,6 @@ msgid "" " page, and they will be listed here." msgstr "Du kan skapa favoriter genom att klicka \"Favoritknappen\" på sidan Filer. Dessa filer kommer då visas här" -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Plattform" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Senast Access" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Kataloger" @@ -4146,7 +4374,7 @@ msgstr "För att aktivera detta konto, vänligen klicka på följande länk inom #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4166,33 +4394,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Inte tydligt nog? Uppdatera " -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Felaktigt användarnamn eller lösenord" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Kom ihåg mig i %(remember_days)s dagar " -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Misslyckades att uppdatera CAPTCHA. Försök igen senare." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "Mejladress eller användarnamn kan inte vara blankt" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4233,10 +4461,6 @@ msgstr "" msgid "Current Password" msgstr "Nuvarande Lösenord" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Nytt Lösenord" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4373,11 +4597,6 @@ msgstr "Email måste anges" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Skräp" -#: seahub/templates/repo_dir_recycle_view.html:26 -#: seahub/templates/repo_dir_recycle_view.html:54 -msgid "Clean" -msgstr "Rensa" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Raderad tid" @@ -4399,12 +4618,12 @@ msgid "1 month ago" msgstr "1 månad sedan" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Lyckades" @@ -4634,7 +4853,7 @@ msgid "Please enter password" msgstr "Ange lösenord" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Borttagen" @@ -4775,6 +4994,15 @@ msgstr "Favoriter" msgid "Successfully unstarred." msgstr "Togs bort från favoriter" +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Ny katalog" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Katalognamn" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "stäng" @@ -4800,88 +5028,62 @@ msgstr "Filuppladdning misslyckades" msgid "Failed to get upload url" msgstr "Misslyckades att hämta uppladdningsurl" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Filen är för stor" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Filen är för liten" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Filtypen stöds ej" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Maxantal filer överskridet" -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Uppladdade bytes överskrider filstorleken" -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Uppladdning resulterade i en tom fil" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Fel" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "uppladdad" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "avbruten" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Starta" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Det krävs" -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organisationer" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Trafik" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Loggar" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "Virusscan" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Skapad av" @@ -4933,6 +5135,13 @@ msgstr "Ta bort katalog" msgid "Files / Size" msgstr "Filer / Storlek" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Bekräfta lösenord för att fortsätta" @@ -4963,10 +5172,6 @@ msgstr "Gruppinformation" msgid "No library has shared to this group" msgstr "Ingen katalog har delats till denna grupp" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "admin" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4978,30 +5183,6 @@ msgstr "Exportera Excel" msgid "Delete Group" msgstr "Ta bort grupp" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Systeminformation" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Professional Edition" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "utgår vid" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Community Edition" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Uppgradera till Pro Edition" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "Begränsningar" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5165,12 +5346,12 @@ msgid "Max User Number" msgstr "Max Antal Användare" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Måste vara ett nummer" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "Måste vara större än 0" @@ -5310,7 +5491,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP(importerad)" @@ -5323,7 +5504,7 @@ msgid "Admins" msgstr "Administratörer" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "Senast Inloggning" @@ -5349,7 +5530,7 @@ msgstr "Du kan också lägga till en användare som gäst, som inte kommer kunna #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Gäst" @@ -5437,6 +5618,12 @@ msgstr "Email: %(email)s" msgid "Password: %(password)s" msgstr "Lösenord: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5514,24 +5701,24 @@ msgstr "till" msgid "Sorry, this user is not registered yet." msgstr "Ledsen, denna användare är inte registrerad" -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Nuvarande sökväg" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "uppdaterade denna fil" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Tillbaka till toppen" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "toppen" @@ -5627,8 +5814,8 @@ msgstr "Felaktiga argument." #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Åtkomst nekas" @@ -5657,8 +5844,8 @@ msgid "Duplicated filename" msgstr "Filnamnet finns redan" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Filen existerar inte" @@ -5717,11 +5904,11 @@ msgstr "Misslyckades att sluta dela \"%s\"." msgid "No revisions found" msgstr "Inga revisioner funna" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Kontrollera fillåsningsfel" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "Filen är låst" @@ -5749,12 +5936,12 @@ msgstr "Läste tillbaka %(path)s till root-katalog." msgid "\"%s\" does not exist." msgstr "\"%s\" existerar inte." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Internt fel" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Kan inte ladda ner katalog \"%s\": Den är för stor." @@ -5764,11 +5951,11 @@ msgstr "Kan inte ladda ner katalog \"%s\": Den är för stor." msgid "Unable to download \"%s\"" msgstr "Kan inte ladda ner \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "Skapade Personlig Wiki \"Personal Wiki\"." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "Inaktiverade \"Personlig Wiki\"." @@ -5785,7 +5972,7 @@ msgid "The group doesn't exist" msgstr "Gruppen finns ej" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Katalogen är krypterad" @@ -5863,262 +6050,266 @@ msgstr "Det gick inte att få filblockerings lista" msgid "Wrong repo id" msgstr "Fel repo id" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Misslyckades" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Dålig uppladdningslänk symbol." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Dålig katalog id i uppladdningslänk." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Ingen konflikt i sammanslagningen" -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Misslyckades att ändra kataloginformation" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Misslyckades att spara inställningar" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Inställningar sparade" -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Användarnamnet %s är inte giltigt" -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Kan inte hitta användare %s" -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "Användare %s existerar inte i nuvarande organisation." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "Kan inte flytta katalogen till organisationsanvändaren %s." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Misslyckades att byta lösenord, du är inte nuvarande ägaren." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Felaktiga katalogsrättigheter. Ska vara \"rw\" eller \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "Sökväg måste starta med \"/\"" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "Sökväg ska inte sluta med \"/\"" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Felaktig sökväg" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Felaktig användare, måste vara registrerad" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Åtgärd misslyckades" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Felaktig katalogsrättigheter" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Vänligen ange katalogsrättigheter först" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Vänligen kontrollera de mejladress(er) du angav och de kontakter du valde" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Felaktig grupp" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "Gruppen existerar inte." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Misslyckades, filen är för stor" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTP-Fel: Misslyckades att öppna filen on-line" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URL-Fel: Misslyckades att öppna filen on-line" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "Krypteringen du har valt är inte korrekt." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Okänd fil-kodning" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "Filen är stötte än %s, och kan inte öppnas on-line." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "Katalogen är krypterad, kan inte öppna filen online." -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Kan inte läsa fil" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Fel filformat" -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "Kan inte ladda ner fil. Felaktig filsökväg" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "Kan inte ladda ner fil. Felaktig sökväg" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "Kan inte ladda ner fil. All delningstrafik har använts." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "Katalogen existerar inte." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "Katalogen är krypterad." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Det går inte att redigera filen" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Filen finns inte." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "DEt går inte att ändra denna typ av filer on-line." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Kan inte ladda ner fil" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Kan inte öppna fil: all delningstrafik har använts." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "Kan inte ladda ner: katalogen finns ej." -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "Kan inte visa katalog" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "Kan inte visa katalog, felaktig katalogssökväg." -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Ogiltigt användarnamn" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "Misslyckades att exportera till Excel" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Misslyckades att sätta kvot: max kvot är %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Misslyckades att sätta kvoten: internt server fel" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Misslyckades att tabort: användaren är en organisationsskapare" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "Lyckades tabort testperiod för: %s" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Tog bort adminbehörighet för %s" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Misslyckades ta bort adminbehörighet för %s" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Ditt konto på %s är aktiverad" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "Lösenordet har blivit återställt på %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Återställde lösenordet till %(passwd)s, ett email har skickats till %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Återställde lösenordet till %(passwd)s, men misslyckades skicka email till %(user)s, kontrollera dina email-inställningar." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Återställde lösenord till %(passwd)s för användare %(user)s." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6126,107 +6317,107 @@ msgid "" "configured." msgstr "Återställde lösenordet till %(passwd)s för användare %(user)s. Men email kan inte skickas, eftersom email-service inte är korrekt konfigurerad." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Misslyckades återställa lösenordet: användaren finns inte" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Du är inbjuden till att gå med i %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Misslyckades att lägga till användare %s." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "Skapade användare %s. Ett email har sänts." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "Skapade användare %s. Ett fel uppstod när email skulle skickas. Vänligen kontrollera email-inställningarna." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "Skapade användare %s" -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "Skapade användare %s. Men email kunde inte skickas, eftersom email-service inte är korrekt konfigurerad." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Misslyckades att döpa om organisation" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "Lyckades tabort." -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Misslyckades med överföring, ogiltiga argument-" -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Misslyckades med överföring, användare %s hittades inte." -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "Kan inte överföra organisationskatalog" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "Kan inte överföra katalog till organisationsanvändaren %s" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Överfördes" -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "System bibliotek kan inte raderas." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "Misslyckades att tabort, vänligen försök igen senare." -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "Lyckades sätta %s som admin." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Misslyckades att sätta %s som admin: användaren existerar inte." -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Importering lyckades" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Vänligen välj en csv fil först." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "Ogiltig inställning" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "Ogitligt värde" diff --git a/locale/sv/LC_MESSAGES/djangojs.po b/locale/sv/LC_MESSAGES/djangojs.po index 53bbe3d32a..dbd79c08f9 100644 --- a/locale/sv/LC_MESSAGES/djangojs.po +++ b/locale/sv/LC_MESSAGES/djangojs.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Swedish (http://www.transifex.com/haiwen/seahub/language/sv/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Precis nyss" @@ -32,19 +32,19 @@ msgstr "Precis nyss" msgid "Name is required" msgstr "Namn krävs" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Vänligen ange lösenordet" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Vänligen ange lösenordet igen" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Lösenordet är för kort" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Lösenorden överensstämmer inte" @@ -60,6 +60,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Kontrollera nätverksanslutningen" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Nya filer" @@ -89,35 +114,40 @@ msgstr "Borttagna kataloger" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Misslyckades. Kontrollera nätverket." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -147,12 +177,12 @@ msgstr "Misslyckades" #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Avbruten." #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Felaktig destinationssökväg" @@ -205,8 +235,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -222,39 +252,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 msgid "Permission error" msgstr "Behörighetsfel" -#: 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Kontrollera nätverksanslutningen" - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "" @@ -263,7 +274,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -271,150 +282,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "Stäng (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Laddar..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "Föregående (Vänster piltangent)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "Nästa (Höger piltangent)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% av %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "Bilden kunde inte laddas." -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Öppna i ny flik" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Lösenord krävs." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Det krävs." -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Bara en ändelse, vänligen ange ett namn" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Arbetar..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Lyckades ta bort %(name)s." -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "Lyckades ta bort %(name)s och 1 annat objekt." -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Lyckades ta bort %(name)s och %(amount)s andra filer." -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "Misslyckades att ta bort %(name)s." -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "Misslyckades att ta bort %(name)s och 1 annat objekt." -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "Misslyckades att ta bort %(name)s och %(amount)s andra objekt." -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Borttagna Objekt" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Är du säker att du vill ta bort valda objekt?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "Flytta valda objekt till:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "Kopiera valda objekt till:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "Lyckades flytta %(name)s." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "Lyckades flytta %(name)s och 1 annan fil." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "Lyckades flytta %(name)s och %(amount)s andra filer." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "Lyckades kopiera %(name)s." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "Lyckades kopiera %(name)s och 1 annan fil." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "Lyckades kopiera %(name)s och %(amount)s andra filer." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "Internt fel. Misslyckades att flytta %(name)s och %(amount)s andra objekt." -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Internt fel. Misslyckades att flytta %(name)s." -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "Internt fel. Misslyckades att kopiera %(name)s och %(amount)s andra objekt" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Internt fel. Misslyckades att kopiera %(name)s." -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Flyttar fil %(index)s av %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Kopierar fil %(index)s av %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "Misslyckades att flytta %(name)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "Misslyckades att kopiera %(name)s" @@ -454,10 +465,10 @@ msgstr "Uppladdning resulterade i en tom fil" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -501,19 +512,19 @@ msgstr "Filuppladdning avbruten" msgid "File Upload failed" msgstr "Filuppladdning misslyckad" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Misslyckades att hämta uppladdningsurl" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "Misslyckades att hämta uppdateringsurl" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "Ersätt filen {filename}?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Filen är låst" @@ -522,7 +533,7 @@ msgid "Set {placeholder}'s permission" msgstr "Sätt {placeholder}s rättigheter" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "Välj grupper" @@ -543,32 +554,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "Slutade dela {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -580,11 +597,11 @@ msgstr "Är du säker att du önskar radera %(lib_name)?" msgid "Delete succeeded." msgstr "Borttagen" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -592,35 +609,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "Dela {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "Utgången" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Dölj" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "Visa" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "Vänligen ange dagar." -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Vänligen ange giltiga dagar" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Vänligen ange minst en e-postadress." -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Lyckades skicka till {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Misslyckades att skicka till {placeholder}" @@ -632,22 +650,26 @@ msgstr "Lyckades" msgid "Successfully unstared {placeholder}" msgstr "Tog bort {placeholder} från favoriter" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Vänligen ange 1 eller fler tecken" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Inga matchningar" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Söker..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Laddning misslyckades" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/th_TH/LC_MESSAGES/djangojs.po b/locale/th_TH/LC_MESSAGES/djangojs.po index f4dbace2e1..ac3d7dc8fa 100644 --- a/locale/th_TH/LC_MESSAGES/djangojs.po +++ b/locale/th_TH/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/haiwen/seahub/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/tr/LC_MESSAGES/django.po b/locale/tr/LC_MESSAGES/django.po index e02e8e0e16..8d82eb2152 100644 --- a/locale/tr/LC_MESSAGES/django.po +++ b/locale/tr/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Turkish (http://www.transifex.com/haiwen/seahub/language/tr/)\n" "MIME-Version: 1.0\n" @@ -20,14 +20,15 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -54,8 +55,8 @@ msgstr "Hatalı şifre" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "İç sunucu hatası" @@ -65,34 +66,34 @@ msgstr "Kütüphane şifresi açma hatası" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Paylaşımlı bağlantı gönderilemedi. Eposta servisi doğru yapılandırılmadı, lütfen yönetici ile iletişim kurunuz." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "dosya" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "%s 'de sizinle bir dosya paylaşıldı" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "dizin" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "%s 'de sizinle bir dizin paylaşıldı " #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "%s'de sizinle bir bağlantı yüklemesi paylaşıldı" @@ -101,14 +102,15 @@ msgstr "%s'de sizinle bir bağlantı yüklemesi paylaşıldı" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Şifre çok kısa" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Dosya Kolabrasyon Takım Organizasyonu" @@ -144,7 +146,7 @@ msgid "No activity now or the function is not supported." msgstr "Şu anda etkinlik yok ya da işlev desteklenmiyor." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Oluşturulmuş kütüphane" @@ -159,7 +161,8 @@ msgstr "Silinmiş kütüphane %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -167,8 +170,8 @@ msgstr "Silinmiş kütüphane %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -184,7 +187,7 @@ msgstr "Lütfen ağı kontrol edin." #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -210,13 +213,16 @@ msgstr "Önemli tarihler" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -244,10 +250,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -307,7 +314,7 @@ msgid "New password confirmation" msgstr "Yeni şifre doğrulama" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "İki şifre alanı eşleşmiyor." @@ -319,7 +326,7 @@ msgstr "Eski şifre" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Eski şifrenizi yanlış girdiniz. Lütfen tekrar deneyin." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Şifre (tekrar)" @@ -328,15 +335,19 @@ msgstr "Şifre (tekrar)" msgid "Enter a valid e-mail address." msgstr "Geçerli bir eposta adresi girin." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Çıkış yapıldı" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Eposta gönderme başarısız, lütfen yönetici ile iletişim kurun." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Şifre güncellenemiyor, lütfen LDAP yöneticisi ile iletişim kurun." @@ -423,6 +434,7 @@ msgstr "Şimdiki avatar:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -434,24 +446,24 @@ msgstr "Şimdiki avatar:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -512,43 +524,48 @@ msgstr "Avatarınız başarıyla güncellendi." msgid "Successfully deleted the requested avatars." msgstr "İstenen avatarlar başarıyla silindi." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Eposta adresi" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Kullanıcı adı" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Bu değerin uzunluğu 40 olmalıdır." -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Geçerli bir eposta adresi girin." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Bu eposta ile bir kullanıcı zaten var." -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Geçersiz kullanıcı kimliği." -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "isim" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "bölüm" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "telefon" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "not" @@ -617,7 +634,7 @@ msgid "Recovered deleted directory" msgstr "Silinmiş dizin kurtarıldı." #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Değiştirilmiş kütüphane adı ya da açıklaması" @@ -665,22 +682,22 @@ msgstr[1] "" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -693,21 +710,21 @@ msgstr "Okuma-Yazma" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -779,15 +796,16 @@ msgstr "Eposta" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -815,7 +833,7 @@ msgstr "Eposta" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "İsim" @@ -860,11 +878,11 @@ msgstr "İşlemler" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -885,21 +903,21 @@ msgstr "Düzenle" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -931,8 +949,9 @@ msgstr "Kişilerinizi ekleyerek kütüphane ve dosya paylaşım bağlantıların #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -942,8 +961,8 @@ msgstr "Kişilerinizi ekleyerek kütüphane ve dosya paylaşım bağlantıların #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Eposta" @@ -1041,17 +1060,17 @@ msgstr "Açıklama çok uzun (en fazla 100 karakter)" msgid "Name %s is not valid" msgstr "%s ismi geçerli değil." -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Bağımsız değişken eksik" @@ -1113,7 +1132,7 @@ msgid "Permission error: only group staff can add member" msgstr "İzin hatası: sadece grup kadrosu üye ekleyebilir." #: seahub/group/error_msg.py:16 seahub/group/error_msg.py:22 -#: seahub/share/views.py:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Grup yok" @@ -1263,16 +1282,16 @@ msgstr "Lütfen tıklayın ve bir kütüphane seçin" #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1349,21 +1368,21 @@ msgstr "İsim gerekli." msgid "Description is required." msgstr "Açıklama Gerekli." -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "İzin reddedildi" @@ -1716,11 +1735,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Kullanıcılar" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1728,9 +1750,11 @@ msgstr "Bilgi" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1741,12 +1765,16 @@ msgid "Libraries" msgstr "Kütüphaneler" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1806,12 +1834,12 @@ msgstr "Sahip olunan kütüphaneler" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1824,11 +1852,11 @@ msgid "Size" msgstr "Boyut" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1838,7 +1866,7 @@ msgid "Last Update" msgstr "En son Güncelleme" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1866,10 +1894,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Rol" @@ -1878,8 +1906,8 @@ msgstr "Rol" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Oluşturuldu" @@ -1894,7 +1922,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Durum" @@ -1914,7 +1942,7 @@ msgstr "Oluştur / Son Giriş" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Aktif" @@ -1926,7 +1954,7 @@ msgstr "Aktif" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "İnaktif" @@ -1935,7 +1963,7 @@ msgstr "İnaktif" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Boş" @@ -1953,33 +1981,32 @@ msgstr "Kullanıcıyı sil" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Sahip" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Yönetici" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s silindi" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Silinemedi: kullanıcı yok" @@ -2003,6 +2030,7 @@ msgstr "Mesaj" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Zaman" @@ -2049,16 +2077,22 @@ msgid "Send a message..." msgstr "Bir mesaj gönder..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Önceki" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2075,18 +2109,20 @@ msgstr "Bu tartışmayı silmeyi gerçekten istiyor musunuz?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Evet" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Hayır" @@ -2128,57 +2164,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "%s -'de yeni bildirim" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "İç hata" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Dosya %(file_name)s buraya yüklendi: %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Dosya %(file_name)s buraya yüklendi:Silinmiş Kütüphane" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s %(repo_name)s isimli kütüphaneyi sizinle paylaştı." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "%(user)s kullanıcılarından yeni mesaj aldınız." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s yeni bir tartışma var." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s %(group_name)s'ya yeni bir tartışma postaladı." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s şu gruba %(group_name)s katılmak istedi, doğrulama mesajı: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2226,11 +2271,19 @@ msgstr "%(user)s sizinle %(lib_name)s is #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "%(user)s isimli kullanıcılardan gelen yeni mesaj" -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2238,7 +2291,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "%(file_name)s isimli dosya %(folder_name)s klasörünüze yüklendi." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2246,14 +2299,14 @@ msgid "" "message: %(msg)s" msgstr "Kullanıcı %(user)s %(grp_name)s isimli gruba katılmak istiyor, doğrulama mesajı: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Aşağıdaki sayfayı inceleyin:" @@ -2283,6 +2336,7 @@ msgid "Delete Notification" msgstr "Bildirimi Sil" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2290,6 +2344,7 @@ msgstr "Bildirimi Sil" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Selam," @@ -2358,14 +2413,17 @@ msgstr "Profil Ayarları" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Ayarlar" @@ -2599,40 +2657,46 @@ msgstr "Geleneksel Çince" msgid "Email is not longer than 512 characters" msgstr "Eposta 512 karakterden uzun değil" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "Şifre boş bırakılamaz" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Lüfen doğru bir şifre giriniz." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Bağlantılar - Paylaş" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "Bağlantıları İndir" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "Bağlantıları Yükle" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 seahub/templates/starred.html:14 #: seahub/templates/sysadmin/sys_virus_scan_records.html:11 msgid "Library" msgstr "Kütüphane" #: seahub/share/templates/share/links.html:22 #: seahub/share/templates/share/links.html:68 -#: seahub/templates/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Ziyaretler" @@ -2643,7 +2707,7 @@ msgstr "Zaman aşımı" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2659,7 +2723,7 @@ msgstr "Görüntüle" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2692,7 +2756,7 @@ msgid "Folders - Share" msgstr "Klasörler - Paylaş" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Klasörler" @@ -2703,15 +2767,15 @@ msgstr "Şununla paylaş" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "İzin" @@ -2777,175 +2841,211 @@ msgid "" "groups you are in." msgstr "Kütüphaneleri anasayfanızda kütüphanelerinizin paylaş simgesini tıklayarak ya da içinde bulunduğunuz gruplarda yeni kütüphane oluşturarak arkadaşlarınızla paylaşabilirsiniz." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Tüm üyelerle paylaşılamadı, lütfen daha sonra tekrar deneyin." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Tüm üyelerle başarıyla paylaşıldı, buradan kontrol edebilirsiniz Paylaşılanlar" -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Sadece sahibinin kütüphaneyi paylaşma izni var." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "Kütüphane yok" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "Geçersiz argüman" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Değişken geçerli değil" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Paylaşımı kaldırma başarısız" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "Grup kimliği geçerli değil" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Paylaşım sonlandırma başarısız: grup yok." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Paylaşım başarıyla kaldırıldı" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "tüm üyeler" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Bağlantı yok" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "İç sunucu hatası, ya da lütfen girdiğiniz epostaları kontrol edin" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Lütfen bir dizin seçiniz." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Kaydedildi." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "Paylaşımlı bağlantı yükleme gönderimi başarısız oldu. Eposta servisi doğru yapılandırılmadı, lütfen yönetici ile iletişim kurunuz." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "Paylaşımlı link oluşturma izniniz yok" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Geçersiz değişkenler" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Kütüphane yok." -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "Dizin mevcut değil." -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "Lüten girdiğiniz epostaları kontrol edin." +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Üzgünüm, ama istediğiniz sayfa bulunamadı." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Sistem Yöneticisinden Çık" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Kapat" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: seahub/templates/base_for_backbone.html:61 -#: seahub/templates/base_for_backbone.html:67 -#: seahub/templates/sysadmin/base.html:34 -msgid "Notifications" -msgstr "Bildirimler" - -#: seahub/templates/base.html:60 seahub/templates/base_for_backbone.html:71 -msgid "See All Notifications" -msgstr "Tüm Bildirimleri Gör" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Çıkış yap" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Sistem Yöneticisi" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "IE'nin bu sürümünü artık desteklememekteyiz. Lütfen versiyon 10 ya da üstüne güncelleyin." -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Bildirimler" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Seafile'a Hoşgeldiniz!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile dosyaları kütüphaneler olarak organize eder. Her bir kütüphane ayrı olarak senkronize ediliebilir ve paylaşılabilir. Sizin için kişisel bir kütüphane hazırladık. Siz daha fazla kütüphane oluşturabilirsiniz." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2953,7 +3053,7 @@ msgid "" msgstr "Seafile dosyaları kütüphaneler olarak organize eder. Her bir kütüphane ayrı olarak senkronize ediliebilir ve paylaşılabilir. Ancak siz şu anda misafir kullanıcı olduğunuz için kütüphane oluşturamazsınız." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Kaydol" @@ -2983,28 +3083,31 @@ msgid "Please enter the password." msgstr "Lütfen şifreyi giriniz." #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: seahub/templates/view_shared_dir.html:118 #: seahub/templates/view_shared_dir.html:148 msgid "Download" msgstr "İndir" #: seahub/templates/file_access.html:5 seahub/templates/file_access.html:8 -#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3013,9 +3116,12 @@ msgstr "" msgid "Current Path:" msgstr "Geçerli Yol:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Kullanıcı" @@ -3025,11 +3131,16 @@ msgstr "Kullanıcı" msgid "Type" msgstr "Tip" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Cihaz Adı" @@ -3043,6 +3154,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3068,10 +3180,6 @@ msgstr "Taslak kaydedildi." msgid "is encrypted" msgstr "şifrelenmiş" -#: seahub/templates/file_edit.html:130 -msgid "Password:" -msgstr "Şifre:" - #: seahub/templates/file_edit.html:132 msgid "The password will be kept in the server for only 1 hour." msgstr "Şifre sadece 1 saat sunucuda tutulacaktır." @@ -3196,7 +3304,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "Varsayılan" @@ -3221,10 +3329,10 @@ msgid "Password is required." msgstr "Şifre gerekli." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Geçmiş" @@ -3320,85 +3428,90 @@ msgstr "Seafile" msgid "About Us" msgstr "Hakkımızda" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Dosyalar" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Benim" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Paylaşılan" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "Organizasyon" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Tüm Gruplar" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Modülleri etkinleştir" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Yıldızlı" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Etkinlikler" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Kişisel Wiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Cihazlar" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Paylaşma Yöneticisi" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Bağlantılar" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "Klasör yükle" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "Otomatik sona erme ekle" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "Gün" @@ -3416,18 +3529,12 @@ msgid "Shared Libs" msgstr "Paylaşılan Kütüphaneler" #: 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 "Yeni Dizin" - -#: seahub/templates/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Dizin İsmi" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "Yeni Klasör" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Yeni Dosya" @@ -3445,8 +3552,7 @@ msgstr "basit markup formatı" #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Ayrıntılar" @@ -3510,7 +3616,123 @@ msgstr "Değiştir" msgid "Don't replace" msgstr "Değiştirme" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Organizasyonlar" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Trafik" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Loglar" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "Sistem Bilgisi" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "Profesyonel Versiyon" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "süre bitimi" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "Topluluk Versiyonu" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "Pro Versiyona Yükseltin" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Platform" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Son Erişim" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Bağlantıyı kaldır" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Temizle" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Hata" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Yeni Kütüphane" @@ -3524,13 +3746,14 @@ msgid "Encrypt" msgstr "Şifrele" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(en az %(repo_password_min_length)s karakter)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Şifre tekrar" @@ -3540,34 +3763,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Paylaş" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Daha fazla işlem" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Yeniden Adlandır" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3590,58 +3813,59 @@ msgid "Folder Permission" msgstr "Klasör izni" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Taşı" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Kopyala" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Yükle" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Dosyaları yükle" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "Yeni Klasör" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3649,175 +3873,177 @@ msgstr "" msgid "Trash" msgstr "Çöp Kutusu" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Alt kütüphaneler" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Daha fazla işlem" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "Client üzerinden aç" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "yıldızlı" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "Yıldızı kaldırılmış" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "kilitli" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "Kilidi Aç" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "Kilitle" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "Getirilemedi" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Bağlantıyı İndir" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Bağlantıyı Yükle" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "Kullanıcı ile Paylaş" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "Grupla Paylaş" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Şifre koruma ekle" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "Göster" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "Rastgele bir şifre oluştur" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Oluştur" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Bağlantı:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "Doğrudan İndirme Linki:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Gönder" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Şuna gönder:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Epostalar, \"\", ile ayrılmış" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Mesaj (isteğe bağlı):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Gönderiyor..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 msgid "" "You can share the generated link to others and then they can upload files to" " this directory via the link." msgstr "Oluşturduğunuz bağlantıyı diğerleriyle paylaşabilirsiniz. Paylaştığınız kişiler bağlantı üzerinden bu dizine dosya yükleyebilirler. " -#: seahub/templates/js/templates.html:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Bağlantı Yükle:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Grup" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Paylaşımdan Ayrıl" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3828,182 +4054,191 @@ msgstr "Wiki" msgid "Members" msgstr "Üyeler" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Tartışma" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Kullanıcı İzni" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "Gruop İzni" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "simge" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Yıldızı kaldır" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Paylaşan" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "Paylaşmak için kütüphane seçin" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Değiştirme Ayrıntıları" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Dosyaları bu wikide ara" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Dosyaları bu kütüphanede ara" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Dosya Ara" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "gelişmiş" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "Bu grupla paylaşılan bir kütüphane yok" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "yönetici" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Yanıtla" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Sonlandır" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Gruptan çık" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Grubu yeniden adlandır" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Grubu transfer et" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Tüm geçmişi sakla" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Geçmişi saklama" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Sadece bu dönemdeki geçmişi sakla:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "gün" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "Oluşturan" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Klasör" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Bir klasör seçin" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Eski Şifre" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Yeni Şifre (en az %(repo_password_min_length)s karakter)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "Yeni Şifre" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Yeni Şİfre Tekrar" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Bağlantıyı kaldır" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Tüm Bildirimleri Gör" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4020,6 +4255,11 @@ msgstr "Dosyalarınızı düzenlemek için kütüphane oluşturabilirsiniz. Örn msgid "No library is shared to you" msgstr "Sizinle hiç kütüphane paylaşılmadı." +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Organizasyon" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "Kütüphane ekle" @@ -4066,10 +4306,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Gruplar siz ve arkadaşlarınızın mesaj bırakabileceği ve kütüphaneler üzerinde birlikte çalışabileceği alanlardır. Katıldığınız gruplar burada listelenecek." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Grup Adı" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4109,14 +4345,6 @@ msgid "" " page, and they will be listed here." msgstr "Önemli dosyaları görüntüleme sayfasındaki \"Yıldız\" düğmesini tıklayarak yıldızlayabilirsiniz. Dosyalar burada listelenecek." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Platform" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Son Erişim" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Kütüphaneler" @@ -4146,7 +4374,7 @@ msgstr "Hesabı etkinleştirmek için lütfen %(expiration_days)s gün içinde l #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4166,33 +4394,33 @@ msgstr "Güvenlik Kodu" msgid "Not clear? Refresh it." msgstr "Net değil mi? Yenile." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Hatalı eposta ya da şifre" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "%(remember_days)s gün için beni hatırla" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Güvenlik kodu yenileme başarısız, lütfen daha sonra tekrar deneyin." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4233,10 +4461,6 @@ msgstr "" msgid "Current Password" msgstr "Mevcut Şifre" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "Yeni Şifre" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4373,11 +4597,6 @@ msgstr "Eposta boş bırakılamaz" 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 "Temizle" - #: seahub/templates/repo_dir_recycle_view.html:34 msgid "Delete Time" msgstr "Zamanı sil" @@ -4399,12 +4618,12 @@ msgid "1 month ago" msgstr "1 ay önce" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "Başarılı" @@ -4634,7 +4853,7 @@ msgid "Please enter password" msgstr "Lütfen şifre giriniz" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Silme başarılı" @@ -4775,6 +4994,15 @@ msgstr "Yıldızlar" msgid "Successfully unstarred." msgstr "Yıldız kaldırıldı." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Yeni Dizin" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Dizin İsmi" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "kapat" @@ -4800,88 +5028,62 @@ msgstr "Dosya Yükleme Başarısız" msgid "Failed to get upload url" msgstr "url yükleme başarısız" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Dosya çok büyük" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Dosya çok küçük" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Dosya tipine izin verilmiyor." -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: seahub/templates/view_shared_upload_link.html:77 msgid "Max number of files exceeded" msgstr "Maksimum dosya sayısı aşıldı." -#: seahub/templates/sysadmin/admin_repo_view.html:286 +#: seahub/templates/sysadmin/admin_repo_view.html:290 #: seahub/templates/view_shared_upload_link.html:78 msgid "Uploaded bytes exceed file size" msgstr "Yüklenen baytlar dosya boyutunu aşıyor." -#: seahub/templates/sysadmin/admin_repo_view.html:287 +#: seahub/templates/sysadmin/admin_repo_view.html:291 #: seahub/templates/view_shared_upload_link.html:79 msgid "Empty file upload result" msgstr "Boş dosya yükleme sonucu" -#: seahub/templates/sysadmin/admin_repo_view.html:289 -#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 -msgid "Error" -msgstr "Hata" - -#: seahub/templates/sysadmin/admin_repo_view.html:290 +#: seahub/templates/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "yüklendi" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "iptal edildi" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Başla" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Gerekli." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Organizasyonlar" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Trafik" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Loglar" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Oluşturan" @@ -4933,6 +5135,13 @@ msgstr "Kütüphaneyi Sil" msgid "Files / Size" msgstr "" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "Devam etmek için şifreyi onaylayın" @@ -4963,10 +5172,6 @@ msgstr "Grup Bilgisi" msgid "No library has shared to this group" msgstr "Bu grupla hiç kütüphane paylaşılmadı" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "yönetici" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4978,30 +5183,6 @@ msgstr "" msgid "Delete Group" msgstr "Grubu Sil" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "Sistem Bilgisi" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "Profesyonel Versiyon" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "süre bitimi" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "Topluluk Versiyonu" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "Pro Versiyona Yükseltin" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5165,12 +5346,12 @@ msgid "Max User Number" msgstr "Maksimum Kullanıcı Sayısı" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "Girdi bir rakam olmalı" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "Girdi numarası 0'dan büyük olmalı" @@ -5310,7 +5491,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP(alınan)" @@ -5323,7 +5504,7 @@ msgid "Admins" msgstr "Yöneticiler" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "En son giriş" @@ -5349,7 +5530,7 @@ msgstr "Bir kullanıcıyı misafir olarak da ekleyebilirsiniz. Misafir kullanıc #: 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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Misafir" @@ -5437,6 +5618,12 @@ msgstr "Eposta: %(email)s" msgid "Password: %(password)s" msgstr "Şifre: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5514,24 +5701,24 @@ msgstr "Kime" msgid "Sorry, this user is not registered yet." msgstr "Üzgünüz, bu kullanıcı henüz kayıtlı değil." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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 "Geçerli Yol:" -#: seahub/templates/view_file_base.html:41 +#: seahub/templates/view_file_base.html:46 #: seahub/templates/view_file_markdown.html:7 #: seahub/templates/view_file_text.html:16 msgid "updated this file" msgstr "Güncelleştirilmiş dosya" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "Yukarı geri dön" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "yukarı" @@ -5627,8 +5814,8 @@ msgstr "Geçersiz argüman" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "İzin reddedildi." @@ -5657,8 +5844,8 @@ msgid "Duplicated filename" msgstr "Benzer dosya adı" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Dosya yok." @@ -5717,11 +5904,11 @@ msgstr "\"%s\" paylaşımı sonlandırma başarısız." msgid "No revisions found" msgstr "Hiç revizyon bulunmadı" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "Dosya kilit hatasını kontrol edin" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "Dosya kilitli" @@ -5749,12 +5936,12 @@ msgstr "%(path)s kök dizin. e başarıyla geri döndür msgid "\"%s\" does not exist." msgstr "\"%s\" mevcut değil." -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "iç hata" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "\"%s\" dizni indirilemiyor: Boyut çok büyük." @@ -5764,11 +5951,11 @@ msgstr "\"%s\" dizni indirilemiyor: Boyut çok büyük." msgid "Unable to download \"%s\"" msgstr "\"%s\" indirilemedi." -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "\"Personal Wiki\" etkinleştirildi." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "\"Personal Wiki\" devre dışı bırakıldı." @@ -5785,7 +5972,7 @@ msgid "The group doesn't exist" msgstr "Grup yok." #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Kütüphane şifreli." @@ -5863,262 +6050,266 @@ msgstr "Dosya blok listesini alamadı." msgid "Wrong repo id" msgstr "Yanlış repo id" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Başarısız" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "Kötü bağlantı yükleme jetonu." -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "Bağlantı yüklemede kötü repo id." -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Dosya birleştirmede uyuşmazlık yok." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Kütüphane bilgisini düzenleme başarısız oldu." -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Ayarlar sunucuda kaydedilemedi." -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Ayarlar kaydedildi." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Kullancı adı %s geçerli değil." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Kullanıcı %s bulunamadı." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "Kullanıcı %s şu anki organizasyonda değil." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "Kütüphane organizasyon kullanıcısı %s'e transfer edilemiyor." -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Şifre değiştirme başarısız, sahip değilsiniz." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "Geçersiz klasör izni, \"rw\" ya da \"r\" olmalı" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "Yol \"/\" ile başlamalı" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "Yol \"/\" ile bitmemeli" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "Geçersiz yol" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "Geçersiz kullanıcı, kayıt yaptırmalı" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "İşlem reddedildi" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "Hatalı klasör izni" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "Lütfen önce klasör izni ekleyin" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "Lütfen girdiğiniz epostaları ve seçtiğiniz kişileri kontrol edin" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "Geçersiz grup" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "Grup mevcut değil." -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTP Hatası: Dosya çevrimiçi açılamadı." -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URL Hatası: Dosya çevrimiçi açılamadı." -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "Seçtiğiniz kodlama uygun değil." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Bilinmeyen dosya kodlama" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "Dosya boyutu %s i aşıyor, online açılamaz." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Dosya görüntülenemiyor." -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Geçersiz dosya formatı" -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "Dosya indirilemedi, geçersiz dosya yolu" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "Dosya indirilemedi, hatalı dosya yolu" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "Dosya indirilemedi, link paylaşma trafiği tükendi." -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "Kütüphane yok." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "Kütüphane şifreli." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Dosya düzenlenemiyor." -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Dosya yok." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Bu tip dosyalar için çevrimiçi düzenleme sunulmuyor." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "Dosya indirilemiyor." -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Dosyaya erişilemiyor: paylaşım bağlantı trafiği tükendi." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "İndirme başarısız: klasör bulunamadı." -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "Geçersiz kullanıcı adı" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "Kota oluşturulamadı: maksimum kota %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Kota oluşturulamadı: iç sunucu hatası" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "Silinemedi: kullanıcı bir organizasyon oluşturucusudur." -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "%s için deneme sürümü başarıyla kaldırıldı." -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "%s için yönetici izni iptal edildi." -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Yönetici iptal edilemedi: kullanıcı yok" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "%s deki hesabınız etkinleştirildi." -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "%s deki şifre sıfırlandı." -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "%(passwd)s sıfırlandı, %(user)s kullanıcılarına eposta gönderildi." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "%(passwd)s sıfırlandı, ancak %(user)s kullanıcılarına eposta gönderilemedi, lütfen eposta yapılandırmanızı kontrol edin." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Kullanıcı %(user)s için şifre %(passwd)s'e sıfırlandı." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6126,107 +6317,107 @@ msgid "" "configured." msgstr "Kullanıcı %(user)s için parola %(passwd)s'ya sıfırlandı. Ama eposta bildirimi gönderilemedi, çünkü eposta servis yapılandırılması doğru değil." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Şifre sıfırlanamadı: kullanıcı yok." -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "%s'e katılmaya davet edildiniz." -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "Kullanıcı %s eklenemedi." -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "Kullanıcı %s başarıyla eklendi. Bildirim epostası gönderildi." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "Kullanıcı %s başarıyla eklendi. Eposta bildirimi gönderilirken hata oluşuyor, lütfen eposta yapılandırmanızı kontrol edin." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "Kullanıcı %s eklendi." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "Kullanıcı %s başarıyla eklendi. Ancak eposta servis yapılandırması doğru olmadığından bildirim epostası gönderilemedi." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "Organizasyon yeniden adlandırılamadı" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Transfer edilemedi, geçersiz değişkenler." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Transfer edilemedi, kullanıcı %s bulunamadı." -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "Organizasyon kütüphanesi transfer edilemiyor." -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "Kütüphane organizasyon kullanıcısı %s'e transfer edilemedi." -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Transfer edildi." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "Sistem kütüphanesi silinemez." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s yönetici olarak oluşturuldu." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "%s yönetici olarak oluşturulamadı: kullanıcı yok" -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "İçe aktarıldı" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "Lütfen önce CSV dosyası seçiniz." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "" diff --git a/locale/tr/LC_MESSAGES/djangojs.po b/locale/tr/LC_MESSAGES/djangojs.po index 088b2be0c5..bdd201fcea 100644 --- a/locale/tr/LC_MESSAGES/djangojs.po +++ b/locale/tr/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Turkish (http://www.transifex.com/haiwen/seahub/language/tr/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/uk/LC_MESSAGES/django.po b/locale/uk/LC_MESSAGES/django.po index 6bc2f3e13d..b2e31d0caf 100644 --- a/locale/uk/LC_MESSAGES/django.po +++ b/locale/uk/LC_MESSAGES/django.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Ukrainian (http://www.transifex.com/haiwen/seahub/language/uk/)\n" "MIME-Version: 1.0\n" @@ -23,14 +23,15 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -57,8 +58,8 @@ msgstr "Невірний пароль" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "Внутрішня помилка серверу" @@ -68,34 +69,34 @@ msgstr "Помилка розшифровки бібліотеки" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "Відправка посилання до спільного доступу не вдалося. Послуги електронної пошти не налаштовані належним чином. Будь ласка, зв'яжіться з адміністрацією." -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "Файл надано Вам в спільне користування на %s" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "Папка надана Вам у спільний досуп на %s" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "Посилання для завантаження надано для Вас на %s" @@ -104,14 +105,15 @@ msgstr "Посилання для завантаження надано для msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "Пароль дуже короткий" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "Спільний файл команди спільноти" @@ -147,7 +149,7 @@ msgid "No activity now or the function is not supported." msgstr "Зараз немає подій або функція не підтримується." #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "Створена бібліотека" @@ -162,7 +164,8 @@ msgstr "Видалена бібліотека %(library_name)s " #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -170,8 +173,8 @@ msgstr "Видалена бібліотека %(library_name)s " #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -187,7 +190,7 @@ msgstr "Будь ласка, перевірте мережеве з’єднан #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -213,13 +216,16 @@ msgstr "Ключові дати" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -247,10 +253,11 @@ msgid "Email or Username" msgstr "Email або Ім'я користувача" #: seahub/auth/forms.py:23 seahub/auth/forms.py:195 -#: seahub/base/accounts.py:502 seahub/templates/js/lib-op-popups.html:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -310,7 +317,7 @@ msgid "New password confirmation" msgstr "Підтвердження нового паролю" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "Паролі не збігаються." @@ -322,7 +329,7 @@ msgstr "Старий пароль" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "Ваш старий пароль було введено невірно. Будь ласка, введіть його знову." -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "Пароль (ще раз)" @@ -331,15 +338,19 @@ msgstr "Пароль (ще раз)" msgid "Enter a valid e-mail address." msgstr "Введіть дійсну адресу електронної пошти." -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "Вийти" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "Неможливо надіслати email. Будь ласка, зверніться до адміністратора." -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "Ви не можете змінити пароль, будь ласка, зв'яжіться з адміністратором LDAP." @@ -426,6 +437,7 @@ msgstr "Поточний аватар: " #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -437,24 +449,24 @@ msgstr "Поточний аватар: " #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -515,43 +527,48 @@ msgstr "Ваш аватар успішно завантажено." msgid "Successfully deleted the requested avatars." msgstr "Аватар успішно видалено." -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "Email адреса" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "Ім'я користувача" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "Це значення повинно мати довжину 40" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "Введіть дійсну адресу електронної пошти." -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "Користувач з такою электронною адресою вже існує" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "Неправильний ідентифікатор користувача" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "ім'я" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "департамент" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "телефон" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "примітка" @@ -620,7 +637,7 @@ msgid "Recovered deleted directory" msgstr "Відновлений видалений каталог" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "Змінено назву або опис бібліотеки" @@ -672,22 +689,22 @@ msgstr[2] "%(seconds)d секунд тому" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -700,21 +717,21 @@ msgstr "Читання+Запис" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -787,15 +804,16 @@ msgstr "Email " #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -823,7 +841,7 @@ msgstr "Email " #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "Им'я" @@ -868,11 +886,11 @@ msgstr "Операції" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -893,21 +911,21 @@ msgstr "Редагувати" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -939,8 +957,9 @@ msgstr "Додайте контакти, щоб ви могли швидко о #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -950,8 +969,8 @@ msgstr "Додайте контакти, щоб ви могли швидко о #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "Email" @@ -1049,17 +1068,17 @@ msgstr "Опис дуже довгий (максимум 100 символів)" msgid "Name %s is not valid" msgstr "Ім'я %s неприпустиме" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "Відсутній аргумент" @@ -1121,7 +1140,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:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "Група не існує" @@ -1271,16 +1290,16 @@ msgstr "Будь ласка, клікніть та оберіть бібліот #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1357,21 +1376,21 @@ msgstr "Потрібене старе ім'я" msgid "Description is required." msgstr "Потрібен опис бібліотеки" -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "Доступ заборонено" @@ -1724,11 +1743,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "Користувачі" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1736,9 +1758,11 @@ msgstr "Інформація" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1749,12 +1773,16 @@ msgid "Libraries" msgstr "Бібліотеки" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1814,12 +1842,12 @@ msgstr "" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1832,11 +1860,11 @@ msgid "Size" msgstr "Розмір" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1846,7 +1874,7 @@ msgid "Last Update" msgstr "Останнє оновлення" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1874,10 +1902,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "Роль" @@ -1886,8 +1914,8 @@ msgstr "Роль" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "Створити як" @@ -1902,7 +1930,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "Статус" @@ -1922,7 +1950,7 @@ msgstr "Створено / Останній вхід" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "Активний" @@ -1934,7 +1962,7 @@ msgstr "Активний" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "Неактивний" @@ -1943,7 +1971,7 @@ msgstr "Неактивний" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "Пусто" @@ -1961,33 +1989,32 @@ msgstr "Видалити користувача" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "Власник" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "Адміністратор" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "Успішно видалено %s" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "Не вдалося видалити: користувач не існує" @@ -2011,6 +2038,7 @@ msgstr "Повідомлення" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "Час" @@ -2057,16 +2085,22 @@ msgid "Send a message..." msgstr "Надіслати повідомлення..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "Назад" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2083,18 +2117,20 @@ msgstr "Ви дійсно хочете видалити це обговорен #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "Так" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "Ні" @@ -2136,57 +2172,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "Новий запис на %s" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "Внутрішня помилка" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "Файл %(file_name)s було завантажено до %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "Файл %(file_name)s було завантажено до Видаленої бібліотекі" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s надав вам доступ до бібліотеки %(repo_name)s." -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "Ви отримали нове повідомлення від %(user)s." -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s нове обговорення." -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s створив нове обговорення в %(group_name)s." -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s запросив приєднання до групи %(group_name)s, перевірочне повідомлення: %(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2235,11 +2280,19 @@ msgstr "%(user)s надав Вам в спільне користування б #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "Ви отримали нове повідомлення від %(user)s." -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2247,7 +2300,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "Файл %(file_name)s був завантажений у вашу папку %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2255,14 +2308,14 @@ msgid "" "message: %(msg)s" msgstr "Користувач %(user)s попросив приєднатися до групи %(grp_name)s, повидомлення перевірки: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "Користувач %(user)s приєднався до вашої групи %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "Перейдіть до наступної сторінки для перевіки" @@ -2292,6 +2345,7 @@ msgid "Delete Notification" msgstr "Видалити Повідомлення" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2299,6 +2353,7 @@ msgstr "Видалити Повідомлення" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "Привіт," @@ -2367,14 +2422,17 @@ msgstr "Налаштування профілю" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "Налаштування" @@ -2608,40 +2666,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "E-mail не довше 512 символів" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "Пароль не може бути порожнім" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "Будь ласка введіть правильний пароль." +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "Посилання - Спільний доступ" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "З правом перегляду" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "З правом запису" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 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/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "Відвідування" @@ -2652,7 +2716,7 @@ msgstr "" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2668,7 +2732,7 @@ msgstr "Перегляд" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2701,7 +2765,7 @@ msgid "Folders - Share" msgstr "Каталоги - Спільний доступ" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "Каталоги" @@ -2712,15 +2776,15 @@ msgstr "Спільний доступ для" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "Права доступу" @@ -2786,175 +2850,211 @@ msgid "" "groups you are in." msgstr "Ви можете надати спільний доступ до бібліотек вашим друзям і колегам, натиснувши кнопку спільного доступу в особистих бібліотеках на вашій домашній сторінці, або при створенні нової бібліотеки." -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "Неможливо відкрити спільний доступ для всіх учасників. Повторіть спробу пізніше." -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "Успішно надано спільний доступ для всіх учасників, для перевірки. Перейдіть до Спільного доступу." -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "Тільки власник бібліотеки має право дати спільний доступ до неї." -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "Бібліотека не існує" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "Аргумент неприпустимий" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "Не вдалося закрити спільний доступ" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "ідентифікатор групи не є дійсним" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "Не вдалося заборонити спільний доступ: група не існує." -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "Спільний доступ успішно закрито" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "усі учасники" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "Група не існує" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "Будь ласка, оберіть каталог." -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "Успішно збережено." -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "Відправка посилання до спільного доступу не вдалося. Послуги електронної пошти не налаштовані належним чином. Будь ласка, зв'яжіться з адміністрацією." -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "Неприпустимі аргументи" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "Бібліотека не існує" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "Вибачте, але такої сторінки не знайдено." #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "Вийти з консолі адміністратора" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "Закрити" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: 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:71 -msgid "See All Notifications" -msgstr "Дивитися усі повідомлення" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "Вихід" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "Системний адміністратор" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "Сповіщення" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "Ласкаво просимо до Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile організує файли в бібліотеках. Кожна бібліотека може бути синхронізована і надана у спільний доступ окремо. Ми створили персональну бібліотеку для вас. В подальшому ви можете створювати інші бібліотеки." -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2962,7 +3062,7 @@ msgid "" msgstr "Seafile організовує файли в бібліотеках. Кожна бібліотека може бути синхронізована і надана у спільне користування окремо. Однак, так як ви гість, ви не можете створювати бібліотеки." #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "Реєстрація" @@ -2992,28 +3092,31 @@ msgid "Please enter the password." msgstr "Будь ласка, введіть пароль" #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: 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:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3022,9 +3125,12 @@ msgstr "" msgid "Current Path:" msgstr "Поточний шлях:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "Користувач" @@ -3034,11 +3140,16 @@ msgstr "Користувач" msgid "Type" msgstr "" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "Назва приладу" @@ -3052,6 +3163,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3077,10 +3189,6 @@ msgstr "Чернетку збережено." 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 "Пароль буде зберігатися на сервері протягом 1 години." @@ -3205,7 +3313,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "За замовчуванням" @@ -3230,10 +3338,10 @@ msgid "Password is required." msgstr "Потрібен пароль." #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "Історія" @@ -3329,85 +3437,90 @@ msgstr "Seafile" msgid "About Us" msgstr "" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "Файли" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "Мої" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "Спільні" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "Спільноти" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "Всі групи" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "Неможливо змінити файл." -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "Позначені" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "Дії" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "Персональна Wiki" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "Пристрої" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "Спільний доступ" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "Посилання" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "" @@ -3425,18 +3538,12 @@ msgid "Shared Libs" msgstr "" #: 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/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "Ім'я каталогу" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "Новий файл" @@ -3454,8 +3561,7 @@ msgstr "формат простий розмітки." #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "Деталі" @@ -3519,7 +3625,123 @@ msgstr "" msgid "Don't replace" msgstr "" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "Спільноти" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "Трафік" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "Logs" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "Платформа" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "Останній доступ" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "Посилання видалено " + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "Почистити" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "Помилка" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "Нова бібліотека" @@ -3533,13 +3755,14 @@ msgid "Encrypt" msgstr "Шифрувати" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(не менше %(repo_password_min_length)s символів)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "Підтвердіть пароль" @@ -3549,34 +3772,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "Доступ" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "Більше операцій" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "Перейменувати" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3599,58 +3822,59 @@ msgid "Folder Permission" msgstr "Права доступу на каталог" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "Перемістити" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "Копіювати" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "Завантажити" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "Завантажити файл" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3658,175 +3882,177 @@ msgstr "" msgid "Trash" msgstr "Кошик" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "Суб-бібліотеки" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "Більше операцій" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "Позначити" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "Зняти відмітку" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "Посилання з правами перегляду" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "Посилання з правами запису" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "Додати захист паролем" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "Створити" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "Посилання: " -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "Надіслати" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "Надіслати: " -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "Email (и), розділені ','" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "Повідомлення (опціонально)" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "Відправка ..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 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:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "Посилання з правами запису:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "Група" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "Залишити спільний доступ" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "Wiki" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3837,182 +4063,191 @@ msgstr "Wiki" msgid "Members" msgstr "Учасники" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "Обговорення" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "Права доступу користувача" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "іконка" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "Зняти відмітку" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "Надано в загальний доступ " -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "Деталі модифікації" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "Пошук файлів в wiki" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "Пошук файлів в бібліотеці" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "Пошук файлів" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "розширений" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "Відповідь" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "Імпортувати учасників" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "Виключити" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "Залишити групу" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "Змінити назву групи на " -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "Перенесення Групи до" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "Імпорт учасників групи з CSV файлу" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "Формат файлу: user@mail.com" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "Зберігати повну історію" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "Не зберігати історію" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "Зберегти лише період історії: " -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "днів" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "Каталог" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "Оберіть каталог" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "Старий пароль" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "Новий пароль (повинен мати не менше %(repo_password_min_length)s символів)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "Повтор нового паролю" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "Посилання видалено " +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "Дивитися усі повідомлення" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4029,6 +4264,11 @@ msgstr "Ви можете створювати бібліотеки для ор msgid "No library is shared to you" msgstr "Жодна бібліотека не надана вам у спільний доступ" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "Спільноти" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "" @@ -4075,10 +4315,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "Група є місце спілкування для вас і ваших друзів. У ній ви можете залишати повідомлення і спільно використовувати бібліотеки. Групи до яких ви можете приєднатись перераховані тут." -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "Назва групи" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4118,14 +4354,6 @@ msgid "" " page, and they will be listed here." msgstr "Можна позначити важливі файли, натиснувши кнопку \"Позначити\" на сторінці перегляду - вони відображатимуться тут." -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "Платформа" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "Останній доступ" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# Біблотеки" @@ -4155,7 +4383,7 @@ msgstr "" #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4175,33 +4403,33 @@ msgstr "CAPTCHA" msgid "Not clear? Refresh it." msgstr "Не видно? Поновіть." -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "Неправильний email або пароль" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "Пам’ятати мене %(remember_days)s діб" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "Не вдалося поновити CAPTCHA, спробуйте ще раз." -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4242,10 +4470,6 @@ msgstr "" msgid "Current Password" msgstr "" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4382,11 +4606,6 @@ msgstr "E-mail не може бути порожнім" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s Сміття" -#: 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 "Видалити час" @@ -4408,12 +4627,12 @@ msgid "1 month ago" msgstr "за місяць" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "" @@ -4643,7 +4862,7 @@ msgid "Please enter password" msgstr "Будь ласка, введіть пароль" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "Видалення виконано успішно." @@ -4784,6 +5003,15 @@ msgstr "Позначки" msgid "Successfully unstarred." msgstr "Позначка видалена." +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "Новий каталог" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "Ім'я каталогу" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "закрито" @@ -4809,88 +5037,62 @@ msgstr "Завантаження файлу не вдалося" msgid "Failed to get upload url" msgstr "Не вдалося завантажити посилання" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "Файл занадто великий" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "Файл занадто малий" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "Заборонений тип файлів" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: 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/sysadmin/admin_repo_view.html:290 #: 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/sysadmin/admin_repo_view.html:291 #: 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/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "Завантажено" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "скасовано" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "Позначити" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "Потрібен Email." -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "Спільноти" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "Трафік" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "Logs" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "Автор" @@ -4942,6 +5144,13 @@ msgstr "" msgid "Files / Size" msgstr "" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "" @@ -4972,10 +5181,6 @@ msgstr "" msgid "No library has shared to this group" msgstr "" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4987,30 +5192,6 @@ msgstr "" msgid "Delete Group" msgstr "Видалити групу" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5174,12 +5355,12 @@ msgid "Max User Number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "" @@ -5319,7 +5500,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "" @@ -5332,7 +5513,7 @@ msgid "Admins" msgstr "Адміністратори" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "" @@ -5358,7 +5539,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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "Гость" @@ -5446,6 +5627,12 @@ msgstr "E-Mail: %(email)s" msgid "Password: %(password)s" msgstr "Пароль: %(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5523,24 +5710,24 @@ msgstr "для" msgid "Sorry, this user is not registered yet." msgstr "На жаль, цей користувач не зареєстрований." -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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_base.html:46 #: 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 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "top" @@ -5636,8 +5823,8 @@ msgstr "" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "Доступ заборонено" @@ -5666,8 +5853,8 @@ msgid "Duplicated filename" msgstr "Дублікат файлу" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "Файл не існує" @@ -5726,11 +5913,11 @@ msgstr "Не вдалося заборонити спільне використ msgid "No revisions found" msgstr "" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "" @@ -5758,12 +5945,12 @@ msgstr "Успішно відновлено %(path)s до о msgid "\"%s\" does not exist." msgstr "" -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "Внутрішня помилка" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "Не вдається завантажити каталог \"%s\": занадто великий розмір." @@ -5773,11 +5960,11 @@ msgstr "Не вдається завантажити каталог \"%s\": за msgid "Unable to download \"%s\"" msgstr "Не вдається завантажити \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "Успішно закритий доступ до \"%s\"." -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "Успішно закритий доступ до \"%s\"." @@ -5794,7 +5981,7 @@ msgid "The group doesn't exist" msgstr "Група не існує" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "Бібліотека зашифрована." @@ -5872,262 +6059,266 @@ msgstr "Збій отримання переліку бкованих файлі msgid "Wrong repo id" msgstr "Невірний repo id" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "Невдало" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "Немає конфлікту при злитті." -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "Не вдається переглянути бібліотеку" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "Не вдалося зберегти налаштування на сервері" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "Налаштування збережені." -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "Ім’я користувача %s неприпустиме." -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "Користувача %s не знайдено." -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "Користувача %s немає у поточній спільноті." -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "" -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "Неможливо змінити пароль, Ви не власник." -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "Операція не успішна" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "Файл занадто великий" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTP помилка: файл не може бути відкритий в он-лайн режимі." -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URL помилка: файл не може бути відкритий в он-лайн режимі." -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "Обраний режим шифрування не є правильним." -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "Шевідомий алгоритм шифрування файлу." -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "Розмір файлу перевищує %s, і не може бути відкритий в онлайн режимі." -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "Не вдається переглянути файл" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "Невірний формат файла." -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "Бібліотека не існує." -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "Бібліотека зашифрована." -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "Неможливо редагувати файл." -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "Файл не існує." -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "Редагування онлайн не передбачається для цього типу файлів." -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "Неможливо отримати доступ до файлу: трафік для загального файлу вичерпався." -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "Не вдалося встановити квоту: внутрішня помилка сервера" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "Права адміністратора %s успішно відкликані" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "Не вдалося відкликати адміністратора: користувач не існує" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "Ваш обліковий запис %s активовано" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "Пароль було змінно на %s" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "Пароль успішно змінено на %(passwd)s, повідомлення було надіслано %(user)s." -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "Пароль успішно змінено на %(passwd)s, але повідомлення не було надіслано %(user)s, будь ласка, перевірте налаштування електронної пошти." -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "Пароль успішно змінено на %(passwd)s для користувача %(user)s." -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6135,107 +6326,107 @@ msgid "" "configured." msgstr "Пароль успішно змінено на %(passwd)s для користувача %(user)s. Але повідомлення не було надіслано, бо не правильно налаштована поштова служба." -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "Не вдалося змінити пароль: користувач не існує." -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "Ви запрошені приєднатися до %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "" -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "Успішно додано користувача %s. Повідомлення було надіслано електронною поштою." -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "Успішно додано користувача %s. Але сталася помилка при відправці email, будь ласка, перевірте налаштування email." -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "Успішно доданий користувач %s." -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "Успішно доданий користувач %s. Але повідомлення не було надіслано, томущо неправильно налаштована поштова служба." -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "Не вдалося передати, неприпустимі аргументи." -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "Неможливо наділати повідомлення для %s, користувач не знайдений." -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "Успішно передано." -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "Системна бібліотека не може бути видалена." -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "%s надано права адміністратора." -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "Не вдалося %s надати права адміністратора: користувач не існує" -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "Імпорт виконано успішно" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "В першу чергу, виберіть файл csv ." -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "" diff --git a/locale/uk/LC_MESSAGES/djangojs.po b/locale/uk/LC_MESSAGES/djangojs.po index 0d805cc24a..08e8f76d49 100644 --- a/locale/uk/LC_MESSAGES/djangojs.po +++ b/locale/uk/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Ukrainian (http://www.transifex.com/haiwen/seahub/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Переміщення файлу %(index)s із %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Копіювання файлу %(index)s із %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "Завантаження файлу відмінено" msgid "File Upload failed" msgstr "Завантаження файлу не вдалося" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Не вдалося завантажити посилання" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Будь ласка, введіть 1 або більше літер" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Збігів немає" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Пошук..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Завантаження не успішне" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/vi/LC_MESSAGES/djangojs.po b/locale/vi/LC_MESSAGES/djangojs.po index 3ca08b919d..d782674e6d 100644 --- a/locale/vi/LC_MESSAGES/djangojs.po +++ b/locale/vi/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Vietnamese (http://www.transifex.com/haiwen/seahub/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "Vừa mới" @@ -30,19 +30,19 @@ msgstr "Vừa mới" msgid "Name is required" msgstr "Yêu cầu tên" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "Vui lòng nhập mật khẩu" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "Vui lòng nhập lại mật khẩu" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "Mật khẩu quá ngắn" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "Mật khẩu không trùng khớp" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "Vui lòng kiểm tra lại network." + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "Tập tin mới" @@ -87,35 +112,40 @@ msgstr "Xóa thư mục" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "Thất bại. Vui lòng kiểm tra lại network." #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ msgstr "Thất bại." #: static/scripts/app/views/dialogs/dirent-mvcp.js:119 #: static/scripts/app/views/dialogs/dirent-mvcp.js:147 -#: static/scripts/app/views/dir.js:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "Hủy bỏ" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "Đường dẫn không hợp lệ" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: static/scripts/app/views/repo-shared-link.js:84 -msgid "Please check the network." -msgstr "Vui lòng kiểm tra lại network." - #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:186 msgid "Please click and choose a directory." msgstr "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "Đang tải..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "Mở ở Tab mới" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "Yêu cầu mật khẩu." -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "Điều này được yêu cầu" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "Chỉ có một phần mở rộng này, vui lòng nhập tên" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "Đang xử lý..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "Xóa %(name)s thành công" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "Xóa %(name)s và %(amount)s item khác thành công" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "Xóa item" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "Bạn có chắc bạn muốn xóa những item đã chọn" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "Di chuyển %(name)s thành công." -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "Di chuyển %(name)s và 1 item khác thành công." -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "Di chuyển %(name)s và %(amount)s item khác thành công." -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "Sao chép %(name)s thành công." -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "Sao chép %(name)s và 1 item khác thành công." -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "Sao chép %(name)s và %(amount)s item khác thành công." -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "Lỗi nội bộ. Chuyển %(name)s thất bại" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "Lỗi nội bộ. Sao chép %(name)s thất bại" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "Moving file %(index)s of %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "Copying file %(index)s of %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "Kết quả tải lên tập tin rỗng" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "Hủy tải dữ liệu" msgid "File Upload failed" msgstr "Tải lên thất bại" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "Tạo đường dẫn tải lên thất bại" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "Dữ liệu bị khóa" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "Xóa thành công" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "Ẩn" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "Vui lòng nhập số đúng" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "Vui lòng chọn ít nhất một địa chỉ email" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "Gởi thành công đến {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "Gởi thất bại đến {placeholder}" @@ -630,22 +648,26 @@ msgstr "Thành công" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "Vui lòng thêm ký tự" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "Không tìm thấy" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "Đang tìm..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "Lỗi loading" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/locale/zh_CN/LC_MESSAGES/django.po b/locale/zh_CN/LC_MESSAGES/django.po index bb5b5ddc5f..b6da78e667 100644 --- a/locale/zh_CN/LC_MESSAGES/django.po +++ b/locale/zh_CN/LC_MESSAGES/django.po @@ -4,6 +4,7 @@ # # Translators: # Alfred , 2015 +# Daniel Pan , 2016 # imwhatiam , 2014-2016 # Daniel Pan , 2015-2016 # lj , 2014 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:37+0000\n" -"Last-Translator: imwhatiam \n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 13:37+0000\n" +"Last-Translator: Daniel Pan \n" "Language-Team: Chinese (China) (http://www.transifex.com/haiwen/seahub/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,14 +23,15 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "用户 %s 已经是群组成员。" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "机构内无用户 %s 。" @@ -56,8 +58,8 @@ msgstr "密码错误" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "服务器内部错误" @@ -67,34 +69,34 @@ msgstr "解密资料库出错" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "由于邮箱服务未正确配置,发送共享链接失败,请联系管理员。" -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "文件" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "有人在 %s 上共享了一个文件给你" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "目录" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "在 %s 上,有一文件夹共享给你。" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "有人在 %s 上共享了一个上传链接给你" @@ -103,14 +105,15 @@ msgstr "有人在 %s 上共享了一个上传链接给你" msgid "Password is too short." msgstr "密码长度太短。" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "密码太短" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "文件 合作 团队 团体" @@ -146,7 +149,7 @@ msgid "No activity now or the function is not supported." msgstr "暂无活动 或 该功能不支持。" #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "创建了资料库" @@ -161,7 +164,8 @@ msgstr "删除了资料库 %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -169,8 +173,8 @@ msgstr "删除了资料库 %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -186,7 +190,7 @@ msgstr "请检查网络是否已连接。" #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -212,13 +216,16 @@ msgstr "重要日期" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -246,10 +253,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -309,7 +317,7 @@ msgid "New password confirmation" msgstr "新密码确认" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "两次输入的密码不一致" @@ -321,7 +329,7 @@ msgstr "旧密码" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "旧密码输入错误。请重新输入。" -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "请再次输入密码" @@ -330,15 +338,19 @@ msgstr "请再次输入密码" msgid "Enter a valid e-mail address." msgstr "请输入有效的邮箱地址。" -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "登录出错次数超过限制,该账号已被冻结。" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "退出" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "邮件发送失败,请联系管理员。" -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "不能更新密码,请联系 LDAP 管理员。" @@ -425,6 +437,7 @@ msgstr "当前头像:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -436,24 +449,24 @@ msgstr "当前头像:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -514,43 +527,48 @@ msgstr "更新成功。" msgid "Successfully deleted the requested avatars." msgstr "删除成功。" -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "%(site)s 上的账号 %(account)s 已被冻结。" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "邮箱地址" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "用户名" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "长度为40字符" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "请输入有效的邮箱地址。" -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "该邮箱已被注册" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "无效user id" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "名称" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "部门" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "电话" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "备注" @@ -619,7 +637,7 @@ msgid "Recovered deleted directory" msgstr "还原已删除的目录" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "修改了资料库名称或描述" @@ -663,22 +681,22 @@ msgstr[0] "%(seconds)d 秒前" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -691,21 +709,21 @@ msgstr "可读写" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -776,15 +794,16 @@ msgstr "邮箱" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -812,7 +831,7 @@ msgstr "邮箱" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "名称" @@ -857,11 +876,11 @@ msgstr "操作" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -882,21 +901,21 @@ msgstr "编辑" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -928,8 +947,9 @@ msgstr "联系人用来在共享资料库和发送文件外链时的快速补全 #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -939,8 +959,8 @@ msgstr "联系人用来在共享资料库和发送文件外链时的快速补全 #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "邮箱" @@ -1038,17 +1058,17 @@ msgstr "描述太长(不超过100个汉字)" msgid "Name %s is not valid" msgstr "名称 %s 含有无效字符" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "参数缺失" @@ -1110,7 +1130,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:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "群组不存在。" @@ -1260,16 +1280,16 @@ msgstr "请选择资料库。" #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1346,21 +1366,21 @@ msgstr "名称为必填项。" msgid "Description is required." msgstr "描述为必填项" -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "没有权限" @@ -1713,11 +1733,14 @@ msgstr "退出" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "用户" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1725,9 +1748,11 @@ msgstr "信息" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1738,12 +1763,16 @@ msgid "Libraries" msgstr "资料库" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1803,12 +1832,12 @@ msgstr "拥有的资料库" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1821,11 +1850,11 @@ msgid "Size" msgstr "大小" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1835,7 +1864,7 @@ msgid "Last Update" msgstr "更新时间" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1863,10 +1892,10 @@ msgid "This user has not created any libraries" msgstr "此用户没有创建资料库" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "用户角色" @@ -1875,8 +1904,8 @@ msgstr "用户角色" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "创建时间" @@ -1891,7 +1920,7 @@ msgstr "此用户没有创建或加入群组" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "状态" @@ -1911,7 +1940,7 @@ msgstr "创建于/最后登录" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "活跃" @@ -1923,7 +1952,7 @@ msgstr "活跃" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "不活跃" @@ -1932,7 +1961,7 @@ msgstr "不活跃" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "暂无" @@ -1950,33 +1979,32 @@ msgstr "删除用户" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "拥有者" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "管理" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "群组成员" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s 删除成功。" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "删除失败:该用户不存在" @@ -2000,6 +2028,7 @@ msgstr "消息" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "时间" @@ -2046,16 +2075,22 @@ msgid "Send a message..." msgstr "发送消息..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "前一页" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2072,18 +2107,20 @@ msgstr "确定要删除这条讨论?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "确定" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "取消" @@ -2125,57 +2162,66 @@ msgid "Virus detected on %s" msgstr "在 %s 检测到病毒" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "%s 有新消息" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "内部错误" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "新文件 %(file_name)s 上传到了 %(name)s" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "新文件 %(file_name)s 上传到删除的资料库" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s 共享了资料库%(repo_name)s给你" -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "%(user)s 共享了资料库 %(repo_name)s 到群组 %(group_name)s 中。" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "你收到来自 %(user)s 的新消息。" -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "%(group_name)s 有新讨论。" -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "%(user)s 在群组 %(group_name)s 中发布了一个新的讨论。" -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s 请求加入到群组 %(group_name)s,验证信息:%(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2222,11 +2268,19 @@ msgstr "%(user)s 共享了资料库 %(lib_na #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "%(user)s 共享了资料库 %(lib_name)s 到群组 %(group_name)s 中。" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "%(user)s 给你发送了一条 新消息。" -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2234,7 +2288,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "文件 %(file_name)s 已经上传到 %(folder_name)s." -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2242,14 +2296,14 @@ msgid "" "message: %(msg)s" msgstr "用户 %(user)s 请求加入群组 %(grp_name)s , 认证信息: %(msg)s" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "用户 %(user)s 将你加入到群组 %(grp_name)s" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "请到这个页面查看:" @@ -2279,6 +2333,7 @@ msgid "Delete Notification" msgstr "删除通知" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2286,6 +2341,7 @@ msgstr "删除通知" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "你好," @@ -2354,14 +2410,17 @@ msgstr "个人信息设置" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "设置" @@ -2595,40 +2654,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "邮箱不能超过512个字符" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "密码不能为空" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "请输入正确的密码。" +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "您的验证码是 %(code)s,一小时内有效。" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "链接 - 共享" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "下载链接" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "上传链接" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 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/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "访问次数" @@ -2639,7 +2704,7 @@ msgstr "过期时间" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2655,7 +2720,7 @@ msgstr "查看" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2688,7 +2753,7 @@ msgid "Folders - Share" msgstr "文件夹 - 共享" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "文件夹" @@ -2699,15 +2764,15 @@ msgstr "共享给" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "权限" @@ -2773,175 +2838,211 @@ msgid "" "groups you are in." msgstr "你可以通过在你的个人页面点击你自己的资料库的共享图标, 或是在你所在的小组里创建一个新的资料库来将你的资料库共享给你的朋友和同事。" -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "邮箱验证" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "请提供您的邮箱地址以继续。" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "获取验证码" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "验证码" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "验证码已发送到改邮箱。" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "共享到公共资料失败,请稍后再试" -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "共享到公共资料成功,请前往 共享 查看。" -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "只有资料库拥有者才有共享权限。" -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "资料库不存在" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "无效参数" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "参数无效" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "取消共享失败" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "无效的group id" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "取消共享失败,该群组不存在" -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "取消共享成功" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "所有成员" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "链接不存在" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "内部错误,请检查您输入的邮箱" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "请选择目录。" -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "保存成功。" -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "由于邮箱服务未正确配置,发送上传外链失败,请联系管理员。" -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "你没有权限创建外链" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "非法参数" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "资料库不存在" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "目录不存在" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "请检查您输入的邮箱" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "邮箱地址不合法" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "共享链接不存在" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "查看共享链接的验证码" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "发送验证码失败,请稍后再试。" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "对不起,你访问的页面不存在。" #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "退出系统管理" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "关闭" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: 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:71 -msgid "See All Notifications" -msgstr "查看所有提醒。" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "查看个人资料" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "退出" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "系统管理" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "我们不再支持当前版本的IE。请升级到 IE10 及以上。" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "通知" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "欢迎来到Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile把文件组织到资料库里。每个资料库可以被单独的同步和共享。我们已经为你创建了一个私人资料库。你之后可以再创建其他的资料库。" -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2949,7 +3050,7 @@ msgid "" msgstr "Seafile 通过资料库来管理文件,每个资料库可以单独加密与共享,但并不对“访客”用户提供此功能。" #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "注册" @@ -2979,28 +3080,31 @@ msgid "Please enter the password." msgstr "请输入密码。" #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: 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:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "访问日志" @@ -3009,9 +3113,12 @@ msgstr "访问日志" msgid "Current Path:" msgstr "当前路径:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "用户" @@ -3021,11 +3128,16 @@ msgstr "用户" msgid "Type" msgstr "类型" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "设备名称" @@ -3039,6 +3151,7 @@ msgstr "匿名用户" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3064,10 +3177,6 @@ msgstr "草稿已保存。" 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 "密码将在服务器上保存一小时。" @@ -3192,7 +3301,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "默认" @@ -3217,10 +3326,10 @@ msgid "Password is required." msgstr "密码为必填项" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "历史" @@ -3316,85 +3425,90 @@ msgstr "海文互知" msgid "About Us" msgstr "关于我们" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "文件" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "我拥有的" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "共享给我的" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "机构" +msgstr "公共" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "所有群组" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "工具" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "添加模块" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "星标文件" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "文件活动" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "个人维基" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "设备" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "共享管理" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "链接" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "上传目录" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "增加自动过期" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "天数" @@ -3412,18 +3526,12 @@ msgid "Shared Libs" msgstr "共享的资料库" #: 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/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "目录名" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "新建文件夹" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "新建文件" @@ -3441,8 +3549,7 @@ msgstr "简单的标记格式" #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "详情" @@ -3506,7 +3613,123 @@ msgstr "替换" msgid "Don't replace" msgstr "不替换" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "机构" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "机构" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "流量" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "日志" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "病毒扫描" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "系统信息" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "企业版" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "到期" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "社区版" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "升级到专业版" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "用户数限制" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "桌面客户端" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "移动客户端" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "错误" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "平台" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "版本" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "最后访问时间" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "没有链接的客户端" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "断开连接" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "清空" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "设备" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "错误" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "没有同步错误" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "新建资料库" @@ -3520,13 +3743,14 @@ msgid "Encrypt" msgstr "加密" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(至少%(repo_password_min_length)s个字符)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "请再次输入密码" @@ -3536,34 +3760,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "Broken (请联系您的管理员来修复该资料库)" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "共享" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "更多操作" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "重命名" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3586,58 +3810,59 @@ msgid "Folder Permission" msgstr "目录权限" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "移动" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "复制" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "上传" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "上传文件" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "新建文件夹" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "列表" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "列表视图" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "格点" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "网格视图" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3645,175 +3870,177 @@ msgstr "网格视图" msgid "Trash" msgstr "回收站" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "子资料库" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "操作" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "更多操作" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "客户端打开" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "已加星标" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "未加星标" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "已锁定" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "解锁" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "锁定" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "获取失败" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "下载链接" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "上传链接" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "共享给用户" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "共享给群组" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "增加密码保护" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "(至少 %(share_link_password_min_length)s 个字符)" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "显示" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "生成随机密码" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "生成链接" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "链接:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "直接下载链接:" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "发送" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "发送到:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "输入邮箱,多个以,分隔" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "附加消息(可选):" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "发送中..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 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:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "上传链接:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "群组" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "退出共享" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "维基" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3824,182 +4051,191 @@ msgstr "维基" msgid "Members" msgstr "成员" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "讨论" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "用户权限" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "群组权限" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "图标" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "取消星标" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "资料库类型" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "共享来源" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "选择要共享的资料库" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "已删除的资料库" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "修改详情" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "在当前维基搜索文件" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "在当前资料库搜索文件" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "搜索文件" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "高级" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "还没有资料库共享到群组" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "拥有者" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "管理" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "回复" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "添加维基" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "删除维基" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "导入成员" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "管理成员" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "解散" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "退出群组" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "重命名群组为" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "将小组转让给" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "从 CSV 文件中导入群组成员" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "文件格式:用户名(邮箱)" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "添加" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "资料库历史设置已被管理员禁用" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "保留所有历史" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "不保留历史" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "仅保留一段时间的历史:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "天" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "创建者" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "目录" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "选择一个目录" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "旧密码" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" -msgstr "新密码(至少%(repo_password_min_length)s个字符)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" +msgstr "新密码" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "再次输入新密码:" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" -msgstr "断开连接" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" +msgstr "查看所有提醒。" #: seahub/templates/libraries.html:21 msgid "You have not created any libraries" @@ -4016,6 +4252,11 @@ msgstr "你可以新建一个资料库来组织你的文件资料,比如为每 msgid "No library is shared to you" msgstr "还没有资料库共享给你" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "机构" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "添加资料库" @@ -4062,10 +4303,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "在群组中,可以互相留言,协作办公。你所加入的群组会被全部列出在这里。" -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "群组名称" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4105,14 +4342,6 @@ msgid "" " page, and they will be listed here." msgstr "你可以在文件浏览页面点击“添加星标”按钮给重要的文件加上星标,这些文件会显示在这里。" -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "平台" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "最后访问时间" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "# 资料库" @@ -4142,7 +4371,7 @@ msgstr "请在 %(expiration_days)s 天内,点击以下链接激活您的账号 #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4162,33 +4391,33 @@ msgstr "验证码" msgid "Not clear? Refresh it." msgstr "看不清楚?刷新下。" -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "你输入的邮箱或密码不正确" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "%(remember_days)s天内保持登录" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "Shibboleth" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "Kerberos" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "刷新验证码失败,请稍后尝试。" -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "邮箱或用户名不能为空" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4229,10 +4458,6 @@ msgstr "继续前请更新你的密码。" msgid "Current Password" msgstr "当前密码" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "新密码" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4369,11 +4594,6 @@ msgstr "邮箱不能为空" msgid "%(repo_dir_name)s Trash" msgstr "%(repo_dir_name)s 回收站" -#: 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 "删除时间" @@ -4395,12 +4615,12 @@ msgid "1 month ago" msgstr "1个月之前" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "成功" @@ -4630,7 +4850,7 @@ msgid "Please enter password" msgstr "请输入密码" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "删除成功。" @@ -4771,6 +4991,15 @@ msgstr "星标文件" msgid "Successfully unstarred." msgstr "取消星标成功。" +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "新建目录" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "目录名" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "关闭" @@ -4796,88 +5025,62 @@ msgstr "文件上传失败" msgid "Failed to get upload url" msgstr "无法获得上传链接" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "文件太大" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "文件太小" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "不支持的文件类型" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: 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/sysadmin/admin_repo_view.html:290 #: 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/sysadmin/admin_repo_view.html:291 #: 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/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "已上传" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "已取消" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "上传" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "必填项。" -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "机构" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "机构" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "流量" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "日志" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "病毒扫描" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "创建者" @@ -4929,6 +5132,13 @@ msgstr "删除资料库" msgid "Files / Size" msgstr "文件数量 / 资料库大小" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "注意:通过 Web 界面设置的选项会保存在数据库 (seahub-db/constance_config) 中。他们比配置文件中的设置有更高的优先级。" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "请确认密码以便继续" @@ -4959,10 +5169,6 @@ msgstr "群组信息" msgid "No library has shared to this group" msgstr "还没有资料库共享到群组" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "管理" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4974,30 +5180,6 @@ msgstr "导出到 Excel" msgid "Delete Group" msgstr "删除群组" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "系统信息" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "企业版" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "到期" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "社区版" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "升级到专业版" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "用户数限制" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "所有机构" @@ -5161,12 +5343,12 @@ msgid "Max User Number" msgstr "最大用户数量" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "输入应该为数值" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "输入数值应该大于0" @@ -5306,7 +5488,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "LDAP(已导入)" @@ -5319,7 +5501,7 @@ msgid "Admins" msgstr "管理员" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "上次登陆" @@ -5345,7 +5527,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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "访客" @@ -5433,6 +5615,12 @@ msgstr "邮箱:%(email)s" msgid "Password: %(password)s" msgstr "密码:%(password)s" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "账号 %(user)s 因为登录出错次数超过限制已被冻结。请查看:" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5510,24 +5698,24 @@ msgstr "到" msgid "Sorry, this user is not registered yet." msgstr "抱歉,该用户还未注册。" -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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_base.html:46 #: 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 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "回到顶部" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "top" @@ -5623,8 +5811,8 @@ msgstr "无效参数。" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "没有权限" @@ -5653,8 +5841,8 @@ msgid "Duplicated filename" msgstr "已存在同名的文件" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "文件不存在" @@ -5713,11 +5901,11 @@ msgstr "\"%s\" 取消共享失败" msgid "No revisions found" msgstr "未找到历史版本" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "查看文件锁定时出错" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "文件已锁定" @@ -5745,12 +5933,12 @@ msgstr "成功还原 %(path)s 到根目录。" msgid "\"%s\" does not exist." msgstr "\"%s\" 不存在。" -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "内部错误" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "无法下载 \"%s\":目录大小超过限制。" @@ -5760,11 +5948,11 @@ msgstr "无法下载 \"%s\":目录大小超过限制。" msgid "Unable to download \"%s\"" msgstr "无法下载 \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "\"个人维基\"模块添加成功。" -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "\"个人维基\"模块删除成功。" @@ -5781,7 +5969,7 @@ msgid "The group doesn't exist" msgstr "该群组不存在" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "该资料库已加密" @@ -5859,262 +6047,266 @@ msgstr "获取文件块列表失败" msgid "Wrong repo id" msgstr "错误的repo id" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "失败" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "无效的上传链接" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "上传链接中含无效的repo id" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "合并没有冲突。" -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "资料库信息编辑失败。" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "设置失败" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "设置已保存。" -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "用户名 %s 含有无效字符" -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "未找到用户 %s 。" -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "%s 用户不在当前机构。" -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "无法将资料库转让给机构用户 %s。" -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "更改密码失败。" -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "错误的文件夹权限,应该是 \"rw\" 或 \"r\"" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "路径不应以 \"/\" 开始" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "路径不应该以 \"/\" 结尾" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "无效的路径" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "无效用户,用户应已注册" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "操作失败" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "错误的文件夹权限" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "请先添加文件夹权限" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "请检查您所输入的邮箱已经所选择的联系人" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "无效的组" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "群组不存在" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "失败,文件过大" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTPError: 无法在线打开该文件" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URLError: 无法在线打开该文件" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "文件编码不合适" -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "文件编码无法识别" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "文件大小超过 %s,无法在线查看。" -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "加密资料库不能在线预览文件。" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "无法查看该文件" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "错误的文件格式。" -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "无法下载文件,无效的文件路径" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "无法下载文件,错误的文件路径" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "无法下载文件,共享外链流量已用完。" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "无法查看文件,外链流量已用完。" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "资料库不存在" -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "该资料库已加密" -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "无法编辑该文件" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "该文件不存在" -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "该类型文件不能在线编辑。" -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "无法下载文件" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "无法访问文件:外链流量已用尽。" -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "下载失败:未找到目录" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "无法访问资料库" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "目录路径错误,无法访问资料库。" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "无效的用户名" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "导出 Excel 失败" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "配额设置失败:最大配额是 %d MB" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "设置配额失败:内部错误" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "删除失败:该用户为机构创建者" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "成功为%s移除试用" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "成功取消 %s 的管理权限" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "取消管理员权限失败:该用户不存在" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "你的 %s 帐户已激活。" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "%s 密码已重置" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "密码已重置为 %(passwd)s, 通知邮件已发送给 %(user)s。" -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "成功将用户密码重置为 %(passwd)s, 但发送通知邮件到 %(user)s 失败,请检查你的邮件配置。" -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "成功将用户 %(user)s 的密码重置为 %(passwd)s。" -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6122,107 +6314,107 @@ msgid "" "configured." msgstr "成功将用户 %(user)s 的密码重置为 %(passwd)s, 但是由于邮箱服务未正确配置,通知邮件无法发送。" -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "密码重置失败:用户不存在" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "你被邀请加入 %s" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "添加用户 %s 失败。" -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "成功添加用户 %s。通知邮件已发送。" -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "成功添加用户 %s。但发送通知邮件出错,请检查邮箱配置。" -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "成功添加用户 %s。" -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "成功添加用户 %s。 但由于邮件服务未正确配置,通知邮件无法发送。" -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "重命名机构失败" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "删除成功。" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "转让失败, 参数无效" -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "转让失败,未找到用户 \"%s\"" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "无法转让机构资料库" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "无法将资料库转让给机构用户 %s" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "转让。" -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "系统资料库无法被删除。" -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "删除失败,请稍后再试。" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "成功设置 %s 为管理员。" -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "无法设置 %s 为管理员:用户不存在。" -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "导入成功。" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "请先选择一个 CSV 文件。" -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "无效设置" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "无效数值" diff --git a/locale/zh_CN/LC_MESSAGES/djangojs.po b/locale/zh_CN/LC_MESSAGES/djangojs.po index 55ef5a97d0..9b873be285 100644 --- a/locale/zh_CN/LC_MESSAGES/djangojs.po +++ b/locale/zh_CN/LC_MESSAGES/djangojs.po @@ -4,6 +4,7 @@ # # Translators: # Alfred , 2015 +# Daniel Pan , 2016 # imwhatiam , 2015-2016 # Daniel Pan , 2015 # zheng xie , 2015 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:40+0000\n" -"Last-Translator: imwhatiam \n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 13:39+0000\n" +"Last-Translator: Daniel Pan \n" "Language-Team: Chinese (China) (http://www.transifex.com/haiwen/seahub/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +22,12 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "刚才" @@ -34,19 +35,19 @@ msgstr "刚才" msgid "Name is required" msgstr "名称为必填项" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "请输入密码" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "请再次输入密码" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "密码太短" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "两次输入的密码不一致" @@ -62,6 +63,31 @@ msgstr "可读写资料库" msgid "Read-Only library" msgstr "只读资料库" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "请检查网络是否已连接。" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "新文件" @@ -91,35 +117,40 @@ msgstr "删除的目录" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "操作失败。请检查网络是否已连接。" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "断开 %(name)s 连接成功。" @@ -149,12 +180,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "已取消。" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "目标路径无效" @@ -207,8 +238,8 @@ msgid "{placeholder} Folder Permission" msgstr "{placeholder} 目录权限" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "搜索用户或输入电子邮件,然后按Enter" @@ -224,39 +255,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "请点击选择目标目录。" @@ -265,7 +277,7 @@ msgstr "请点击选择目标目录。" msgid "{placeholder} History Setting" msgstr "{placeholder} 历史设置" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "成功设置资料库历史。" @@ -273,150 +285,150 @@ msgstr "成功设置资料库历史。" msgid "{placeholder} Share Links" msgstr "{placeholder} 共享外链" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "关闭 (Esc)" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "加载中..." -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "上一张(左方向键)" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "下一张(右方向键)" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "%curr% / %total%" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "图片 无法被加载。" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "在新标签页打开" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "密码为必填项。" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "必填项。" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "请输入完整的文件名。" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "处理中..." -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "成功删除 %(name)s。" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "成功删除 %(name)s 和其他一项内容。" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "成功删除 %(name)s 和其他 %(amount)s 项内容。" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "删除 %(name)s 失败。" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "删除 %(name)s 以及另外1项失败。" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "删除 %(name)s 以及另外 %(amount)s 项失败。" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "删除条目" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "确定要删除选中的条目吗?" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "将已选条目移动到:" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "将已选条目复制到:" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "成功移动 %(name)s。" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "成功移动 %(name)s 和另1项条目。" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "成功移动 %(name)s 和其他 %(amount)s 项条目。" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "成功复制 %(name)s。" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "成功复制 %(name)s 和另1项条目。" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "成功复制 %(name)s 和其他 %(amount)s 项条目。" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "内部错误。移动 %(name)s 和其他 %(amount)s 项内容失败。" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "内部错误。移动 %(name)s 失败。" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "内部错误。复制 %(name)s 和其他 %(amount)s 项内容失败。" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "内部错误。复制 %(name)s 失败。" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "正在移动文件 %(index)s / %(total)s" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "正在复制文件 %(index)s / %(total)s" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "移动 %(name)s 失败" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "复制 %(name)s 失败" @@ -456,10 +468,10 @@ msgstr "空文件" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -503,19 +515,19 @@ msgstr "文件上传已取消" msgid "File Upload failed" msgstr "文件上传失败" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "无法获得上传链接" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "无法获得更新链接" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "覆盖文件 {filename} ?" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "文件已锁定" @@ -524,7 +536,7 @@ msgid "Set {placeholder}'s permission" msgstr "设置 {placeholder} 权限" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "选择群组" @@ -545,32 +557,38 @@ msgstr "{placeholder} 成员" msgid "Successfully unshared {placeholder}" msgstr "成功取消共享 {placeholder}" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "您不能选择更多项" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "成功转让群组。您现在已成为群主的普通成员。" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "请添加 CSV 文件" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "导入成功。" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "解散群组" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "确定要解散该群组吗?" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "退出群组" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "确定要退出该群组吗?" @@ -582,11 +600,11 @@ msgstr "确定要删除 {lib_name} ?" msgid "Delete succeeded." msgstr "删除成功。" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "转移资料库 {library_name} 给" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "资料库转让成功。" @@ -594,35 +612,36 @@ msgstr "资料库转让成功。" msgid "Share {placeholder}" msgstr "共享 {placeholder}" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "已过期" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "隐藏" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "显示" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "请输入天数。" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "请输入有效的天数" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "请输入至少一个邮箱。" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "成功发送给 {placeholder}" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "发送给 {placeholder} 失败" @@ -634,22 +653,26 @@ msgstr "成功" msgid "Successfully unstared {placeholder}" msgstr "成功取消星标 {placeholder}" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "搜索用户或输入电子邮件,然后按Enter" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "请输入 1 个或更多字符" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "没有匹配项" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "搜索中..." -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "加载失败" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "清除所有错误成功。" diff --git a/locale/zh_TW/LC_MESSAGES/django.po b/locale/zh_TW/LC_MESSAGES/django.po index f567110976..11c3cb6a67 100644 --- a/locale/zh_TW/LC_MESSAGES/django.po +++ b/locale/zh_TW/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:15+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 09:05+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/haiwen/seahub/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -20,14 +20,15 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: seahub/api2/endpoints/group_members.py:91 -#: seahub/api2/endpoints/group_members.py:279 seahub/views/ajax.py:2518 +#: seahub/api2/endpoints/group_members.py:92 +#: seahub/api2/endpoints/group_members.py:286 seahub/views/ajax.py:2511 #, python-format msgid "User %s is already a group member." msgstr "" -#: seahub/api2/endpoints/group_members.py:288 seahub/api2/views.py:1274 -#: seahub/views/ajax.py:2527 +#: seahub/api2/endpoints/group_members.py:98 +#: seahub/api2/endpoints/group_members.py:295 seahub/api2/views.py:1266 +#: seahub/views/ajax.py:2520 #, python-format msgid "User %s not found in organization." msgstr "" @@ -54,8 +55,8 @@ msgstr "密碼錯誤" #: seahub/api2/endpoints/repo_set_password.py:44 seahub/views/__init__.py:537 #: 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:2203 +#: seahub/views/ajax.py:825 seahub/views/ajax.py:2425 +#: seahub/views/sysadmin.py:2231 msgid "Internal server error" msgstr "伺服器內部錯誤" @@ -65,34 +66,34 @@ msgstr "解密資料庫出錯" #: seahub/api2/endpoints/send_share_link_email.py:31 #: seahub/api2/endpoints/send_upload_link_email.py:30 -#: seahub/share/views.py:737 +#: seahub/share/views.py:739 msgid "" "Sending shared link failed. Email service is not properly configured, please" " contact administrator." msgstr "由於電子信箱服務未正確配置,發送共享連結失敗,請聯繫管理員。" -#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:785 +#: seahub/api2/endpoints/send_share_link_email.py:98 seahub/share/views.py:787 msgid "file" msgstr "" -#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:786 +#: seahub/api2/endpoints/send_share_link_email.py:99 seahub/share/views.py:788 #, python-format msgid "A file is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:101 -#: seahub/share/views.py:792 +#: seahub/share/views.py:794 msgid "directory" msgstr "" #: seahub/api2/endpoints/send_share_link_email.py:102 -#: seahub/share/views.py:793 +#: seahub/share/views.py:795 #, python-format msgid "A directory is shared to you on %s" msgstr "" #: seahub/api2/endpoints/send_upload_link_email.py:93 -#: seahub/share/views.py:905 +#: seahub/share/views.py:907 #, python-format msgid "An upload link is shared to you on %s" msgstr "" @@ -101,14 +102,15 @@ msgstr "" msgid "Password is too short." msgstr "" -#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:966 -#: seahub/share/views.py:1049 seahub/templates/snippets/repo_create_js.html:50 +#: seahub/api2/endpoints/upload_links.py:135 seahub/share/views.py:968 +#: seahub/share/views.py:1051 seahub/templates/snippets/repo_create_js.html:50 #: seahub/templates/snippets/shared_link_js.html:155 msgid "Password is too short" msgstr "密碼太短" #: seahub/api2/templates/api2/base.html:8 seahub/templates/base.html:9 #: seahub/templates/base_for_backbone.html:9 +#: seahub/templates/sysadmin/sysadmin_backbone.html:9 msgid "File Collaboration Team Organization" msgstr "文件 合作 團隊 團體" @@ -144,7 +146,7 @@ msgid "No activity now or the function is not supported." msgstr "暫無活動 或 該功能不支援。" #: seahub/api2/templates/api2/events_body.html:17 -#: seahub/templates/js/templates.html:926 +#: seahub/templates/js/templates.html:936 msgid "Created library" msgstr "創建了資料庫" @@ -159,7 +161,8 @@ msgstr "刪除了資料庫 %(library_name)s" #: seahub/message/templates/message/all_msg_list.html:202 #: seahub/message/templates/message/user_msg_list.html:169 #: seahub/notifications/templates/notifications/user_notification_list.html:92 -#: seahub/templates/base.html:163 seahub/templates/decrypt_repo_form.html:47 +#: seahub/share/templates/share/share_link_audit.html:70 +#: seahub/templates/base.html:149 seahub/templates/decrypt_repo_form.html:47 #: seahub/templates/file_edit.html:444 #: seahub/templates/repo_dir_recycle_view.html:121 #: seahub/templates/repo_dir_recycle_view.html:149 @@ -167,8 +170,8 @@ msgstr "刪除了資料庫 %(library_name)s" #: seahub/templates/snippets/office_convert_js.html:96 #: seahub/templates/snippets/shared_link_js.html:125 #: seahub/templates/snippets/spreadsheet_convert_js.html:39 -#: seahub/templates/sysadmin/admin_repo_view.html:330 -#: seahub/templates/sysadmin/settings.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:334 +#: seahub/templates/sysadmin/settings.html:203 #: 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 @@ -184,7 +187,7 @@ msgstr "請檢查網絡是否已連接。" #: seahub/api2/templates/api2/user_msg_body.html:20 #: seahub/share/templates/share/links.html:29 -#: seahub/templates/js/templates.html:1222 +#: seahub/templates/js/templates.html:1247 #: seahub/templates/repo_history_view.html:73 #: seahub/templates/snippets/repo_dir_trash_tr.html:21 #: seahub/templates/sysadmin/admin_repo_view.html:75 @@ -210,13 +213,16 @@ msgstr "重要日期" #: 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:152 -#: seahub/templates/js/templates.html:625 -#: seahub/templates/js/templates.html:642 -#: seahub/templates/js/templates.html:645 -#: seahub/templates/js/templates.html:727 +#: seahub/templates/home_base.html:24 +#: seahub/templates/js/sysadmin-templates.html:21 +#: seahub/templates/js/sysadmin-templates.html:107 +#: seahub/templates/js/templates.html:160 +#: seahub/templates/js/templates.html:627 +#: seahub/templates/js/templates.html:644 +#: seahub/templates/js/templates.html:647 +#: seahub/templates/js/templates.html:729 #: seahub/templates/snippets/repo_share_form.html:7 -#: seahub/templates/sysadmin/base.html:21 +#: seahub/templates/sysadmin/base.html:24 #: 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 @@ -244,10 +250,11 @@ 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:117 +#: seahub/base/accounts.py:529 seahub/templates/file_edit.html:130 +#: seahub/templates/js/lib-op-popups.html:117 #: seahub/templates/js/templates.html:21 -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/registration/login.html:12 #: seahub/templates/registration/registration_form.html:24 #: seahub/templates/snippets/file_share_popup.html:18 @@ -307,7 +314,7 @@ msgid "New password confirmation" msgstr "新密碼確認" #: seahub/auth/forms.py:164 seahub/auth/forms.py:207 -#: seahub/base/accounts.py:549 +#: seahub/base/accounts.py:576 msgid "The two password fields didn't match." msgstr "兩次輸入的密碼不一致" @@ -319,7 +326,7 @@ msgstr "舊密碼" msgid "Your old password was entered incorrectly. Please enter it again." msgstr "舊密碼輸入錯誤。請重新輸入。" -#: seahub/auth/forms.py:196 seahub/base/accounts.py:504 +#: seahub/auth/forms.py:196 seahub/base/accounts.py:531 msgid "Password (again)" msgstr "請再次輸入密碼" @@ -328,15 +335,19 @@ msgstr "請再次輸入密碼" msgid "Enter a valid e-mail address." msgstr "請輸入有效的電子郵件地址。" -#: seahub/auth/views.py:264 +#: seahub/auth/views.py:165 +msgid "This account has been frozen due to too many failed login attempts." +msgstr "" + +#: seahub/auth/views.py:293 msgid "Logged out" msgstr "退出" -#: seahub/auth/views.py:312 +#: seahub/auth/views.py:341 msgid "Failed to send email, please contact administrator." msgstr "郵件發送失敗,請聯繫管理員。" -#: seahub/auth/views.py:373 +#: seahub/auth/views.py:402 msgid "Can not update password, please contact LDAP admin." msgstr "" @@ -423,6 +434,7 @@ msgstr "當前頭像:" #: seahub/options/templates/options/set_user_options.html:14 #: seahub/profile/templates/profile/set_profile.html:68 #: seahub/profile/templates/profile/set_profile.html:112 +#: seahub/share/templates/share/share_link_audit.html:22 #: seahub/templates/decrypt_repo_form.html:11 #: seahub/templates/file_edit.html:101 seahub/templates/file_edit.html:134 #: seahub/templates/file_edit.html:325 seahub/templates/home_base.html:84 @@ -434,24 +446,24 @@ msgstr "當前頭像:" #: 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:487 -#: seahub/templates/js/templates.html:527 -#: seahub/templates/js/templates.html:557 -#: seahub/templates/js/templates.html:580 -#: seahub/templates/js/templates.html:723 -#: seahub/templates/js/templates.html:803 -#: seahub/templates/js/templates.html:825 -#: seahub/templates/js/templates.html:880 -#: seahub/templates/js/templates.html:1044 -#: seahub/templates/js/templates.html:1053 -#: seahub/templates/js/templates.html:1061 -#: seahub/templates/js/templates.html:1164 -#: seahub/templates/js/templates.html:1238 -#: seahub/templates/js/templates.html:1278 -#: seahub/templates/js/templates.html:1291 -#: seahub/templates/js/templates.html:1324 -#: seahub/templates/js/templates.html:1337 -#: seahub/templates/js/templates.html:1388 seahub/templates/libraries.html:93 +#: seahub/templates/js/templates.html:481 +#: seahub/templates/js/templates.html:521 +#: seahub/templates/js/templates.html:554 +#: seahub/templates/js/templates.html:581 +#: seahub/templates/js/templates.html:725 +#: seahub/templates/js/templates.html:808 +#: seahub/templates/js/templates.html:834 +#: seahub/templates/js/templates.html:890 +#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1069 +#: seahub/templates/js/templates.html:1077 +#: seahub/templates/js/templates.html:1189 +#: seahub/templates/js/templates.html:1263 +#: seahub/templates/js/templates.html:1303 +#: seahub/templates/js/templates.html:1316 +#: seahub/templates/js/templates.html:1349 +#: seahub/templates/js/templates.html:1362 +#: seahub/templates/js/templates.html:1413 seahub/templates/libraries.html:93 #: seahub/templates/libraries.html:157 #: seahub/templates/registration/password_change_form.html:25 #: seahub/templates/registration/password_reset_confirm.html:19 @@ -512,43 +524,48 @@ msgstr "更新成功。" msgid "Successfully deleted the requested avatars." msgstr "刪除成功。" -#: seahub/base/accounts.py:493 +#: seahub/base/accounts.py:252 +#, python-format +msgid "Account %(account)s froze on %(site)s." +msgstr "" + +#: seahub/base/accounts.py:520 msgid "Email address" msgstr "電子郵件地址" -#: seahub/base/accounts.py:498 +#: seahub/base/accounts.py:525 msgid "Username" msgstr "用戶名" -#: seahub/base/accounts.py:499 +#: seahub/base/accounts.py:526 msgid "This value must be of length 40" msgstr "長度為40字元" -#: seahub/base/accounts.py:509 +#: seahub/base/accounts.py:536 msgid "Enter a valid email address." msgstr "" -#: seahub/base/accounts.py:515 +#: seahub/base/accounts.py:542 msgid "A user with this email already" msgstr "該電子郵件已被註冊" -#: seahub/base/accounts.py:519 +#: seahub/base/accounts.py:546 msgid "Invalid user id." msgstr "無效user id" -#: seahub/base/accounts.py:570 +#: seahub/base/accounts.py:597 msgid "name" msgstr "名稱" -#: seahub/base/accounts.py:573 +#: seahub/base/accounts.py:600 msgid "department" msgstr "部門" -#: seahub/base/accounts.py:576 +#: seahub/base/accounts.py:603 msgid "telephone" msgstr "電話" -#: seahub/base/accounts.py:579 +#: seahub/base/accounts.py:606 msgid "note" msgstr "備註" @@ -617,7 +634,7 @@ msgid "Recovered deleted directory" msgstr "還原已刪除的目錄" #: seahub/base/templatetags/seahub_tags.py:174 -#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1768 +#: seahub/base/templatetags/seahub_tags.py:243 seahub/views/ajax.py:1761 msgid "Changed library name or description" msgstr "修改了資料庫名稱或描述" @@ -661,22 +678,22 @@ msgstr[0] "%(seconds)d 秒前" #: 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/share/views.py:468 -#: seahub/share/views.py:565 seahub/templates/js/templates.html:10 -#: seahub/templates/js/templates.html:553 -#: seahub/templates/js/templates.html:576 -#: seahub/templates/js/templates.html:757 -#: seahub/templates/js/templates.html:766 -#: seahub/templates/js/templates.html:769 -#: seahub/templates/js/templates.html:799 -#: seahub/templates/js/templates.html:821 -#: seahub/templates/js/templates.html:890 -#: seahub/templates/js/templates.html:897 -#: seahub/templates/js/templates.html:1273 -#: seahub/templates/js/templates.html:1319 -#: seahub/templates/js/templates.html:1358 -#: seahub/templates/js/templates.html:1361 -#: seahub/templates/js/templates.html:1368 +#: seahub/share/templates/share/repos.html:39 seahub/share/views.py:470 +#: seahub/share/views.py:567 seahub/templates/js/templates.html:10 +#: seahub/templates/js/templates.html:550 +#: seahub/templates/js/templates.html:577 +#: seahub/templates/js/templates.html:759 +#: seahub/templates/js/templates.html:768 +#: seahub/templates/js/templates.html:771 +#: seahub/templates/js/templates.html:804 +#: seahub/templates/js/templates.html:830 +#: seahub/templates/js/templates.html:900 +#: seahub/templates/js/templates.html:907 +#: seahub/templates/js/templates.html:1298 +#: seahub/templates/js/templates.html:1344 +#: seahub/templates/js/templates.html:1383 +#: seahub/templates/js/templates.html:1386 +#: seahub/templates/js/templates.html:1393 #: seahub/templates/snippets/repo_share_form.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:17 #: seahub/templates/sysadmin/sys_admin_group_info.html:53 @@ -689,21 +706,21 @@ msgstr "可讀寫" #: 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/share/views.py:470 -#: seahub/share/views.py:567 seahub/templates/js/templates.html:11 -#: seahub/templates/js/templates.html:554 -#: seahub/templates/js/templates.html:577 -#: seahub/templates/js/templates.html:759 -#: 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:898 -#: seahub/templates/js/templates.html:1274 -#: seahub/templates/js/templates.html:1320 -#: seahub/templates/js/templates.html:1362 -#: seahub/templates/js/templates.html:1365 -#: seahub/templates/js/templates.html:1369 +#: seahub/share/templates/share/repos.html:37 seahub/share/views.py:472 +#: seahub/share/views.py:569 seahub/templates/js/templates.html:11 +#: seahub/templates/js/templates.html:551 +#: seahub/templates/js/templates.html:578 +#: seahub/templates/js/templates.html:761 +#: seahub/templates/js/templates.html:769 +#: seahub/templates/js/templates.html:772 +#: seahub/templates/js/templates.html:805 +#: seahub/templates/js/templates.html:831 +#: seahub/templates/js/templates.html:908 +#: seahub/templates/js/templates.html:1299 +#: seahub/templates/js/templates.html:1345 +#: seahub/templates/js/templates.html:1387 +#: seahub/templates/js/templates.html:1390 +#: seahub/templates/js/templates.html:1394 #: seahub/templates/snippets/repo_share_form.html:26 #: seahub/templates/sysadmin/sys_admin_group_info.html:51 #: seahub/templates/sysadmin/userinfo.html:133 @@ -774,15 +791,16 @@ msgstr "電子郵件" #: 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:178 -#: seahub/templates/js/templates.html:852 -#: seahub/templates/js/templates.html:861 -#: seahub/templates/js/templates.html:875 -#: seahub/templates/js/templates.html:964 -#: seahub/templates/js/templates.html:1078 -#: seahub/templates/js/templates.html:1086 -#: seahub/templates/js/templates.html:1185 -#: seahub/templates/js/templates.html:1202 +#: seahub/templates/js/lib-op-popups.html:6 +#: seahub/templates/js/templates.html:5 seahub/templates/js/templates.html:186 +#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:871 +#: seahub/templates/js/templates.html:885 +#: seahub/templates/js/templates.html:974 +#: seahub/templates/js/templates.html:1094 +#: seahub/templates/js/templates.html:1102 +#: seahub/templates/js/templates.html:1210 +#: seahub/templates/js/templates.html:1227 seahub/templates/libraries.html:90 #: seahub/templates/registration/registration_form.html:18 #: seahub/templates/repo_dir_recycle_view.html:33 #: seahub/templates/repo_history_view.html:57 @@ -810,7 +828,7 @@ msgstr "電子郵件" #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Name" msgstr "名稱" @@ -855,11 +873,11 @@ msgstr "操作" #: 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:762 -#: seahub/templates/js/templates.html:1115 -#: seahub/templates/js/templates.html:1122 -#: seahub/templates/js/templates.html:1359 -#: seahub/templates/js/templates.html:1366 +#: seahub/templates/js/templates.html:764 +#: seahub/templates/js/templates.html:1131 +#: seahub/templates/js/templates.html:1138 +#: seahub/templates/js/templates.html:1384 +#: seahub/templates/js/templates.html:1391 #: 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 @@ -880,21 +898,21 @@ msgstr "編輯" #: seahub/profile/templates/profile/set_profile.html:101 #: seahub/templates/js/templates.html:43 #: seahub/templates/js/templates.html:101 -#: seahub/templates/js/templates.html:206 -#: seahub/templates/js/templates.html:289 -#: seahub/templates/js/templates.html:370 -#: seahub/templates/js/templates.html:396 -#: seahub/templates/js/templates.html:480 -#: seahub/templates/js/templates.html:520 -#: seahub/templates/js/templates.html:775 -#: seahub/templates/js/templates.html:991 -#: seahub/templates/js/templates.html:1136 -#: seahub/templates/js/templates.html:1141 -#: seahub/templates/js/templates.html:1374 +#: seahub/templates/js/templates.html:214 +#: seahub/templates/js/templates.html:297 +#: seahub/templates/js/templates.html:378 +#: seahub/templates/js/templates.html:404 +#: seahub/templates/js/templates.html:474 +#: seahub/templates/js/templates.html:514 +#: seahub/templates/js/templates.html:777 +#: seahub/templates/js/templates.html:1009 +#: seahub/templates/js/templates.html:1152 +#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1399 #: seahub/templates/snippets/file_share_popup.html:37 #: 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/admin_repo_view.html:298 #: seahub/templates/sysadmin/org_admin_table.html:25 #: seahub/templates/sysadmin/repoadmin_table.html:35 #: seahub/templates/sysadmin/sys_admin_group_info.html:65 @@ -926,8 +944,9 @@ msgstr "聯絡人用來在共享資料庫和發送文件外鏈時的快速補全 #: seahub/contacts/templates/contacts/contact_list.html:53 #: seahub/institutions/templates/institutions/user_info.html:19 #: seahub/institutions/templates/institutions/useradmin.html:16 -#: seahub/templates/js/templates.html:1079 -#: seahub/templates/js/templates.html:1087 +#: seahub/share/templates/share/share_link_audit.html:9 +#: seahub/templates/js/templates.html:1095 +#: seahub/templates/js/templates.html:1103 #: seahub/templates/registration/registration_form.html:22 #: seahub/templates/sysadmin/sys_inst_info_user.html:14 #: seahub/templates/sysadmin/sys_org_info_user.html:16 @@ -937,8 +956,8 @@ msgstr "聯絡人用來在共享資料庫和發送文件外鏈時的快速補全 #: 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 +#: seahub/templates/sysadmin/userinfo.html:20 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 msgid "Email" msgstr "電子郵件" @@ -1036,17 +1055,17 @@ msgstr "描述太長(不超過100個漢字)" msgid "Name %s is not valid" msgstr "名稱 %s 含有無效字元" -#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:680 -#: seahub/share/views.py:708 seahub/views/ajax.py:399 seahub/views/ajax.py:486 +#: seahub/forms.py:78 seahub/message/views.py:177 seahub/share/views.py:682 +#: seahub/share/views.py:710 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:1516 seahub/views/sysadmin.py:1787 -#: seahub/views/sysadmin.py:1805 +#: seahub/views/ajax.py:1288 seahub/views/ajax.py:1624 +#: seahub/views/ajax.py:1648 seahub/views/ajax.py:1748 +#: seahub/views/ajax.py:1968 seahub/views/ajax.py:2025 +#: seahub/views/ajax.py:2166 seahub/views/ajax.py:2382 +#: seahub/views/file.py:1514 seahub/views/sysadmin.py:1814 +#: seahub/views/sysadmin.py:1832 msgid "Argument missing" msgstr "參數缺失" @@ -1108,7 +1127,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:269 +#: seahub/share/views.py:271 msgid "Group does not exist" msgstr "群組不存在。" @@ -1258,16 +1277,16 @@ msgstr "請選擇資料庫。" #: 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:488 -#: seahub/templates/js/templates.html:528 -#: seahub/templates/js/templates.html:1292 -#: seahub/templates/js/templates.html:1338 +#: seahub/templates/js/templates.html:482 +#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:1317 +#: seahub/templates/js/templates.html:1363 #: seahub/templates/repo_dir_recycle_view.html:63 #: seahub/templates/shared_file_view.html:63 #: seahub/templates/snippets/file_share_popup.html:49 #: 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/admin_repo_view.html:297 #: seahub/templates/sysadmin/repo_transfer_form.html:9 #: seahub/templates/view_shared_upload_link.html:85 #: seahub/templates/wiki/personal_wiki.html:57 @@ -1344,21 +1363,21 @@ msgstr "名稱為必填項。" msgid "Description is required." msgstr "描述為必填項" -#: seahub/group/views.py:148 seahub/share/views.py:282 -#: seahub/share/views.py:298 seahub/share/views.py:308 -#: seahub/share/views.py:690 seahub/share/views.py:718 -#: seahub/share/views.py:830 seahub/share/views.py:997 +#: seahub/group/views.py:148 seahub/share/views.py:284 +#: seahub/share/views.py:300 seahub/share/views.py:310 +#: seahub/share/views.py:692 seahub/share/views.py:720 +#: seahub/share/views.py:832 seahub/share/views.py:999 #: seahub/views/__init__.py:529 seahub/views/__init__.py:703 #: seahub/views/__init__.py:1092 seahub/views/__init__.py:1140 #: 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:1044 seahub/views/file.py:1525 -#: seahub/views/repo.py:117 +#: seahub/views/ajax.py:1660 seahub/views/ajax.py:1728 +#: seahub/views/ajax.py:2012 seahub/views/ajax.py:2038 +#: seahub/views/ajax.py:2154 seahub/views/ajax.py:2180 +#: seahub/views/file.py:1040 seahub/views/file.py:1523 +#: seahub/views/repo.py:119 msgid "Permission denied" msgstr "沒有權限" @@ -1711,11 +1730,14 @@ msgstr "" #: seahub/institutions/templates/institutions/base.html:11 #: seahub/institutions/templates/institutions/useradmin.html:9 -#: seahub/templates/sysadmin/base.html:18 +#: seahub/templates/js/sysadmin-templates.html:18 +#: seahub/templates/sysadmin/base.html:21 msgid "Users" msgstr "成員" #: seahub/institutions/templates/institutions/info.html:7 +#: seahub/templates/js/sysadmin-templates.html:7 +#: seahub/templates/js/sysadmin-templates.html:61 #: seahub/templates/sysadmin/base.html:9 #: seahub/templates/sysadmin/sys_info.html:7 msgid "Info" @@ -1723,9 +1745,11 @@ msgstr "資訊" #: 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:692 -#: seahub/templates/libraries.html:5 seahub/templates/pub_base.html:12 -#: seahub/templates/sysadmin/base.html:15 +#: seahub/templates/home_base.html:60 +#: seahub/templates/js/sysadmin-templates.html:15 +#: seahub/templates/js/sysadmin-templates.html:82 +#: seahub/templates/js/templates.html:694 seahub/templates/libraries.html:5 +#: seahub/templates/pub_base.html:12 seahub/templates/sysadmin/base.html:18 #: 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 @@ -1736,12 +1760,16 @@ msgid "Libraries" msgstr "資料庫" #: seahub/institutions/templates/institutions/info.html:16 +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: 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/js/sysadmin-templates.html:86 +#: seahub/templates/js/sysadmin-templates.html:99 #: seahub/templates/sysadmin/sys_info.html:23 #: seahub/templates/sysadmin/sys_info.html:32 msgid "Total Users" @@ -1801,12 +1829,12 @@ msgstr "" #: seahub/institutions/templates/institutions/user_info.html:56 #: seahub/templates/file_revisions.html:44 -#: seahub/templates/js/templates.html:180 -#: seahub/templates/js/templates.html:854 -#: seahub/templates/js/templates.html:863 -#: seahub/templates/js/templates.html:966 -#: seahub/templates/js/templates.html:1187 -#: seahub/templates/js/templates.html:1204 +#: seahub/templates/js/templates.html:188 +#: seahub/templates/js/templates.html:864 +#: seahub/templates/js/templates.html:873 +#: seahub/templates/js/templates.html:976 +#: seahub/templates/js/templates.html:1212 +#: seahub/templates/js/templates.html:1229 #: seahub/templates/repo_dir_recycle_view.html:35 #: seahub/templates/repo_history_view.html:58 #: seahub/templates/sysadmin/admin_repo_view.html:44 @@ -1819,11 +1847,11 @@ msgid "Size" msgstr "大小" #: seahub/institutions/templates/institutions/user_info.html:57 -#: seahub/templates/js/templates.html:181 -#: seahub/templates/js/templates.html:855 -#: seahub/templates/js/templates.html:864 -#: seahub/templates/js/templates.html:876 -#: seahub/templates/js/templates.html:967 seahub/templates/libraries.html:171 +#: seahub/templates/js/templates.html:189 +#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:874 +#: seahub/templates/js/templates.html:886 +#: seahub/templates/js/templates.html:977 seahub/templates/libraries.html:171 #: seahub/templates/starred.html:15 #: seahub/templates/sysadmin/admin_repo_view.html:45 #: seahub/templates/sysadmin/userinfo.html:75 @@ -1833,7 +1861,7 @@ msgid "Last Update" msgstr "更新時間" #: seahub/institutions/templates/institutions/user_info.html:64 -#: seahub/templates/js/templates.html:888 +#: seahub/templates/js/templates.html:898 #: 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 @@ -1861,10 +1889,10 @@ msgid "This user has not created any libraries" msgstr "" #: seahub/institutions/templates/institutions/user_info.html:102 -#: seahub/templates/js/templates.html:1080 +#: seahub/templates/js/templates.html:1096 #: 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 +#: seahub/templates/sysadmin/userinfo.html:208 seahub/views/sysadmin.py:645 msgid "Role" msgstr "" @@ -1873,8 +1901,8 @@ msgstr "" #: 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:1402 +#: seahub/templates/sysadmin/userinfo.html:209 seahub/views/sysadmin.py:645 +#: seahub/views/sysadmin.py:648 seahub/views/sysadmin.py:1418 msgid "Create At" msgstr "創建時間" @@ -1889,7 +1917,7 @@ msgstr "" #: 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 +#: seahub/views/sysadmin.py:645 seahub/views/sysadmin.py:648 msgid "Status" msgstr "狀態" @@ -1909,7 +1937,7 @@ msgstr "創建於/最後登錄" #: 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 +#: seahub/views/sysadmin.py:662 msgid "Active" msgstr "啓動" @@ -1921,7 +1949,7 @@ msgstr "啓動" #: 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 +#: seahub/views/sysadmin.py:664 msgid "Inactive" msgstr "不啓動" @@ -1930,7 +1958,7 @@ msgstr "不啓動" #: seahub/templates/sysadmin/sys_group_admin.html:42 #: seahub/templates/sysadmin/sys_inst_admin.html:44 #: seahub/templates/sysadmin/sys_inst_info_user.html:47 -#: seahub/templates/sysadmin/sys_publink_admin.html:33 +#: seahub/templates/sysadmin/sys_publink_admin.html:59 msgid "Empty" msgstr "暫無" @@ -1948,33 +1976,32 @@ msgstr "刪除用戶" #: 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 +#: seahub/views/sysadmin.py:951 msgid "Owner" msgstr "擁有者" -#: seahub/institutions/views.py:120 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:1114 -#: seahub/templates/js/templates.html:1118 -#: seahub/templates/js/templates.html:1125 seahub/views/sysadmin.py:630 -#: seahub/views/sysadmin.py:633 seahub/views/sysadmin.py:937 +#: seahub/institutions/views.py:120 seahub/templates/base.html:77 +#: seahub/templates/base.html.py:82 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base_for_backbone.html:83 +#: seahub/templates/js/templates.html:1130 +#: seahub/templates/js/templates.html:1134 +#: seahub/templates/js/templates.html:1141 seahub/views/sysadmin.py:646 +#: seahub/views/sysadmin.py:649 seahub/views/sysadmin.py:953 msgid "Admin" msgstr "管理" -#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1117 -#: seahub/templates/js/templates.html:1121 -#: seahub/templates/js/templates.html:1124 seahub/views/sysadmin.py:939 +#: seahub/institutions/views.py:122 seahub/templates/js/templates.html:1133 +#: seahub/templates/js/templates.html:1137 +#: seahub/templates/js/templates.html:1140 seahub/views/sysadmin.py:955 msgid "Member" msgstr "" -#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1039 +#: seahub/institutions/views.py:148 seahub/views/sysadmin.py:1055 #, python-format msgid "Successfully deleted %s" msgstr "%s 刪除成功。" -#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1041 +#: seahub/institutions/views.py:150 seahub/views/sysadmin.py:1057 msgid "Failed to delete: the user does not exist" msgstr "刪除失敗:該用戶不存在" @@ -1998,6 +2025,7 @@ msgstr "訊息" #: seahub/notifications/templates/notifications/notice_email.html:20 #: seahub/notifications/templates/notifications/user_notification_list.html:24 #: seahub/templates/file_revisions.html:42 +#: seahub/templates/js/sysadmin-templates.html:193 #: seahub/templates/repo_history.html:17 msgid "Time" msgstr "時間" @@ -2044,16 +2072,22 @@ msgid "Send a message..." msgstr "發送訊息..." #: seahub/message/templates/message/user_msg_list.html:72 -#: seahub/templates/file_access.html:56 seahub/templates/repo_history.html:58 +#: seahub/templates/file_access.html:56 +#: seahub/templates/js/sysadmin-templates.html:152 +#: seahub/templates/repo_history.html:58 #: seahub/templates/snippets/admin_paginator.html:3 +#: seahub/templates/sysadmin/sys_publink_admin.html:33 #: seahub/templates/sysadmin/sys_trafficadmin.html:30 #: seahub/templates/sysadmin/useradmin_paginator.html:4 msgid "Previous" msgstr "前一頁" #: seahub/message/templates/message/user_msg_list.html:82 -#: seahub/templates/file_access.html:59 seahub/templates/repo_history.html:61 +#: seahub/templates/file_access.html:59 +#: seahub/templates/js/sysadmin-templates.html:153 +#: seahub/templates/repo_history.html:61 #: seahub/templates/snippets/admin_paginator.html:6 +#: seahub/templates/sysadmin/sys_publink_admin.html:36 #: seahub/templates/sysadmin/sys_trafficadmin.html:33 #: seahub/templates/sysadmin/useradmin_paginator.html:7 msgid "Next" @@ -2070,18 +2104,20 @@ msgstr "確定要刪除這條討論?" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:144 seahub/templates/base_for_backbone.html:133 +#: seahub/templates/base.html:130 seahub/templates/base_for_backbone.html:109 #: seahub/templates/js/lib-op-popups.html:137 #: seahub/templates/snippets/repo_del_popup.html:4 -#: seahub/views/sysadmin.py:654 seahub/views/sysadmin.py:655 +#: seahub/templates/sysadmin/sysadmin_backbone.html:90 +#: seahub/views/sysadmin.py:670 seahub/views/sysadmin.py:671 msgid "Yes" msgstr "確定" #: seahub/message/templates/message/user_msg_list.html:184 #: seahub/message/templates/message/user_msg_list.html:220 -#: seahub/templates/base.html:145 seahub/templates/base_for_backbone.html:134 +#: seahub/templates/base.html:131 seahub/templates/base_for_backbone.html:110 #: seahub/templates/js/lib-op-popups.html:138 #: seahub/templates/snippets/repo_del_popup.html:5 +#: seahub/templates/sysadmin/sysadmin_backbone.html:91 msgid "No" msgstr "取消" @@ -2123,57 +2159,66 @@ msgid "Virus detected on %s" msgstr "" #: seahub/notifications/management/commands/send_notices.py:30 -#: seahub/notifications/management/commands/send_notices.py:246 +#: seahub/notifications/management/commands/send_notices.py:274 #, python-format msgid "New notice on %s" msgstr "" -#: seahub/notifications/models.py:385 seahub/notifications/models.py:427 -#: seahub/notifications/models.py:453 seahub/notifications/models.py:473 -#: seahub/notifications/models.py:490 seahub/notifications/models.py:520 -#: seahub/notifications/models.py:538 seahub/notifications/models.py:568 -#: seahub/utils/__init__.py:143 seahub/utils/__init__.py:1134 +#: seahub/notifications/models.py:406 seahub/notifications/models.py:448 +#: seahub/notifications/models.py:476 seahub/notifications/models.py:513 +#: seahub/notifications/models.py:534 seahub/notifications/models.py:552 +#: seahub/notifications/models.py:583 seahub/notifications/models.py:601 +#: seahub/notifications/models.py:631 seahub/utils/__init__.py:143 +#: seahub/utils/__init__.py:1134 msgid "Internal error" msgstr "內部錯誤" -#: seahub/notifications/models.py:404 +#: seahub/notifications/models.py:425 #, python-format msgid "" "A file named %(file_name)s is uploaded to %(name)s" msgstr "" -#: seahub/notifications/models.py:411 +#: seahub/notifications/models.py:432 #, python-format msgid "" "A file named %(file_name)s is uploaded to Deleted " "Library" msgstr "" -#: seahub/notifications/models.py:437 +#: seahub/notifications/models.py:458 #, python-format msgid "" "%(user)s has shared a library named %(repo_name)s to " "you." msgstr "%(user)s 共享了資料庫%(repo_name)s給你" -#: seahub/notifications/models.py:458 +#: seahub/notifications/models.py:493 +#, python-format +msgid "" +"%(user)s has shared a library named %(repo_name)s to group %(group_name)s." +msgstr "" + +#: seahub/notifications/models.py:518 #, python-format msgid "You have received a new message from %(user)s." msgstr "" -#: seahub/notifications/models.py:501 +#: seahub/notifications/models.py:563 #, python-format msgid "%(group_name)s has a new discussion." msgstr "" -#: seahub/notifications/models.py:505 +#: seahub/notifications/models.py:567 #, python-format msgid "" "%(user)s posted a new discussion in %(group_name)s." msgstr "" -#: seahub/notifications/models.py:549 +#: seahub/notifications/models.py:612 #, python-format msgid "" "User %(username)s has asked to join group %(username)s 請求加入到群組 %(group_name)s,驗證資訊:%(join_request_msg)s" -#: seahub/notifications/models.py:578 +#: seahub/notifications/models.py:641 #, python-format msgid "" "User %(group_staff)s has added you to group " @@ -2220,11 +2265,19 @@ msgstr "" #: seahub/notifications/templates/notifications/notice_email.html:36 #, python-format msgid "" +"%(user)s has shared a library named %(lib_name)s to %(group_name)s." +msgstr "" + +#: seahub/notifications/templates/notifications/notice_email.html:39 +#, python-format +msgid "" "You have received a new message from" " %(user)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:42 +#: seahub/notifications/templates/notifications/notice_email.html:45 #, python-format msgid "" "A file named %(file_name)s is " @@ -2232,7 +2285,7 @@ msgid "" "href=\"%(url_base)s%(folder_url)s\">%(folder_name)s." msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:45 +#: seahub/notifications/templates/notifications/notice_email.html:48 #, python-format msgid "" "User %(user)s has asked to join " @@ -2240,14 +2293,14 @@ msgid "" "message: %(msg)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:48 +#: seahub/notifications/templates/notifications/notice_email.html:51 #, python-format msgid "" "User %(user)s has added you to " "group %(grp_name)s" msgstr "" -#: seahub/notifications/templates/notifications/notice_email.html:58 +#: seahub/notifications/templates/notifications/notice_email.html:61 msgid "Go check out at the following page:" msgstr "" @@ -2277,6 +2330,7 @@ msgid "Delete Notification" msgstr "刪除通知" #: seahub/notifications/templates/notifications/notify_virus.html:9 +#: seahub/share/templates/share/audit_code_email.html:8 #: seahub/templates/registration/activation_email.html:9 #: seahub/templates/registration/password_reset_email.html:9 #: seahub/templates/shared_link_email.html:9 @@ -2284,6 +2338,7 @@ msgstr "刪除通知" #: 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_freeze_email.html:9 #: seahub/templates/sysadmin/user_reset_email.html:9 msgid "Hi," msgstr "" @@ -2352,14 +2407,17 @@ msgstr "個人信息設置" #: seahub/profile/templates/profile/set_profile.html:5 #: seahub/profile/templates/profile/set_profile.html:21 -#: seahub/templates/base.html:81 seahub/templates/base_for_backbone.html:92 -#: seahub/templates/js/templates.html:737 seahub/templates/libraries.html:120 -#: seahub/templates/sysadmin/base.html:12 +#: seahub/templates/base.html:66 +#: seahub/templates/js/sysadmin-templates.html:12 +#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:1470 seahub/templates/libraries.html:120 +#: seahub/templates/sysadmin/base.html:15 #: 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 +#: seahub/templates/sysadmin/sysadmin_backbone.html:64 msgid "Settings" msgstr "設置" @@ -2593,40 +2651,46 @@ msgstr "繁體中文" msgid "Email is not longer than 512 characters" msgstr "電子信箱不能超過512個字元" -#: seahub/share/models.py:69 +#: seahub/share/models.py:70 msgid "Password can't be empty" msgstr "密碼不能為空" -#: seahub/share/models.py:76 +#: seahub/share/models.py:77 msgid "Please enter a correct password." msgstr "" +#: seahub/share/templates/share/audit_code_email.html:11 +#, python-format +msgid "Your code is %(code)s, this code will be valid for one hour." +msgstr "" + #: seahub/share/templates/share/links.html:5 msgid "Links - Share" msgstr "連結 - 共享" #: seahub/share/templates/share/links.html:12 -#: seahub/templates/js/templates.html:1175 +#: seahub/templates/js/templates.html:1200 msgid "Download Links" msgstr "下載連結" #: seahub/share/templates/share/links.html:13 -#: seahub/templates/js/templates.html:1176 +#: seahub/templates/js/templates.html:1201 msgid "Upload Links" msgstr "上傳連結" #: seahub/share/templates/share/links.html:21 #: seahub/share/templates/share/links.html:67 -#: seahub/templates/file_edit.html:129 seahub/templates/libraries.html:170 -#: seahub/templates/starred.html:14 +#: seahub/templates/file_edit.html:129 +#: seahub/templates/js/sysadmin-templates.html:191 +#: seahub/templates/libraries.html:170 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/js/templates.html:1188 -#: seahub/templates/js/templates.html:1205 +#: seahub/templates/js/templates.html:1213 +#: seahub/templates/js/templates.html:1230 #: seahub/templates/sysadmin/userinfo.html:163 msgid "Visits" msgstr "訪問次數" @@ -2637,7 +2701,7 @@ msgstr "" #: seahub/share/templates/share/links.html:32 #: seahub/share/templates/share/links.html:73 -#: seahub/templates/js/templates.html:1219 +#: seahub/templates/js/templates.html:1244 #: seahub/templates/sysadmin/admin_repo_view.html:50 #: seahub/templates/sysadmin/userinfo.html:174 #: seahub/templates/sysadmin/userinfo.html:184 @@ -2653,7 +2717,7 @@ msgstr "查看" #: seahub/share/templates/share/links.html:48 #: seahub/share/templates/share/links.html:79 -#: seahub/templates/js/templates.html:1229 +#: seahub/templates/js/templates.html:1254 #: seahub/templates/sysadmin/sys_inst_admin.html:36 #: seahub/templates/sysadmin/sys_publink_admin.html:25 #: seahub/templates/sysadmin/userinfo.html:181 @@ -2686,7 +2750,7 @@ msgid "Folders - Share" msgstr "文件夾 - 共享" #: seahub/share/templates/share/list_priv_shared_folders.html:10 -#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:695 +#: seahub/templates/home_base.html:61 seahub/templates/js/templates.html:697 msgid "Folders" msgstr "文件夾" @@ -2697,15 +2761,15 @@ msgstr "共享給" #: seahub/share/templates/share/list_priv_shared_folders.html:17 #: seahub/share/templates/share/repos.html:17 -#: seahub/templates/js/templates.html:217 -#: seahub/templates/js/templates.html:401 -#: seahub/templates/js/templates.html:544 -#: seahub/templates/js/templates.html:567 -#: seahub/templates/js/templates.html:790 -#: seahub/templates/js/templates.html:812 -#: seahub/templates/js/templates.html:877 -#: seahub/templates/js/templates.html:1258 -#: seahub/templates/js/templates.html:1302 +#: seahub/templates/js/templates.html:225 +#: seahub/templates/js/templates.html:409 +#: seahub/templates/js/templates.html:539 +#: seahub/templates/js/templates.html:566 +#: seahub/templates/js/templates.html:793 +#: seahub/templates/js/templates.html:819 +#: seahub/templates/js/templates.html:887 +#: seahub/templates/js/templates.html:1283 +#: seahub/templates/js/templates.html:1327 msgid "Permission" msgstr "讀寫權限" @@ -2771,175 +2835,211 @@ msgid "" "groups you are in." msgstr "你可以通過在你的個人頁麵點擊你自己的資料庫的共享圖示, 或是在你所在的小組裡創建一個新的資料庫來將你的資料庫共享給你的朋友和同事。" -#: seahub/share/views.py:81 +#: seahub/share/templates/share/share_link_audit.html:6 +msgid "Email Verification" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:8 +msgid "Please provide your email address to continue." +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:11 +msgid "Get code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:13 +msgid "Verification code" +msgstr "" + +#: seahub/share/templates/share/share_link_audit.html:63 +msgid "A verification code has been sent to the email." +msgstr "" + +#: seahub/share/views.py:83 msgid "Failed to share to all members, please try again later." msgstr "共享到公共資料失敗,請稍後再試" -#: seahub/share/views.py:83 +#: seahub/share/views.py:85 #, python-format msgid "" "Shared to all members successfully, go check it at Shares." msgstr "共享到公共資料成功,請前往 共享 查看。" -#: seahub/share/views.py:180 seahub/share/views.py:1150 +#: seahub/share/views.py:182 seahub/share/views.py:1152 msgid "Only the owner of the library has permission to share it." msgstr "只有資料庫擁有者才有共享權限。" -#: seahub/share/views.py:239 seahub/share/views.py:333 -#: seahub/share/views.py:598 seahub/views/__init__.py:694 +#: seahub/share/views.py:241 seahub/share/views.py:335 +#: seahub/share/views.py:600 seahub/views/__init__.py:694 #: seahub/views/__init__.py:735 seahub/views/__init__.py:1021 -#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1637 -#: seahub/views/ajax.py:1661 seahub/views/ajax.py:2036 -#: seahub/views/ajax.py:2178 seahub/views/file.py:1511 -#: seahub/views/sysadmin.py:216 seahub/views/sysadmin.py:251 -#: seahub/views/sysadmin.py:1875 +#: seahub/views/__init__.py:1233 seahub/views/ajax.py:1630 +#: seahub/views/ajax.py:1654 seahub/views/ajax.py:2029 +#: seahub/views/ajax.py:2171 seahub/views/file.py:1509 +#: seahub/views/sysadmin.py:236 seahub/views/sysadmin.py:267 +#: seahub/views/sysadmin.py:1902 msgid "Library does not exist" msgstr "資料庫不存在" -#: seahub/share/views.py:248 seahub/share/views.py:263 -#: seahub/share/views.py:311 +#: seahub/share/views.py:250 seahub/share/views.py:265 +#: seahub/share/views.py:313 msgid "Invalid argument" msgstr "" -#: seahub/share/views.py:328 seahub/share/views.py:348 +#: seahub/share/views.py:330 seahub/share/views.py:350 #: seahub/views/__init__.py:896 msgid "Argument is not valid" msgstr "參數無效" -#: seahub/share/views.py:351 seahub/share/views.py:372 +#: seahub/share/views.py:353 seahub/share/views.py:374 msgid "Failed to remove share" msgstr "取消共享失敗" -#: seahub/share/views.py:364 +#: seahub/share/views.py:366 msgid "group id is not valid" msgstr "無效的group id" -#: seahub/share/views.py:368 +#: seahub/share/views.py:370 msgid "Failed to unshare: the group doesn't exist." msgstr "取消共享失敗,該群組不存在" -#: seahub/share/views.py:382 +#: seahub/share/views.py:384 msgid "Successfully removed share" msgstr "取消共享成功" -#: seahub/share/views.py:449 +#: seahub/share/views.py:451 msgid "all members" msgstr "所有成員" -#: seahub/share/views.py:686 seahub/share/views.py:714 +#: seahub/share/views.py:688 seahub/share/views.py:716 msgid "The link doesn't exist" msgstr "連結不存在" -#: seahub/share/views.py:806 seahub/share/views.py:918 +#: seahub/share/views.py:808 seahub/share/views.py:920 msgid "Internal server error, or please check the email(s) you entered" msgstr "" -#: seahub/share/views.py:826 +#: seahub/share/views.py:828 msgid "Please choose a directory." msgstr "請選擇目錄。" -#: seahub/share/views.py:848 +#: seahub/share/views.py:850 msgid "Successfully saved." msgstr "儲存成功。" -#: seahub/share/views.py:862 +#: seahub/share/views.py:864 msgid "" "Sending shared upload link failed. Email service is not properly configured," " please contact administrator." msgstr "由於電子信箱服務未正確配置,發送上傳外鏈失敗,請聯繫管理員。" -#: seahub/share/views.py:951 seahub/share/views.py:1033 +#: seahub/share/views.py:953 seahub/share/views.py:1035 msgid "You do not have permission to generate shared link" msgstr "" -#: seahub/share/views.py:961 seahub/share/views.py:1044 +#: seahub/share/views.py:963 seahub/share/views.py:1046 #: seahub/views/__init__.py:733 seahub/views/__init__.py:1084 #: seahub/views/__init__.py:1133 seahub/views/ajax.py:1061 -#: seahub/views/ajax.py:1081 seahub/views/file.py:1065 +#: seahub/views/ajax.py:1081 seahub/views/file.py:1061 msgid "Invalid arguments" msgstr "無效參數" -#: seahub/share/views.py:1097 seahub/thumbnail/views.py:39 +#: seahub/share/views.py:1099 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 +#: seahub/views/ajax.py:1117 seahub/views/ajax.py:1719 +#: seahub/views/ajax.py:2376 msgid "Library does not exist." msgstr "資料庫不存在" -#: seahub/share/views.py:1101 +#: seahub/share/views.py:1103 msgid "Directory does not exist." msgstr "" -#: seahub/share/views.py:1188 +#: seahub/share/views.py:1190 msgid "Please check the email(s) you entered" msgstr "" +#: seahub/share/views.py:1207 +msgid "Email address is not valid" +msgstr "" + +#: seahub/share/views.py:1216 +msgid "Share link is not found" +msgstr "" + +#: seahub/share/views.py:1225 +msgid "Verification code for visiting share links" +msgstr "" + +#: seahub/share/views.py:1240 +msgid "Failed to send a verification code, please try again later." +msgstr "" + #: seahub/templates/404.html:6 msgid "Sorry, but the requested page could not be found." msgstr "對不起,你訪問的頁面不存在。" #: seahub/templates/admin_base.html:4 +#: seahub/templates/sysadmin/sysadmin_backbone.html:68 msgid "Exit System Admin" msgstr "退出系統管理" -#: seahub/templates/base.html:25 seahub/templates/base.html.py:62 -#: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/base.html:25 seahub/templates/base_for_backbone.html:29 #: seahub/templates/base_for_backbone.html:35 -#: seahub/templates/base_for_backbone.html:73 -#: seahub/templates/base_for_backbone.html:146 +#: seahub/templates/base_for_backbone.html:122 #: seahub/templates/file_edit.html:327 #: seahub/templates/js/lib-op-popups.html:97 -#: seahub/templates/libraries.html:119 seahub/templates/libraries.html:129 -#: seahub/templates/libraries.html:142 +#: seahub/templates/js/templates.html:1446 seahub/templates/libraries.html:119 +#: seahub/templates/libraries.html:129 seahub/templates/libraries.html:142 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 +#: seahub/templates/sysadmin/sysadmin_backbone.html:33 msgid "Close" msgstr "關閉" -#: seahub/templates/base.html:50 seahub/templates/base.html.py:56 -#: 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:71 -msgid "See All Notifications" -msgstr "" - -#: seahub/templates/base.html:67 seahub/templates/base_for_backbone.html:78 +#: seahub/templates/base.html:51 seahub/templates/base_for_backbone.html:68 msgid "View profile and more" msgstr "" -#: seahub/templates/base.html:82 seahub/templates/base_for_backbone.html:93 -#: seahub/templates/finish_payment.html:6 +#: seahub/templates/base.html:67 seahub/templates/finish_payment.html:6 +#: seahub/templates/js/templates.html:1471 +#: seahub/templates/sysadmin/sysadmin_backbone.html:65 msgid "Log out" msgstr "退出" -#: seahub/templates/base.html:86 seahub/templates/base_for_backbone.html:97 +#: seahub/templates/base.html:72 seahub/templates/base_for_backbone.html:73 +#: seahub/templates/js/sysadmin-templates.html:4 #: seahub/templates/sysadmin/base.html:6 msgid "System Admin" msgstr "系統管理" #: seahub/templates/base_for_backbone.html:29 +#: seahub/templates/sysadmin/sysadmin_backbone.html:27 msgid "" "We no longer support this version of IE. Please upgrade it to version 10 or " "above." msgstr "" -#: seahub/templates/base_for_backbone.html:140 +#: seahub/templates/base_for_backbone.html:61 +#: seahub/templates/js/sysadmin-templates.html:36 +#: seahub/templates/js/templates.html:1447 +#: seahub/templates/sysadmin/base.html:37 +msgid "Notifications" +msgstr "通知" + +#: seahub/templates/base_for_backbone.html:116 msgid "Welcome to Seafile!" msgstr "歡迎來到Seafile!" -#: seahub/templates/base_for_backbone.html:142 +#: seahub/templates/base_for_backbone.html:118 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 "Seafile把文件組織到資料庫裡。每個資料庫可以被單獨的同步和共享。我們已經為你創建了一個私人資料庫。你之後可以再創建其他的資料庫。" -#: seahub/templates/base_for_backbone.html:144 +#: seahub/templates/base_for_backbone.html:120 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 " @@ -2947,7 +3047,7 @@ msgid "" msgstr "" #: seahub/templates/choose_register.html:13 -#: seahub/templates/registration/login.html:38 +#: seahub/templates/registration/login.html:40 #: seahub/templates/registration/registration_form.html:11 msgid "Signup" msgstr "註冊" @@ -2977,28 +3077,31 @@ msgid "Please enter the password." msgstr "請輸入密碼。" #: seahub/templates/download.html:4 seahub/templates/file_revisions.html:76 -#: seahub/templates/js/templates.html:201 -#: seahub/templates/js/templates.html:284 -#: seahub/templates/js/templates.html:365 -#: seahub/templates/js/templates.html:391 +#: seahub/templates/js/templates.html:102 +#: seahub/templates/js/templates.html:209 +#: seahub/templates/js/templates.html:292 +#: seahub/templates/js/templates.html:373 +#: seahub/templates/js/templates.html:399 #: 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_file_base.html:77 +#: seahub/templates/view_file_base.html:111 #: seahub/templates/view_history_file.html:30 #: seahub/templates/view_history_file.html:41 #: seahub/templates/view_shared_dir.html:68 +#: seahub/templates/view_shared_dir.html:69 #: seahub/templates/view_shared_dir.html:100 +#: seahub/templates/view_shared_dir.html:101 #: 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:302 +#: seahub/templates/js/templates.html:310 msgid "Access Log" msgstr "" @@ -3007,9 +3110,12 @@ msgstr "" msgid "Current Path:" msgstr "當前路徑:" -#: seahub/templates/file_access.html:25 seahub/templates/js/templates.html:543 -#: seahub/templates/js/templates.html:789 -#: seahub/templates/js/templates.html:1256 +#: seahub/templates/file_access.html:25 +#: seahub/templates/js/sysadmin-templates.html:136 +#: seahub/templates/js/sysadmin-templates.html:188 +#: seahub/templates/js/templates.html:538 +#: seahub/templates/js/templates.html:792 +#: seahub/templates/js/templates.html:1281 #: seahub/templates/sysadmin/sys_trafficadmin.html:17 msgid "User" msgstr "" @@ -3019,11 +3125,16 @@ msgstr "" msgid "Type" msgstr "" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:197 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:139 +#: seahub/templates/js/sysadmin-templates.html:190 +#: seahub/templates/libraries.html:197 msgid "IP" msgstr "IP" -#: seahub/templates/file_access.html:27 seahub/templates/libraries.html:196 +#: seahub/templates/file_access.html:27 +#: seahub/templates/js/sysadmin-templates.html:138 +#: seahub/templates/libraries.html:196 msgid "Device Name" msgstr "" @@ -3037,6 +3148,7 @@ msgstr "" #: seahub/templates/file_access.html:64 seahub/templates/repo_history.html:66 #: seahub/templates/snippets/admin_paginator.html:11 +#: seahub/templates/sysadmin/sys_publink_admin.html:41 #: seahub/templates/sysadmin/sys_trafficadmin.html:38 #: seahub/templates/sysadmin/useradmin_paginator.html:12 msgid "Per page: " @@ -3062,10 +3174,6 @@ msgstr "草稿已儲存。" 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 "密碼將在服務器上保存一小時。" @@ -3190,7 +3298,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:661 +#: seahub/views/sysadmin.py:677 msgid "Default" msgstr "" @@ -3215,10 +3323,10 @@ msgid "Password is required." msgstr "密碼為必填項" #: seahub/templates/file_revisions.html:5 -#: seahub/templates/js/templates.html:142 -#: seahub/templates/js/templates.html:299 -#: seahub/templates/js/templates.html:374 seahub/templates/repo_history.html:5 -#: seahub/templates/view_file_base.html:64 +#: seahub/templates/js/templates.html:150 +#: seahub/templates/js/templates.html:307 +#: seahub/templates/js/templates.html:382 seahub/templates/repo_history.html:5 +#: seahub/templates/view_file_base.html:69 msgid "History" msgstr "歷史" @@ -3314,85 +3422,90 @@ msgstr "海文互知" msgid "About Us" msgstr "" -#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:605 +#: seahub/templates/home_base.html:7 seahub/templates/js/templates.html:607 msgid "Files" msgstr "文件" -#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:157 -#: seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:609 seahub/templates/libraries.html:13 +#: seahub/templates/home_base.html:10 seahub/templates/js/templates.html:165 +#: seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:611 seahub/templates/libraries.html:13 msgid "Mine" msgstr "我擁有的" -#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:159 -#: seahub/templates/js/templates.html:614 seahub/templates/libraries.html:29 +#: seahub/templates/home_base.html:18 seahub/templates/js/templates.html:167 +#: seahub/templates/js/templates.html:616 seahub/templates/libraries.html:29 msgid "Shared" msgstr "共享給我的" -#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:155 -#: seahub/templates/js/templates.html:619 seahub/templates/libraries.html:43 -#: seahub/templates/pub_base.html:5 seahub/templates/pub_base.html.py:10 -#: seahub/templates/sysadmin/userinfo.html:24 +#: seahub/templates/home_base.html:20 seahub/templates/js/templates.html:163 +#: seahub/templates/js/templates.html:621 seahub/templates/pub_base.html:10 +msgctxt "" +"This is a label in navigation, meaning the public area for all registered " +"users to share libraries." msgid "Organization" -msgstr "團體" +msgstr "" -#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:627 -#: seahub/templates/js/templates.html:649 +#: seahub/templates/home_base.html:27 seahub/templates/js/templates.html:629 +#: seahub/templates/js/templates.html:651 #: seahub/templates/sysadmin/sys_group_admin.html:8 msgid "All Groups" msgstr "所有群組" -#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:662 +#: seahub/templates/home_base.html:39 seahub/templates/js/templates.html:664 msgid "Tools" msgstr "" #: seahub/templates/home_base.html:41 seahub/templates/home_base.html.py:71 -#: seahub/templates/js/templates.html:664 -#: seahub/templates/js/templates.html:706 +#: seahub/templates/js/templates.html:666 +#: seahub/templates/js/templates.html:708 msgid "Enable Modules" msgstr "新增模組" -#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:669 +#: seahub/templates/home_base.html:45 seahub/templates/js/templates.html:671 #: seahub/templates/libraries.html:164 seahub/templates/starred.html:8 msgid "Starred" msgstr "星標文件" -#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:673 +#: seahub/templates/home_base.html:47 seahub/templates/js/templates.html:675 msgid "Activities" msgstr "文件活動" #: seahub/templates/home_base.html:51 seahub/templates/home_base.html.py:78 -#: seahub/templates/js/templates.html:679 -#: seahub/templates/js/templates.html:717 +#: seahub/templates/js/templates.html:681 +#: seahub/templates/js/templates.html:719 #: seahub/templates/wiki/personal_wiki.html:6 #: seahub/templates/wiki/personal_wiki_pages.html:6 msgid "Personal Wiki" msgstr "個人維基" -#: seahub/templates/home_base.html:54 seahub/templates/js/templates.html:684 -#: seahub/templates/libraries.html:191 +#: seahub/templates/home_base.html:54 +#: seahub/templates/js/sysadmin-templates.html:9 +#: seahub/templates/js/templates.html:686 seahub/templates/libraries.html:191 +#: seahub/templates/sysadmin/base.html:12 msgid "Devices" msgstr "" -#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:688 +#: seahub/templates/home_base.html:57 seahub/templates/js/templates.html:690 msgid "Share Admin" msgstr "共享管理" -#: seahub/templates/home_base.html:63 seahub/templates/js/templates.html:699 -#: seahub/templates/sysadmin/base.html:37 +#: seahub/templates/home_base.html:63 +#: seahub/templates/js/sysadmin-templates.html:39 +#: seahub/templates/js/templates.html:701 +#: seahub/templates/sysadmin/base.html:40 msgid "Links" msgstr "連結" -#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:114 +#: seahub/templates/i18n.html:6 seahub/templates/js/templates.html:126 msgid "Upload Folder" msgstr "" -#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:461 +#: seahub/templates/i18n.html:7 seahub/templates/js/templates.html:455 #: seahub/templates/snippets/file_share_popup.html:25 msgid "Add auto expiration" msgstr "" -#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:464 +#: seahub/templates/i18n.html:8 seahub/templates/js/templates.html:458 #: seahub/templates/snippets/file_share_popup.html:28 msgid "Days" msgstr "" @@ -3410,18 +3523,12 @@ msgid "Shared Libs" msgstr "" #: 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/js/lib-op-popups.html:6 -#: seahub/templates/sysadmin/admin_repo_view.html:106 -msgid "Directory Name" -msgstr "目錄名" +#: seahub/templates/js/templates.html:132 +msgid "New Folder" +msgstr "" #: seahub/templates/js/lib-op-popups.html:16 -#: seahub/templates/js/templates.html:120 +#: seahub/templates/js/templates.html:133 msgid "New File" msgstr "新建文件" @@ -3439,8 +3546,7 @@ msgstr "簡單的標記格式" #: seahub/templates/js/lib-op-popups.html:21 #: seahub/templates/js/lib-op-popups.html:23 -#: seahub/templates/js/templates.html:415 -#: seahub/templates/js/templates.html:918 +#: seahub/templates/js/templates.html:928 #: seahub/templates/repo_history.html:28 msgid "Details" msgstr "詳情" @@ -3504,7 +3610,123 @@ msgstr "" msgid "Don't replace" msgstr "" -#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:730 +#: seahub/templates/js/sysadmin-templates.html:25 +#: seahub/templates/js/sysadmin-templates.html:111 +#: seahub/templates/sysadmin/base.html:28 +#: seahub/templates/sysadmin/sys_info.html:44 +msgid "Organizations" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:31 +#: seahub/templates/sysadmin/base.html:33 +msgid "Institutions" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:43 +#: seahub/templates/sysadmin/base.html:44 +msgid "Traffic" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:48 +#: seahub/templates/sysadmin/base.html:49 +msgid "Logs" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:53 +#: seahub/templates/sysadmin/base.html:54 +msgid "Virus Scan" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:70 +#: seahub/templates/sysadmin/sys_info.html:10 +msgid "System Info" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:72 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "Professional Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:74 +#: seahub/templates/sysadmin/sys_info.html:12 +msgid "expires on" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:77 +#: seahub/templates/sysadmin/sys_info.html:14 +msgid "Community Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:78 +#: seahub/templates/sysadmin/sys_info.html:15 +msgid "Upgrade to Pro Edition" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:86 +#: seahub/templates/sysadmin/sys_info.html:23 +msgid "Limits" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:121 +#: seahub/templates/js/sysadmin-templates.html:174 +msgid "Desktop" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:124 +#: seahub/templates/js/sysadmin-templates.html:177 +msgid "Mobile" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:128 +#: seahub/templates/js/sysadmin-templates.html:180 +msgid "Errors" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/libraries.html:195 +msgid "Platform" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:137 +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Version" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:140 +#: seahub/templates/libraries.html:198 +msgid "Last Access" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:149 +msgid "No connected devices" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:165 +#: seahub/templates/js/templates.html:1438 +msgid "Unlink" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:183 +#: seahub/templates/repo_dir_recycle_view.html:26 +#: seahub/templates/repo_dir_recycle_view.html:54 +msgid "Clean" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:189 +msgid "Device" +msgstr "" + +#: seahub/templates/js/sysadmin-templates.html:192 +#: seahub/templates/sysadmin/admin_repo_view.html:293 +#: seahub/templates/view_shared_upload_link.html:81 seahub/views/ajax.py:1014 +msgid "Error" +msgstr "錯誤" + +#: seahub/templates/js/sysadmin-templates.html:201 +msgid "No sync errors" +msgstr "" + +#: seahub/templates/js/templates.html:4 seahub/templates/js/templates.html:732 #: seahub/templates/libraries.html:14 msgid "New Library" msgstr "新建資料庫" @@ -3518,13 +3740,14 @@ msgid "Encrypt" msgstr "加密" #: seahub/templates/js/templates.html:21 +#: seahub/templates/js/templates.html:1408 #, python-format msgid "(at least %(repo_password_min_length)s characters)" msgstr "(至少%(repo_password_min_length)s個字元)" #: seahub/templates/js/templates.html:23 -#: seahub/templates/js/templates.html:456 -#: seahub/templates/js/templates.html:511 +#: seahub/templates/js/templates.html:450 +#: seahub/templates/js/templates.html:505 #: seahub/templates/snippets/file_share_popup.html:20 msgid "Password again" msgstr "請再次輸入密碼" @@ -3534,34 +3757,34 @@ msgid "Broken (please contact your administrator to fix this library)" msgstr "" #: seahub/templates/js/templates.html:42 -#: seahub/templates/js/templates.html:130 -#: seahub/templates/js/templates.html:203 -#: seahub/templates/js/templates.html:286 -#: seahub/templates/js/templates.html:367 -#: seahub/templates/js/templates.html:393 -#: seahub/templates/view_file_base.html:59 +#: seahub/templates/js/templates.html:137 +#: seahub/templates/js/templates.html:211 +#: seahub/templates/js/templates.html:294 +#: seahub/templates/js/templates.html:375 +#: seahub/templates/js/templates.html:401 +#: seahub/templates/view_file_base.html:64 msgid "Share" msgstr "共享" #: seahub/templates/js/templates.html:45 -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:325 msgid "More operations" msgstr "更多操作" #: seahub/templates/js/templates.html:47 -#: seahub/templates/js/templates.html:213 -#: seahub/templates/js/templates.html:296 -#: seahub/templates/js/templates.html:371 -#: seahub/templates/js/templates.html:397 -#: seahub/templates/js/templates.html:1004 -#: seahub/templates/js/templates.html:1021 +#: seahub/templates/js/templates.html:221 +#: seahub/templates/js/templates.html:304 +#: seahub/templates/js/templates.html:379 +#: seahub/templates/js/templates.html:405 +#: seahub/templates/js/templates.html:1020 +#: seahub/templates/js/templates.html:1037 msgid "Rename" msgstr "重命名" #: seahub/templates/js/templates.html:48 -#: seahub/templates/js/templates.html:1005 +#: seahub/templates/js/templates.html:1021 #: seahub/templates/sysadmin/repoadmin_table.html:36 #: seahub/templates/sysadmin/userinfo.html:104 msgid "Transfer" @@ -3584,58 +3807,59 @@ msgid "Folder Permission" msgstr "" #: seahub/templates/js/templates.html:99 -#: seahub/templates/js/templates.html:214 -#: seahub/templates/js/templates.html:297 -#: seahub/templates/js/templates.html:372 -#: seahub/templates/js/templates.html:398 +#: seahub/templates/js/templates.html:222 +#: seahub/templates/js/templates.html:305 +#: seahub/templates/js/templates.html:380 +#: seahub/templates/js/templates.html:406 msgid "Move" msgstr "移動" #: seahub/templates/js/templates.html:100 -#: seahub/templates/js/templates.html:125 -#: seahub/templates/js/templates.html:215 -#: seahub/templates/js/templates.html:226 -#: seahub/templates/js/templates.html:298 -#: seahub/templates/js/templates.html:319 -#: seahub/templates/js/templates.html:373 -#: seahub/templates/js/templates.html:399 +#: seahub/templates/js/templates.html:107 +#: seahub/templates/js/templates.html:223 +#: seahub/templates/js/templates.html:234 +#: seahub/templates/js/templates.html:306 +#: seahub/templates/js/templates.html:327 +#: seahub/templates/js/templates.html:381 +#: seahub/templates/js/templates.html:407 msgid "Copy" msgstr "複製" -#: seahub/templates/js/templates.html:104 +#: seahub/templates/js/templates.html:114 +#: seahub/templates/js/templates.html:119 #: seahub/templates/sysadmin/admin_repo_view.html:31 #: seahub/templates/sysadmin/userinfo.html:187 msgid "Upload" msgstr "上傳" -#: seahub/templates/js/templates.html:110 +#: seahub/templates/js/templates.html:122 msgid "Upload Files" msgstr "上傳文件" -#: seahub/templates/js/templates.html:119 -msgid "New Folder" -msgstr "" - -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:27 +#: seahub/templates/view_shared_dir.html:29 +#: seahub/templates/view_shared_dir.html:31 msgid "List" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "list view" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 #: seahub/templates/view_shared_dir.html:33 +#: seahub/templates/view_shared_dir.html:35 +#: seahub/templates/view_shared_dir.html:37 msgid "Grid" msgstr "" -#: seahub/templates/js/templates.html:134 +#: seahub/templates/js/templates.html:142 msgid "grid view" msgstr "" -#: seahub/templates/js/templates.html:140 -#: seahub/templates/js/templates.html:146 +#: seahub/templates/js/templates.html:148 +#: seahub/templates/js/templates.html:154 #: seahub/templates/sysadmin/sys_list_system.html:10 #: seahub/templates/sysadmin/sys_repo_admin.html:21 #: seahub/templates/sysadmin/sys_repo_trash.html:16 @@ -3643,175 +3867,177 @@ msgstr "" msgid "Trash" msgstr "資源回收筒" -#: seahub/templates/js/templates.html:159 +#: seahub/templates/js/templates.html:167 msgid "Sub-libraries" msgstr "子資料庫" -#: seahub/templates/js/templates.html:179 -#: seahub/templates/js/templates.html:853 -#: seahub/templates/js/templates.html:862 +#: seahub/templates/js/templates.html:187 +#: seahub/templates/js/templates.html:863 +#: seahub/templates/js/templates.html:872 msgid "Actions" msgstr "" -#: seahub/templates/js/templates.html:211 -#: seahub/templates/js/templates.html:224 -#: seahub/templates/js/templates.html:294 -#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:219 +#: seahub/templates/js/templates.html:232 +#: seahub/templates/js/templates.html:302 +#: seahub/templates/js/templates.html:325 msgid "More Operations" msgstr "更多操作" -#: seahub/templates/js/templates.html:219 -#: seahub/templates/js/templates.html:312 -#: seahub/templates/js/templates.html:384 -#: seahub/templates/js/templates.html:403 +#: seahub/templates/js/templates.html:227 +#: seahub/templates/js/templates.html:320 +#: seahub/templates/js/templates.html:392 +#: seahub/templates/js/templates.html:411 msgid "Open via Client" msgstr "" -#: seahub/templates/js/templates.html:250 +#: seahub/templates/js/templates.html:258 +#: seahub/templates/view_file_base.html:15 msgid "starred" msgstr "已加星標" -#: seahub/templates/js/templates.html:252 +#: seahub/templates/js/templates.html:260 +#: seahub/templates/view_file_base.html:17 msgid "unstarred" msgstr "未加星標" -#: seahub/templates/js/templates.html:268 -#: seahub/templates/js/templates.html:344 -#: seahub/templates/view_file_base.html:16 +#: seahub/templates/js/templates.html:276 +#: seahub/templates/js/templates.html:352 +#: seahub/templates/view_file_base.html:21 msgid "locked" msgstr "" -#: seahub/templates/js/templates.html:306 -#: seahub/templates/js/templates.html:378 -#: seahub/templates/view_file_base.html:50 -#: seahub/templates/view_file_base.html:52 +#: seahub/templates/js/templates.html:314 +#: seahub/templates/js/templates.html:386 +#: seahub/templates/view_file_base.html:55 +#: seahub/templates/view_file_base.html:57 msgid "Unlock" msgstr "" -#: seahub/templates/js/templates.html:309 -#: seahub/templates/js/templates.html:381 -#: seahub/templates/view_file_base.html:49 -#: seahub/templates/view_file_base.html:53 +#: seahub/templates/js/templates.html:317 +#: seahub/templates/js/templates.html:389 +#: seahub/templates/view_file_base.html:54 +#: seahub/templates/view_file_base.html:58 msgid "Lock" msgstr "" -#: seahub/templates/js/templates.html:330 +#: seahub/templates/js/templates.html:338 msgid "Fetch failed" msgstr "" -#: seahub/templates/js/templates.html:427 +#: seahub/templates/js/templates.html:421 #: seahub/templates/snippets/file_share_popup.html:6 msgid "Download Link" msgstr "下載連結" -#: seahub/templates/js/templates.html:431 +#: seahub/templates/js/templates.html:425 msgid "Upload Link" msgstr "上傳連結" -#: seahub/templates/js/templates.html:434 +#: seahub/templates/js/templates.html:428 msgid "Share to user" msgstr "" -#: seahub/templates/js/templates.html:435 +#: seahub/templates/js/templates.html:429 msgid "Share to group" msgstr "" -#: seahub/templates/js/templates.html:447 -#: seahub/templates/js/templates.html:502 +#: seahub/templates/js/templates.html:441 +#: seahub/templates/js/templates.html:496 #: seahub/templates/snippets/file_share_popup.html:15 msgid "Add password protection" msgstr "" -#: seahub/templates/js/templates.html:450 -#: seahub/templates/js/templates.html:505 +#: seahub/templates/js/templates.html:444 +#: seahub/templates/js/templates.html:499 #: seahub/templates/snippets/file_share_popup.html:18 #, python-format msgid "(at least %(share_link_password_min_length)s characters)" msgstr "" -#: seahub/templates/js/templates.html:453 -#: seahub/templates/js/templates.html:508 +#: seahub/templates/js/templates.html:447 +#: seahub/templates/js/templates.html:502 #: seahub/templates/sysadmin/sys_useradmin.html:45 #: seahub/templates/sysadmin/sys_useradmin.html:123 msgid "Show" msgstr "" -#: seahub/templates/js/templates.html:454 -#: seahub/templates/js/templates.html:509 +#: seahub/templates/js/templates.html:448 +#: seahub/templates/js/templates.html:503 #: seahub/templates/sysadmin/sys_useradmin.html:46 msgid "Generate a random password" msgstr "" -#: seahub/templates/js/templates.html:468 -#: seahub/templates/js/templates.html:515 +#: seahub/templates/js/templates.html:462 +#: seahub/templates/js/templates.html:509 #: seahub/templates/snippets/file_share_popup.html:33 msgid "Generate" msgstr "生成連結" -#: seahub/templates/js/templates.html:472 +#: seahub/templates/js/templates.html:466 #: seahub/templates/snippets/file_share_popup.html:35 msgid "Link: " msgstr "連結:" -#: seahub/templates/js/templates.html:475 +#: seahub/templates/js/templates.html:469 msgid "Direct Download Link: " msgstr "" -#: seahub/templates/js/templates.html:479 -#: seahub/templates/js/templates.html:519 +#: seahub/templates/js/templates.html:473 +#: seahub/templates/js/templates.html:513 #: seahub/templates/snippets/file_share_popup.html:36 msgid "Send" msgstr "發送" -#: seahub/templates/js/templates.html:482 -#: seahub/templates/js/templates.html:522 +#: seahub/templates/js/templates.html:476 +#: seahub/templates/js/templates.html:516 #: seahub/templates/snippets/file_share_popup.html:40 msgid "Send to:" msgstr "發送到:" -#: seahub/templates/js/templates.html:483 -#: seahub/templates/js/templates.html:523 +#: seahub/templates/js/templates.html:477 +#: seahub/templates/js/templates.html:517 #: seahub/templates/snippets/file_share_popup.html:41 msgid "Emails, Seperated by ','" msgstr "輸入電子信箱,多個以,分隔" -#: seahub/templates/js/templates.html:484 -#: seahub/templates/js/templates.html:524 +#: seahub/templates/js/templates.html:478 +#: seahub/templates/js/templates.html:518 #: seahub/templates/snippets/file_share_popup.html:45 msgid "Message (optional):" msgstr "" -#: seahub/templates/js/templates.html:489 -#: seahub/templates/js/templates.html:529 +#: seahub/templates/js/templates.html:483 +#: seahub/templates/js/templates.html:523 #: seahub/templates/snippets/file_share_popup.html:50 msgid "Sending..." msgstr "發送中..." -#: seahub/templates/js/templates.html:498 +#: seahub/templates/js/templates.html:492 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:518 +#: seahub/templates/js/templates.html:512 msgid "Upload Link: " msgstr "上傳連結:" -#: seahub/templates/js/templates.html:566 -#: seahub/templates/js/templates.html:811 -#: seahub/templates/js/templates.html:1300 +#: seahub/templates/js/templates.html:565 +#: seahub/templates/js/templates.html:818 +#: seahub/templates/js/templates.html:1325 msgid "Group" msgstr "群組" -#: seahub/templates/js/templates.html:597 +#: seahub/templates/js/templates.html:599 msgid "Leave Share" msgstr "退出共享" -#: seahub/templates/js/templates.html:735 +#: seahub/templates/js/templates.html:737 msgid "Wiki" msgstr "維基" -#: seahub/templates/js/templates.html:738 seahub/templates/libraries.html:130 +#: seahub/templates/js/templates.html:740 seahub/templates/libraries.html:130 #: seahub/templates/pub_base.html:13 #: seahub/templates/sysadmin/sys_admin_group_info.html:31 #: seahub/templates/sysadmin/sys_inst_info_user.html:7 @@ -3822,181 +4048,190 @@ msgstr "維基" msgid "Members" msgstr "成員" -#: seahub/templates/js/templates.html:739 +#: seahub/templates/js/templates.html:741 msgid "Discussion" msgstr "討論" -#: seahub/templates/js/templates.html:782 -#: seahub/templates/js/templates.html:1246 +#: seahub/templates/js/templates.html:784 +#: seahub/templates/js/templates.html:1271 msgid "User Permission" msgstr "" -#: seahub/templates/js/templates.html:783 -#: seahub/templates/js/templates.html:1247 +#: seahub/templates/js/templates.html:785 +#: seahub/templates/js/templates.html:1272 msgid "Group Permission" msgstr "" -#: seahub/templates/js/templates.html:834 seahub/templates/starred.html:20 +#: seahub/templates/js/templates.html:844 seahub/templates/starred.html:20 msgid "icon" msgstr "圖示" -#: seahub/templates/js/templates.html:845 seahub/templates/starred.html:27 +#: seahub/templates/js/templates.html:855 seahub/templates/starred.html:27 msgid "Unstar" msgstr "取消星標" -#: seahub/templates/js/templates.html:851 -#: seahub/templates/js/templates.html:860 +#: seahub/templates/js/templates.html:861 +#: seahub/templates/js/templates.html:870 msgid "Library Type" msgstr "" -#: seahub/templates/js/templates.html:865 +#: seahub/templates/js/templates.html:875 #: seahub/templates/sysadmin/sys_admin_group_info.html:42 msgid "Shared By" msgstr "共享來源" -#: seahub/templates/js/templates.html:869 +#: seahub/templates/js/templates.html:879 msgid "Select libraries to share" msgstr "" -#: seahub/templates/js/templates.html:930 +#: seahub/templates/js/templates.html:940 msgid "Deleted library" msgstr "" -#: seahub/templates/js/templates.html:937 +#: seahub/templates/js/templates.html:947 #: seahub/templates/snippets/list_commit_detail.html:10 msgid "Modification Details" msgstr "修改詳情" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this wiki" msgstr "在當前維基搜索文件" -#: seahub/templates/js/templates.html:951 +#: seahub/templates/js/templates.html:961 #: seahub/templates/snippets/search_form.html:4 msgid "Search files in this library" msgstr "在當前資料庫搜索文件" -#: seahub/templates/js/templates.html:953 +#: seahub/templates/js/templates.html:963 #: seahub/templates/snippets/search_form.html:7 #: seahub/templates/snippets/search_form.html:13 msgid "Search Files" msgstr "搜索文件" -#: seahub/templates/js/templates.html:955 +#: seahub/templates/js/templates.html:965 #: seahub/templates/snippets/search_form.html:9 msgid "advanced" msgstr "進階" -#: seahub/templates/js/templates.html:973 seahub/templates/libraries.html:107 +#: seahub/templates/js/templates.html:983 seahub/templates/libraries.html:107 msgid "No library is shared to this group" msgstr "" -#: seahub/templates/js/templates.html:989 +#: seahub/templates/js/templates.html:991 +msgid "owner" +msgstr "" + +#: seahub/templates/js/templates.html:993 +#: seahub/templates/sysadmin/sys_admin_group_info.html:83 +msgid "admin" +msgstr "" + +#: seahub/templates/js/templates.html:1007 msgid "Reply" msgstr "回覆" -#: seahub/templates/js/templates.html:1007 #: seahub/templates/js/templates.html:1023 +#: seahub/templates/js/templates.html:1039 msgid "Add Wiki" msgstr "" -#: seahub/templates/js/templates.html:1009 #: seahub/templates/js/templates.html:1025 +#: seahub/templates/js/templates.html:1041 msgid "Remove Wiki" msgstr "" -#: seahub/templates/js/templates.html:1013 #: seahub/templates/js/templates.html:1029 +#: seahub/templates/js/templates.html:1045 msgid "Import Members" msgstr "" -#: seahub/templates/js/templates.html:1014 #: seahub/templates/js/templates.html:1030 +#: seahub/templates/js/templates.html:1046 msgid "Manage Members" msgstr "" -#: seahub/templates/js/templates.html:1017 +#: seahub/templates/js/templates.html:1033 msgid "Dismiss" msgstr "解散" -#: seahub/templates/js/templates.html:1034 +#: seahub/templates/js/templates.html:1050 msgid "Leave group" msgstr "" -#: seahub/templates/js/templates.html:1041 +#: seahub/templates/js/templates.html:1057 msgid "Rename Group To" msgstr "重命名群組為" -#: seahub/templates/js/templates.html:1050 +#: seahub/templates/js/templates.html:1066 msgid "Transfer Group To" msgstr "將小組轉讓給" -#: seahub/templates/js/templates.html:1058 +#: seahub/templates/js/templates.html:1074 msgid "Import group members from a CSV file" msgstr "" -#: seahub/templates/js/templates.html:1060 +#: seahub/templates/js/templates.html:1076 msgid "File format: user@mail.com" msgstr "" -#: seahub/templates/js/templates.html:1070 +#: seahub/templates/js/templates.html:1086 #: seahub/templates/sysadmin/sys_inst_admin.html:12 msgid "Add" msgstr "" -#: seahub/templates/js/templates.html:1150 +#: seahub/templates/js/templates.html:1166 msgid "Setting library history is disabled by Admin" msgstr "" -#: seahub/templates/js/templates.html:1154 +#: seahub/templates/js/templates.html:1171 msgid "Keep full history" msgstr "保留所有歷史" -#: seahub/templates/js/templates.html:1157 +#: seahub/templates/js/templates.html:1177 msgid "Don't keep history" msgstr "不保留歷史" -#: seahub/templates/js/templates.html:1160 +#: seahub/templates/js/templates.html:1183 msgid "Only keep a period of history:" msgstr "僅保留一段時間的歷史:" -#: seahub/templates/js/templates.html:1161 +#: seahub/templates/js/templates.html:1184 msgid "days" msgstr "天" -#: seahub/templates/js/templates.html:1186 -#: seahub/templates/js/templates.html:1203 +#: seahub/templates/js/templates.html:1211 +#: seahub/templates/js/templates.html:1228 msgid "Created By" msgstr "" -#: seahub/templates/js/templates.html:1257 -#: seahub/templates/js/templates.html:1301 +#: seahub/templates/js/templates.html:1282 +#: seahub/templates/js/templates.html:1326 msgid "Folder" msgstr "" -#: seahub/templates/js/templates.html:1268 -#: seahub/templates/js/templates.html:1287 -#: seahub/templates/js/templates.html:1314 -#: seahub/templates/js/templates.html:1333 +#: seahub/templates/js/templates.html:1293 +#: seahub/templates/js/templates.html:1312 +#: seahub/templates/js/templates.html:1339 +#: seahub/templates/js/templates.html:1358 msgid "Select a folder" msgstr "" -#: seahub/templates/js/templates.html:1381 +#: seahub/templates/js/templates.html:1406 msgid "Old Password" msgstr "" -#: seahub/templates/js/templates.html:1383 -#, python-format -msgid "New Password(at least %(repo_password_min_length)s characters)" +#: seahub/templates/js/templates.html:1408 +#: seahub/templates/registration/password_change_form.html:19 +msgid "New Password" msgstr "" -#: seahub/templates/js/templates.html:1385 +#: seahub/templates/js/templates.html:1410 msgid "New Password Again" msgstr "" -#: seahub/templates/js/templates.html:1413 -msgid "Unlink" +#: seahub/templates/js/templates.html:1453 +msgid "See All Notifications" msgstr "" #: seahub/templates/libraries.html:21 @@ -4014,6 +4249,11 @@ msgstr "你可以新建一個資料庫來組織你的文件資料,比如為每 msgid "No library is shared to you" msgstr "還沒有資料庫共享給你" +#: seahub/templates/libraries.html:43 seahub/templates/pub_base.html:5 +#: seahub/templates/sysadmin/userinfo.html:24 +msgid "Organization" +msgstr "團體" + #: seahub/templates/libraries.html:46 msgid "Add Library" msgstr "" @@ -4060,10 +4300,6 @@ msgid "" " on libraries. Groups you join will be listed here." msgstr "" -#: seahub/templates/libraries.html:90 -msgid "Group Name" -msgstr "群組名稱" - #: seahub/templates/libraries.html:108 msgid "" "You can share libraries by clicking the \"New Library\" button above or the " @@ -4103,14 +4339,6 @@ msgid "" " page, and they will be listed here." msgstr "你可以在文件瀏覽頁麵點擊“新增星標”按鈕給重要的文件加上星標,這些文件會顯示在這裡。" -#: seahub/templates/libraries.html:195 -msgid "Platform" -msgstr "" - -#: seahub/templates/libraries.html:198 -msgid "Last Access" -msgstr "" - #: seahub/templates/libraries.html:199 msgid "# Libraries" msgstr "" @@ -4140,7 +4368,7 @@ msgstr "" #: seahub/templates/registration/login.html:4 #: seahub/templates/registration/login.html:8 -#: seahub/templates/registration/login.html:36 +#: seahub/templates/registration/login.html:38 #: seahub/templates/registration/password_reset_complete.html:8 #: seahub/templates/sysadmin/user_activation_email.html:15 #: seahub/templates/sysadmin/user_add_email.html:25 @@ -4160,33 +4388,33 @@ msgstr "驗證碼" msgid "Not clear? Refresh it." msgstr "太模糊?刷新。" -#: seahub/templates/registration/login.html:25 +#: seahub/templates/registration/login.html:27 msgid "Incorrect email or password" msgstr "你輸入的電子信箱或密碼不正確" -#: seahub/templates/registration/login.html:33 +#: seahub/templates/registration/login.html:35 #, python-format msgid "Remember me for %(remember_days)s days " msgstr "%(remember_days)s天內保持登錄" -#: seahub/templates/registration/login.html:42 +#: seahub/templates/registration/login.html:44 #: seahub/templates/sysadmin/sudo_mode.html:20 msgid "Shibboleth" msgstr "" -#: seahub/templates/registration/login.html:46 +#: seahub/templates/registration/login.html:48 msgid "Kerberos" msgstr "" -#: seahub/templates/registration/login.html:73 +#: seahub/templates/registration/login.html:75 msgid "Failed to refresh the CAPTCHA, please try again later." msgstr "刷新驗證碼失敗,請稍後嘗試。" -#: seahub/templates/registration/login.html:80 +#: seahub/templates/registration/login.html:82 msgid "Email or username cannot be blank" msgstr "" -#: seahub/templates/registration/login.html:84 +#: seahub/templates/registration/login.html:86 #: seahub/templates/registration/password_change_form.html:67 #: seahub/templates/registration/registration_form.html:88 #: seahub/templates/sysadmin/sudo_mode.html:34 @@ -4227,10 +4455,6 @@ msgstr "" msgid "Current Password" msgstr "" -#: seahub/templates/registration/password_change_form.html:19 -msgid "New Password" -msgstr "" - #: seahub/templates/registration/password_change_form.html:22 #: seahub/templates/registration/registration_form.html:27 #: seahub/templates/sysadmin/sudo_mode.html:4 @@ -4367,11 +4591,6 @@ msgstr "電子信箱不能為空" 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 "刪除時間" @@ -4393,12 +4612,12 @@ msgid "1 month ago" msgstr "" #: seahub/templates/repo_dir_recycle_view.html:143 -#: seahub/templates/sysadmin/settings.html:148 -#: seahub/templates/sysadmin/settings.html:186 seahub/views/sysadmin.py:377 -#: seahub/views/sysadmin.py:395 seahub/views/sysadmin.py:423 -#: seahub/views/sysadmin.py:1570 seahub/views/sysadmin.py:1627 -#: seahub/views/sysadmin.py:2262 seahub/views/sysadmin.py:2304 -#: seahub/views/sysadmin.py:2391 +#: seahub/templates/sysadmin/settings.html:159 +#: seahub/templates/sysadmin/settings.html:197 seahub/views/sysadmin.py:393 +#: seahub/views/sysadmin.py:411 seahub/views/sysadmin.py:439 +#: seahub/views/sysadmin.py:1586 seahub/views/sysadmin.py:1643 +#: seahub/views/sysadmin.py:2290 seahub/views/sysadmin.py:2332 +#: seahub/views/sysadmin.py:2419 msgid "Success" msgstr "" @@ -4628,7 +4847,7 @@ msgid "Please enter password" msgstr "請輸入密碼" #: seahub/templates/snippets/repo_del_js.html:46 -#: seahub/templates/sysadmin/admin_repo_view.html:351 +#: seahub/templates/sysadmin/admin_repo_view.html:355 msgid "Delete succeeded." msgstr "刪除成功。" @@ -4769,6 +4988,15 @@ msgstr "星標文件" msgid "Successfully unstarred." msgstr "取消星標成功。" +#: seahub/templates/sysadmin/admin_repo_view.html:34 +#: seahub/templates/sysadmin/admin_repo_view.html:105 +msgid "New Directory" +msgstr "新建目錄" + +#: seahub/templates/sysadmin/admin_repo_view.html:106 +msgid "Directory Name" +msgstr "目錄名" + #: seahub/templates/sysadmin/admin_repo_view.html:117 msgid "close" msgstr "" @@ -4794,88 +5022,62 @@ msgstr "" msgid "Failed to get upload url" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:282 +#: seahub/templates/sysadmin/admin_repo_view.html:286 #: seahub/templates/view_shared_upload_link.html:74 msgid "File is too big" msgstr "文件太大" -#: seahub/templates/sysadmin/admin_repo_view.html:283 +#: seahub/templates/sysadmin/admin_repo_view.html:287 #: seahub/templates/view_shared_upload_link.html:75 msgid "File is too small" msgstr "文件太小" -#: seahub/templates/sysadmin/admin_repo_view.html:284 +#: seahub/templates/sysadmin/admin_repo_view.html:288 #: seahub/templates/view_shared_upload_link.html:76 msgid "Filetype not allowed" msgstr "不支援的文件類型" -#: seahub/templates/sysadmin/admin_repo_view.html:285 +#: seahub/templates/sysadmin/admin_repo_view.html:289 #: 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/sysadmin/admin_repo_view.html:290 #: 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/sysadmin/admin_repo_view.html:291 #: 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/sysadmin/admin_repo_view.html:294 #: seahub/templates/view_shared_upload_link.html:82 msgid "uploaded" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:291 +#: seahub/templates/sysadmin/admin_repo_view.html:295 #: seahub/templates/view_shared_upload_link.html:83 msgid "canceled" msgstr "" -#: seahub/templates/sysadmin/admin_repo_view.html:292 +#: seahub/templates/sysadmin/admin_repo_view.html:296 #: seahub/templates/view_shared_upload_link.html:84 msgid "Start" msgstr "上傳" -#: seahub/templates/sysadmin/admin_repo_view.html:310 -#: seahub/templates/sysadmin/settings.html:164 +#: seahub/templates/sysadmin/admin_repo_view.html:314 +#: seahub/templates/sysadmin/settings.html:175 msgid "It is required." msgstr "必填項目。" -#: seahub/templates/sysadmin/base.html:25 -#: seahub/templates/sysadmin/sys_info.html:44 -msgid "Organizations" -msgstr "" - -#: seahub/templates/sysadmin/base.html:30 -msgid "Institutions" -msgstr "" - -#: seahub/templates/sysadmin/base.html:41 -msgid "Traffic" -msgstr "" - -#: seahub/templates/sysadmin/base.html:46 -msgid "Logs" -msgstr "" - -#: seahub/templates/sysadmin/base.html:51 -msgid "Virus Scan" -msgstr "" - #: seahub/templates/sysadmin/org_admin_table.html:5 #: seahub/templates/sysadmin/sys_admin_group_info.html:20 #: 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:1402 +#: seahub/views/sysadmin.py:1418 msgid "Creator" msgstr "創建者" @@ -4927,6 +5129,13 @@ msgstr "" msgid "Files / Size" msgstr "" +#: seahub/templates/sysadmin/settings.html:11 +msgid "" +"Note: Settings via web interface are saved in database table (seahub-" +"db/constance_config). They have a higher priority over the settings in " +"config files." +msgstr "" + #: seahub/templates/sysadmin/sudo_mode.html:8 msgid "Confirm password to continue" msgstr "" @@ -4957,10 +5166,6 @@ msgstr "" msgid "No library has shared to this group" msgstr "" -#: seahub/templates/sysadmin/sys_admin_group_info.html:83 -msgid "admin" -msgstr "" - #: seahub/templates/sysadmin/sys_group_admin.html:10 #: seahub/templates/sysadmin/sys_useradmin.html:27 msgid "Export Excel" @@ -4972,30 +5177,6 @@ msgstr "" msgid "Delete Group" msgstr "刪除群組" -#: seahub/templates/sysadmin/sys_info.html:10 -msgid "System Info" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "Professional Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:12 -msgid "expires on" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:14 -msgid "Community Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:15 -msgid "Upgrade to Pro Edition" -msgstr "" - -#: seahub/templates/sysadmin/sys_info.html:23 -msgid "Limits" -msgstr "" - #: seahub/templates/sysadmin/sys_inst_admin.html:9 msgid "All Institutions" msgstr "" @@ -5159,12 +5340,12 @@ msgid "Max User Number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:52 -#: seahub/views/sysadmin.py:1621 +#: seahub/views/sysadmin.py:1637 msgid "Input should be a number" msgstr "" #: seahub/templates/sysadmin/sys_org_info_setting.html:55 -#: seahub/views/sysadmin.py:1631 +#: seahub/views/sysadmin.py:1647 msgid "Input number should be greater than 0" msgstr "" @@ -5304,7 +5485,7 @@ msgstr "LDAP" #: 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:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "LDAP(imported)" msgstr "" @@ -5317,7 +5498,7 @@ msgid "Admins" msgstr "管理員" #: seahub/templates/sysadmin/sys_user_admin_ldap_imported.html:29 -#: seahub/views/sysadmin.py:630 seahub/views/sysadmin.py:633 +#: seahub/views/sysadmin.py:646 seahub/views/sysadmin.py:649 msgid "Last Login" msgstr "" @@ -5343,7 +5524,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:659 +#: seahub/views/sysadmin.py:675 msgid "Guest" msgstr "" @@ -5431,6 +5612,12 @@ msgstr "電子郵件:%(email)s" msgid "Password: %(password)s" msgstr "" +#: seahub/templates/sysadmin/user_freeze_email.html:12 +#, python-format +msgid "" +"Account %(user)s froze due to excessive failed logins. Please check at:" +msgstr "" + #: seahub/templates/sysadmin/user_reset_email.html:12 #, python-format msgid "" @@ -5508,24 +5695,24 @@ msgstr "到" msgid "Sorry, this user is not registered yet." msgstr "抱歉,該用戶還未註冊。" -#: seahub/templates/view_file_base.html:23 +#: seahub/templates/view_file_base.html:28 #: 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_base.html:46 #: 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 +#: seahub/templates/view_file_base.html:97 msgid "Back to top" msgstr "" -#: seahub/templates/view_file_base.html:92 +#: seahub/templates/view_file_base.html:97 msgid "top" msgstr "" @@ -5621,8 +5808,8 @@ msgstr "" #: 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 +#: seahub/views/ajax.py:2330 seahub/views/ajax.py:2350 +#: seahub/views/ajax.py:2393 seahub/views/ajax.py:2400 msgid "Permission denied." msgstr "沒有權限" @@ -5651,8 +5838,8 @@ msgid "Duplicated filename" msgstr "已存在同名的文件" #: seahub/views/__init__.py:569 seahub/views/ajax.py:1302 -#: seahub/views/file.py:379 seahub/views/file.py:776 seahub/views/file.py:947 -#: seahub/views/file.py:1520 +#: seahub/views/file.py:363 seahub/views/file.py:762 seahub/views/file.py:943 +#: seahub/views/file.py:1518 msgid "File does not exist" msgstr "文件不存在" @@ -5711,11 +5898,11 @@ msgstr "\"%s\" 取消共享失敗" msgid "No revisions found" msgstr "" -#: seahub/views/__init__.py:1097 seahub/views/file.py:1048 +#: seahub/views/__init__.py:1097 seahub/views/file.py:1044 msgid "Check file lock error" msgstr "" -#: seahub/views/__init__.py:1101 seahub/views/file.py:1051 +#: seahub/views/__init__.py:1101 seahub/views/file.py:1047 msgid "File is locked" msgstr "" @@ -5743,12 +5930,12 @@ msgstr "成功還原 %(path)s 到根目錄。" msgid "\"%s\" does not exist." msgstr "" -#: seahub/views/__init__.py:1258 seahub/views/file.py:1033 -#: seahub/views/repo.py:181 +#: seahub/views/__init__.py:1258 seahub/views/file.py:1029 +#: seahub/views/repo.py:183 msgid "Internal Error" msgstr "內部錯誤" -#: seahub/views/__init__.py:1261 seahub/views/repo.py:184 +#: seahub/views/__init__.py:1261 seahub/views/repo.py:186 #, python-format msgid "Unable to download directory \"%s\": size is too large." msgstr "無法下載 \"%s\":目錄大小超過限制。" @@ -5758,11 +5945,11 @@ msgstr "無法下載 \"%s\":目錄大小超過限制。" msgid "Unable to download \"%s\"" msgstr "無法下載 \"%s\"" -#: seahub/views/__init__.py:1360 +#: seahub/views/__init__.py:1361 msgid "Successfully enable \"Personal Wiki\"." msgstr "\"個人維基\"模組新增成功。" -#: seahub/views/__init__.py:1365 +#: seahub/views/__init__.py:1366 msgid "Successfully disable \"Personal Wiki\"." msgstr "\"個人維基\"模組刪除成功。" @@ -5779,7 +5966,7 @@ msgid "The group doesn't exist" msgstr "該群組不存在" #: seahub/views/ajax.py:269 seahub/views/ajax.py:1137 -#: seahub/views/ajax.py:1749 +#: seahub/views/ajax.py:1742 msgid "Library is encrypted." msgstr "該資料庫已加密" @@ -5857,262 +6044,266 @@ msgstr "獲取文件塊列表失敗" msgid "Wrong repo id" msgstr "錯誤的repo id" -#: 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 +#: seahub/views/ajax.py:1417 seahub/views/ajax.py:2277 +#: seahub/views/sysadmin.py:396 seahub/views/sysadmin.py:414 +#: seahub/views/sysadmin.py:437 msgid "Failed" msgstr "" -#: seahub/views/ajax.py:1704 +#: seahub/views/ajax.py:1697 msgid "Bad upload link token." msgstr "" -#: seahub/views/ajax.py:1710 +#: seahub/views/ajax.py:1703 msgid "Bad repo id in upload link." msgstr "" -#: seahub/views/ajax.py:1771 +#: seahub/views/ajax.py:1764 msgid "No conflict in the merge." msgstr "合併沒有衝突。" -#: seahub/views/ajax.py:1849 +#: seahub/views/ajax.py:1842 msgid "Failed to edit library information." msgstr "資料庫資訊編輯失敗。" -#: seahub/views/ajax.py:1858 +#: seahub/views/ajax.py:1851 msgid "Failed to save settings on server" msgstr "設置失敗" -#: seahub/views/ajax.py:1861 +#: seahub/views/ajax.py:1854 msgid "Settings saved." msgstr "設置已保存。" -#: seahub/views/ajax.py:1892 +#: seahub/views/ajax.py:1885 #, python-format msgid "Username %s is not valid." msgstr "用戶名 %s 含有無效字元" -#: seahub/views/ajax.py:1899 +#: seahub/views/ajax.py:1892 #, python-format msgid "User %s is not found." msgstr "未找到用戶 %s 。" -#: seahub/views/ajax.py:1906 +#: seahub/views/ajax.py:1899 #, python-format msgid "User %s is not in current organization." msgstr "" -#: seahub/views/ajax.py:1916 +#: seahub/views/ajax.py:1909 #, python-format msgid "Can not transfer library to organization user %s." msgstr "" -#: seahub/views/ajax.py:1945 +#: seahub/views/ajax.py:1938 msgid "Faied to change password, you are not owner." msgstr "" -#: seahub/views/ajax.py:2051 seahub/views/ajax.py:2193 +#: seahub/views/ajax.py:2044 seahub/views/ajax.py:2186 msgid "Invalid folder permission, should be \"rw\" or \"r\"" msgstr "" -#: seahub/views/ajax.py:2055 seahub/views/ajax.py:2197 +#: seahub/views/ajax.py:2048 seahub/views/ajax.py:2190 msgid "Path should start with \"/\"" msgstr "" -#: seahub/views/ajax.py:2059 seahub/views/ajax.py:2201 +#: seahub/views/ajax.py:2052 seahub/views/ajax.py:2194 msgid "Path should not end with \"/\"" msgstr "" -#: seahub/views/ajax.py:2063 seahub/views/ajax.py:2205 +#: seahub/views/ajax.py:2056 seahub/views/ajax.py:2198 msgid "Invalid path" msgstr "" -#: seahub/views/ajax.py:2071 +#: seahub/views/ajax.py:2064 msgid "Invalid user, should be registered" msgstr "" -#: seahub/views/ajax.py:2083 seahub/views/ajax.py:2096 -#: seahub/views/ajax.py:2226 seahub/views/ajax.py:2239 +#: seahub/views/ajax.py:2076 seahub/views/ajax.py:2089 +#: seahub/views/ajax.py:2219 seahub/views/ajax.py:2232 msgid "Operation failed" msgstr "" -#: seahub/views/ajax.py:2086 seahub/views/ajax.py:2229 +#: seahub/views/ajax.py:2079 seahub/views/ajax.py:2222 msgid "Wrong folder permission" msgstr "" -#: seahub/views/ajax.py:2099 seahub/views/ajax.py:2242 +#: seahub/views/ajax.py:2092 seahub/views/ajax.py:2235 msgid "Please add folder permission first" msgstr "" -#: seahub/views/ajax.py:2146 +#: seahub/views/ajax.py:2139 msgid "Please check the email(s) you entered and the contacts you selected" msgstr "" -#: seahub/views/ajax.py:2214 +#: seahub/views/ajax.py:2207 msgid "Invalid group" msgstr "" -#: seahub/views/ajax.py:2299 seahub/views/ajax.py:2331 +#: seahub/views/ajax.py:2292 seahub/views/ajax.py:2324 msgid "Group does not exist." msgstr "" -#: seahub/views/ajax.py:2468 +#: seahub/views/ajax.py:2461 msgid "Failed, file is too large" msgstr "" -#: seahub/views/file.py:139 +#: seahub/views/file.py:123 msgid "HTTPError: failed to open file online" msgstr "HTTPError: 無法在線打開該文件" -#: seahub/views/file.py:143 +#: seahub/views/file.py:127 msgid "URLError: failed to open file online" msgstr "URLError: 無法在線打開該文件" -#: seahub/views/file.py:150 +#: seahub/views/file.py:134 msgid "The encoding you chose is not proper." msgstr "文件編碼不合適" -#: seahub/views/file.py:167 seahub/views/file.py:170 +#: seahub/views/file.py:151 seahub/views/file.py:154 msgid "Unknown file encoding" msgstr "文件編碼無法識別" -#: seahub/views/file.py:290 seahub/views/file.py:297 +#: seahub/views/file.py:274 seahub/views/file.py:281 #, python-format msgid "File size surpasses %s, can not be opened online." msgstr "文件大小超過 %s,無法在線查看。" -#: seahub/views/file.py:313 +#: seahub/views/file.py:297 msgid "The library is encrypted, can not open file online." msgstr "" -#: seahub/views/file.py:391 seahub/views/file.py:658 seahub/views/file.py:673 -#: seahub/views/file.py:691 +#: seahub/views/file.py:375 seahub/views/file.py:647 seahub/views/file.py:662 +#: seahub/views/file.py:680 msgid "Unable to view file" msgstr "無法查看該文件" -#: seahub/views/file.py:465 seahub/views/file.py:633 seahub/views/file.py:818 +#: seahub/views/file.py:454 seahub/views/file.py:622 seahub/views/file.py:814 msgid "Invalid file format." msgstr "錯誤的文件格式。" -#: seahub/views/file.py:718 seahub/views/sysadmin.py:222 +#: seahub/views/file.py:707 seahub/views/sysadmin.py:242 msgid "Unable to download file, invalid file path" msgstr "" -#: seahub/views/file.py:727 +#: seahub/views/file.py:716 msgid "Unable to download file, wrong file path" msgstr "" -#: seahub/views/file.py:732 +#: seahub/views/file.py:721 msgid "Unable to download file, share link traffic is used up." msgstr "" -#: seahub/views/file.py:1055 +#: seahub/views/file.py:784 +msgid "Unable to view raw file, share link traffic is used up." +msgstr "" + +#: seahub/views/file.py:1051 msgid "The library does not exist." msgstr "資料庫不存在" -#: seahub/views/file.py:1059 +#: seahub/views/file.py:1055 msgid "The library is encrypted." msgstr "該資料庫已加密" -#: seahub/views/file.py:1133 +#: seahub/views/file.py:1129 msgid "Unable to edit file" msgstr "無法編輯該文件" -#: seahub/views/file.py:1139 +#: seahub/views/file.py:1135 msgid "The file does not exist." msgstr "該文件不存在" -#: seahub/views/file.py:1168 +#: seahub/views/file.py:1164 msgid "Edit online is not offered for this type of file." msgstr "該類型文件不能在線編輯。" -#: seahub/views/file.py:1275 +#: seahub/views/file.py:1273 msgid "Unable to download file" msgstr "" -#: seahub/views/repo.py:163 +#: seahub/views/repo.py:165 msgid "Unable to access file: share link traffic is used up." msgstr "" -#: seahub/views/repo.py:174 +#: seahub/views/repo.py:176 msgid "Unable to download: folder not found." msgstr "" -#: seahub/views/sysadmin.py:226 seahub/views/sysadmin.py:234 -#: seahub/views/sysadmin.py:255 seahub/views/sysadmin.py:278 +#: seahub/views/sysadmin.py:246 seahub/views/sysadmin.py:254 +#: seahub/views/sysadmin.py:271 seahub/views/sysadmin.py:294 msgid "Unable to view library" msgstr "" -#: seahub/views/sysadmin.py:264 +#: seahub/views/sysadmin.py:280 msgid "Unable to view library, wrong folder path." msgstr "" -#: seahub/views/sysadmin.py:338 seahub/views/sysadmin.py:415 +#: seahub/views/sysadmin.py:354 seahub/views/sysadmin.py:431 msgid "Invalid username" msgstr "" -#: seahub/views/sysadmin.py:620 seahub/views/sysadmin.py:673 -#: seahub/views/sysadmin.py:1399 seahub/views/sysadmin.py:1411 +#: seahub/views/sysadmin.py:636 seahub/views/sysadmin.py:689 +#: seahub/views/sysadmin.py:1415 seahub/views/sysadmin.py:1427 msgid "Failed to export Excel" msgstr "" -#: seahub/views/sysadmin.py:979 +#: seahub/views/sysadmin.py:995 #, python-format msgid "Failed to set quota: maximum quota is %d MB" msgstr "" -#: seahub/views/sysadmin.py:985 seahub/views/sysadmin.py:1011 +#: seahub/views/sysadmin.py:1001 seahub/views/sysadmin.py:1027 msgid "Failed to set quota: internal server error" msgstr "" -#: seahub/views/sysadmin.py:1030 +#: seahub/views/sysadmin.py:1046 msgid "Failed to delete: the user is an organization creator" msgstr "" -#: seahub/views/sysadmin.py:1062 +#: seahub/views/sysadmin.py:1078 #, python-format msgid "Successfully remove trial for: %s" msgstr "" -#: seahub/views/sysadmin.py:1091 +#: seahub/views/sysadmin.py:1107 #, python-format msgid "Successfully revoke the admin permission of %s" msgstr "成功取消 %s 的管理權限" -#: seahub/views/sysadmin.py:1093 +#: seahub/views/sysadmin.py:1109 msgid "Failed to revoke admin: the user does not exist" msgstr "取消管理員權限失敗:該用戶不存在" -#: seahub/views/sysadmin.py:1140 +#: seahub/views/sysadmin.py:1156 #, python-format msgid "Your account on %s is activated" msgstr "" -#: seahub/views/sysadmin.py:1223 +#: seahub/views/sysadmin.py:1239 #, python-format msgid "Password has been reset on %s" msgstr "" -#: seahub/views/sysadmin.py:1248 +#: seahub/views/sysadmin.py:1264 #, python-format msgid "" "Successfully reset password to %(passwd)s, an email has been sent to " "%(user)s." msgstr "成功將重置密碼為 %(passwd)s, 一封通知郵件已經發送給 %(user)s。" -#: seahub/views/sysadmin.py:1253 +#: seahub/views/sysadmin.py:1269 #, python-format msgid "" "Successfully reset password to %(passwd)s, but failed to send email to " "%(user)s, please check your email configuration." msgstr "成功將用戶密碼重置為 %(passwd)s, 但發送通知郵件到 %(user)s 失敗,請檢查你的郵件配置。" -#: seahub/views/sysadmin.py:1257 +#: seahub/views/sysadmin.py:1273 #, python-format msgid "Successfully reset password to %(passwd)s for user %(user)s." msgstr "成功將用戶 %(user)s 的密碼重置為 %(passwd)s。" -#: seahub/views/sysadmin.py:1260 +#: seahub/views/sysadmin.py:1276 #, python-format msgid "" "Successfully reset password to %(passwd)s for user %(user)s. But email " @@ -6120,107 +6311,107 @@ msgid "" "configured." msgstr "成功將用戶 %(user)s 的密碼重置為 %(passwd)s, 但是由於電子信箱服務未正確配置,通知郵件無法發送。" -#: seahub/views/sysadmin.py:1263 +#: seahub/views/sysadmin.py:1279 msgid "Failed to reset password: user does not exist" msgstr "密碼重置失敗:用戶不存在" -#: seahub/views/sysadmin.py:1279 seahub/views/sysadmin.py:2110 +#: seahub/views/sysadmin.py:1295 seahub/views/sysadmin.py:2137 #, python-format msgid "You are invited to join %s" msgstr "" -#: seahub/views/sysadmin.py:1310 +#: seahub/views/sysadmin.py:1326 #, python-format msgid "Fail to add user %s." msgstr "" -#: seahub/views/sysadmin.py:1325 seahub/views/sysadmin.py:1338 +#: seahub/views/sysadmin.py:1341 seahub/views/sysadmin.py:1354 #, python-format msgid "Successfully added user %s. An email notification has been sent." msgstr "成功新增用戶 %s。一封通知郵件已發送。" -#: seahub/views/sysadmin.py:1328 seahub/views/sysadmin.py:1341 +#: seahub/views/sysadmin.py:1344 seahub/views/sysadmin.py:1357 #, python-format msgid "" "Successfully added user %s. An error accurs when sending email notification," " please check your email configuration." msgstr "成功新增用戶 %s。但發送通知郵件出錯,請檢查電子信箱配置。" -#: seahub/views/sysadmin.py:1330 seahub/views/sysadmin.py:1343 +#: seahub/views/sysadmin.py:1346 seahub/views/sysadmin.py:1359 #, python-format msgid "Successfully added user %s." msgstr "成功添加用戶 %s。" -#: seahub/views/sysadmin.py:1345 +#: seahub/views/sysadmin.py:1361 #, python-format msgid "" "Successfully added user %s. But email notification can not be sent, because " "Email service is not properly configured." msgstr "成功新增用戶 %s。 但由於郵件服務未正確配置,通知郵件無法發送。" -#: seahub/views/sysadmin.py:1573 +#: seahub/views/sysadmin.py:1589 msgid "Failed to rename organization" msgstr "" -#: seahub/views/sysadmin.py:1603 seahub/views/sysadmin.py:1934 -#: seahub/views/sysadmin.py:2030 +#: seahub/views/sysadmin.py:1619 seahub/views/sysadmin.py:1961 +#: seahub/views/sysadmin.py:2057 msgid "Successfully deleted." msgstr "" -#: seahub/views/sysadmin.py:1870 +#: seahub/views/sysadmin.py:1897 msgid "Failed to transfer, invalid arguments." msgstr "轉讓失敗, 參數無效" -#: seahub/views/sysadmin.py:1881 +#: seahub/views/sysadmin.py:1908 #, python-format msgid "Failed to transfer, user %s not found" msgstr "轉讓失敗,未找到用戶 \"%s\"" -#: seahub/views/sysadmin.py:1886 +#: seahub/views/sysadmin.py:1913 msgid "Can not transfer organization library" msgstr "" -#: seahub/views/sysadmin.py:1890 +#: seahub/views/sysadmin.py:1917 #, python-format msgid "Can not transfer library to organization user %s" msgstr "" -#: seahub/views/sysadmin.py:1897 +#: seahub/views/sysadmin.py:1924 msgid "Successfully transfered." msgstr "成功轉讓。" -#: seahub/views/sysadmin.py:1911 +#: seahub/views/sysadmin.py:1938 msgid "System library can not be deleted." msgstr "" -#: seahub/views/sysadmin.py:2033 +#: seahub/views/sysadmin.py:2060 msgid "Failed to delete, please try again later." msgstr "" -#: seahub/views/sysadmin.py:2064 +#: seahub/views/sysadmin.py:2091 #, python-format msgid "Successfully set %s as admin." msgstr "" -#: seahub/views/sysadmin.py:2066 +#: seahub/views/sysadmin.py:2093 #, python-format msgid "Failed to set %s as admin: user does not exist." msgstr "" -#: seahub/views/sysadmin.py:2117 +#: seahub/views/sysadmin.py:2144 msgid "Import succeeded" msgstr "" -#: seahub/views/sysadmin.py:2119 +#: seahub/views/sysadmin.py:2146 msgid "Please select a csv file first." msgstr "" -#: seahub/views/sysadmin.py:2178 +#: seahub/views/sysadmin.py:2206 msgid "Invalid setting" msgstr "" -#: seahub/views/sysadmin.py:2185 seahub/views/sysadmin.py:2189 -#: seahub/views/sysadmin.py:2194 +#: seahub/views/sysadmin.py:2213 seahub/views/sysadmin.py:2217 +#: seahub/views/sysadmin.py:2222 msgid "Invalid value" msgstr "" diff --git a/locale/zh_TW/LC_MESSAGES/djangojs.po b/locale/zh_TW/LC_MESSAGES/djangojs.po index 8a9a1e4a4f..279198b24e 100644 --- a/locale/zh_TW/LC_MESSAGES/djangojs.po +++ b/locale/zh_TW/LC_MESSAGES/djangojs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: seahub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 10:12+0800\n" -"PO-Revision-Date: 2016-04-20 02:16+0000\n" +"POT-Creation-Date: 2016-05-06 17:04+0800\n" +"PO-Revision-Date: 2016-05-06 08:39+0000\n" "Last-Translator: zheng xie \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/haiwen/seahub/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:463 -#: static/scripts/app/views/dir.js:530 -#: 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/common.js:484 +#: static/scripts/app/models/dirent.js:113 static/scripts/app/views/dir.js:519 +#: static/scripts/app/views/dir.js:587 +#: static/scripts/app/views/fileupload.js:343 +#: static/scripts/app/views/fileupload.js:357 +#: static/scripts/app/views/fileupload.js:369 +#: static/scripts/app/views/fileupload.js:381 static/scripts/common.js:497 msgid "Just now" msgstr "" @@ -30,19 +30,19 @@ msgstr "" msgid "Name is required" msgstr "" -#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:186 +#: static/scripts/app/models/repo.js:35 static/scripts/app/views/share.js:201 msgid "Please enter password" msgstr "" -#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:194 +#: static/scripts/app/models/repo.js:36 static/scripts/app/views/share.js:209 msgid "Please enter the password again" msgstr "" -#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:190 +#: static/scripts/app/models/repo.js:38 static/scripts/app/views/share.js:205 msgid "Password is too short" msgstr "" -#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:198 +#: static/scripts/app/models/repo.js:40 static/scripts/app/views/share.js:213 msgid "Passwords don't match" msgstr "" @@ -58,6 +58,31 @@ msgstr "" msgid "Read-Only library" msgstr "" +#: static/scripts/app/views/account.js:58 +#: 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:386 +#: static/scripts/app/views/group-discussions.js:112 +#: static/scripts/app/views/group-discussions.js:178 +#: static/scripts/app/views/group-discussions.js:221 +#: 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:80 +#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 +#: static/scripts/app/views/groups.js:83 +#: static/scripts/app/views/groups.js:127 +#: static/scripts/app/views/myhome-repos.js:85 +#: static/scripts/app/views/myhome-shared-repos.js:73 +#: static/scripts/app/views/notifications.js:137 +#: static/scripts/app/views/organization.js:118 +#: static/scripts/app/views/repo-folder-perm.js:94 +#: static/scripts/app/views/repo-folder-perm.js:134 +#: static/scripts/app/views/repo-shared-link.js:84 +msgid "Please check the network." +msgstr "" + #: static/scripts/app/views/details.js:47 msgid "New files" msgstr "" @@ -87,35 +112,40 @@ msgstr "" #: 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:1040 static/scripts/app/views/dir.js:1097 -#: static/scripts/app/views/dirent.js:258 +#: static/scripts/app/views/dialogs/repo-history-settings.js:82 +#: static/scripts/app/views/dialogs/repo-history-settings.js:141 +#: static/scripts/app/views/dir.js:1121 static/scripts/app/views/dir.js:1178 +#: static/scripts/app/views/dirent.js:259 #: static/scripts/app/views/folder-perm-item.js:84 #: static/scripts/app/views/folder-perm-item.js:126 #: static/scripts/app/views/folder-perm.js:155 #: static/scripts/app/views/folder-perm.js:207 #: static/scripts/app/views/folder-share-item.js:81 #: static/scripts/app/views/folder-share-item.js:117 -#: static/scripts/app/views/group-discussion.js:84 +#: static/scripts/app/views/group-discussion.js:94 #: 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:65 -#: static/scripts/app/views/group-settings.js:132 -#: static/scripts/app/views/group-settings.js:188 -#: static/scripts/app/views/group-settings.js:228 -#: static/scripts/app/views/group-settings.js:285 -#: static/scripts/app/views/group-settings.js:325 -#: static/scripts/app/views/group-settings.js:360 -#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:190 -#: static/scripts/app/views/repo.js:265 static/scripts/app/views/share.js:335 -#: static/scripts/app/views/share.js:613 static/scripts/app/views/share.js:691 -#: static/scripts/common.js:305 static/scripts/common.js:394 +#: static/scripts/app/views/group-settings.js:133 +#: static/scripts/app/views/group-settings.js:190 +#: static/scripts/app/views/group-settings.js:230 +#: static/scripts/app/views/group-settings.js:287 +#: static/scripts/app/views/group-settings.js:327 +#: static/scripts/app/views/group-settings.js:362 +#: static/scripts/app/views/repo.js:102 static/scripts/app/views/repo.js:191 +#: static/scripts/app/views/repo.js:266 static/scripts/app/views/share.js:350 +#: static/scripts/app/views/share.js:628 static/scripts/app/views/share.js:706 +#: static/scripts/common.js:318 static/scripts/common.js:407 +#: static/scripts/sysadmin-app/views/dashboard.js:46 +#: static/scripts/sysadmin-app/views/desktop-devices.js:102 +#: static/scripts/sysadmin-app/views/device-errors.js:92 +#: static/scripts/sysadmin-app/views/mobile-devices.js:102 msgid "Failed. Please check the network." msgstr "" #: static/scripts/app/views/device.js:60 +#: static/scripts/sysadmin-app/views/device.js:44 msgid "Successfully unlink %(name)s." msgstr "" @@ -145,12 +175,12 @@ 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:1088 +#: static/scripts/app/views/dir.js:1169 msgid "Canceled." msgstr "" #: static/scripts/app/views/dialogs/dirent-mvcp.js:179 -#: static/scripts/app/views/dir.js:886 +#: static/scripts/app/views/dir.js:967 msgid "Invalid destination path" msgstr "" @@ -203,8 +233,8 @@ msgid "{placeholder} Folder Permission" msgstr "" #: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:92 -#: static/scripts/app/views/group-settings.js:153 -#: static/scripts/app/views/repo.js:229 +#: static/scripts/app/views/group-settings.js:154 +#: static/scripts/app/views/repo.js:230 msgid "Search user or enter email and press Enter" msgstr "" @@ -220,39 +250,20 @@ 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-discussions.js:107 -#: static/scripts/app/views/group-discussions.js:171 +#: static/scripts/app/views/group-discussions.js:173 #: static/scripts/app/views/group-manage-members.js:112 -#: static/scripts/app/views/group-members.js:70 +#: static/scripts/app/views/group-members.js:75 #: static/scripts/app/views/group.js:129 static/scripts/app/views/groups.js:78 #: static/scripts/app/views/myhome-repos.js:80 #: static/scripts/app/views/myhome-shared-repos.js:68 #: static/scripts/app/views/organization.js:113 +#: static/scripts/sysadmin-app/views/dashboard.js:41 +#: static/scripts/sysadmin-app/views/desktop-devices.js:97 +#: static/scripts/sysadmin-app/views/device-errors.js:87 +#: static/scripts/sysadmin-app/views/mobile-devices.js:97 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:348 -#: static/scripts/app/views/group-discussions.js:112 -#: static/scripts/app/views/group-discussions.js:176 -#: static/scripts/app/views/group-discussions.js:219 -#: 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:75 -#: static/scripts/app/views/group.js:101 static/scripts/app/views/group.js:134 -#: static/scripts/app/views/groups.js:83 -#: static/scripts/app/views/groups.js:127 -#: static/scripts/app/views/myhome-repos.js:85 -#: static/scripts/app/views/myhome-shared-repos.js:73 -#: static/scripts/app/views/organization.js:118 -#: static/scripts/app/views/repo-folder-perm.js:94 -#: static/scripts/app/views/repo-folder-perm.js:134 -#: 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 "" @@ -261,7 +272,7 @@ msgstr "" msgid "{placeholder} History Setting" msgstr "" -#: static/scripts/app/views/dialogs/repo-history-settings.js:133 +#: static/scripts/app/views/dialogs/repo-history-settings.js:134 msgid "Successfully set library history." msgstr "" @@ -269,150 +280,150 @@ msgstr "" msgid "{placeholder} Share Links" msgstr "" -#: static/scripts/app/views/dir.js:113 +#: static/scripts/app/views/dir.js:114 #: static/scripts/app/views/starred-file.js:60 msgid "Close (Esc)" msgstr "" -#: static/scripts/app/views/dir.js:114 +#: static/scripts/app/views/dir.js:115 #: static/scripts/app/views/starred-file.js:61 msgid "Loading..." msgstr "" -#: static/scripts/app/views/dir.js:117 +#: static/scripts/app/views/dir.js:118 #: static/scripts/app/views/starred-file.js:64 msgid "Previous (Left arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:118 +#: static/scripts/app/views/dir.js:119 #: static/scripts/app/views/starred-file.js:65 msgid "Next (Right arrow key)" msgstr "" -#: static/scripts/app/views/dir.js:119 +#: static/scripts/app/views/dir.js:120 #: static/scripts/app/views/starred-file.js:66 msgid "%curr% of %total%" msgstr "" -#: static/scripts/app/views/dir.js:122 +#: static/scripts/app/views/dir.js:123 #: static/scripts/app/views/starred-file.js:75 msgid "The image could not be loaded." msgstr "" -#: static/scripts/app/views/dir.js:132 static/scripts/app/views/dir.js:144 +#: static/scripts/app/views/dir.js:133 static/scripts/app/views/dir.js:145 #: static/scripts/app/views/starred-file.js:72 msgid "Open in New Tab" msgstr "" -#: static/scripts/app/views/dir.js:282 +#: static/scripts/app/views/dir.js:320 msgid "Password is required." msgstr "" -#: static/scripts/app/views/dir.js:448 static/scripts/app/views/dir.js:505 +#: static/scripts/app/views/dir.js:504 static/scripts/app/views/dir.js:562 msgid "It is required." msgstr "" -#: static/scripts/app/views/dir.js:511 +#: static/scripts/app/views/dir.js:568 msgid "Only an extension there, please input a name." msgstr "" -#: static/scripts/app/views/dir.js:752 static/scripts/app/views/dir.js:891 +#: static/scripts/app/views/dir.js:833 static/scripts/app/views/dir.js:972 msgid "Processing..." msgstr "" -#: static/scripts/app/views/dir.js:788 +#: static/scripts/app/views/dir.js:869 msgid "Successfully deleted %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:790 +#: static/scripts/app/views/dir.js:871 msgid "Successfully deleted %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:792 +#: static/scripts/app/views/dir.js:873 msgid "Successfully deleted %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:799 +#: static/scripts/app/views/dir.js:880 msgid "Failed to delete %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:801 +#: static/scripts/app/views/dir.js:882 msgid "Failed to delete %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:803 +#: static/scripts/app/views/dir.js:884 msgid "Failed to delete %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:816 +#: static/scripts/app/views/dir.js:897 msgid "Delete Items" msgstr "" -#: static/scripts/app/views/dir.js:817 +#: static/scripts/app/views/dir.js:898 msgid "Are you sure you want to delete these selected items?" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Move selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:831 +#: static/scripts/app/views/dir.js:912 msgid "Copy selected item(s) to:" msgstr "" -#: static/scripts/app/views/dir.js:934 +#: static/scripts/app/views/dir.js:1015 msgid "Successfully moved %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:936 +#: static/scripts/app/views/dir.js:1017 msgid "Successfully moved %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:938 +#: static/scripts/app/views/dir.js:1019 msgid "Successfully moved %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:942 +#: static/scripts/app/views/dir.js:1023 msgid "Successfully copied %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:944 +#: static/scripts/app/views/dir.js:1025 msgid "Successfully copied %(name)s and 1 other item." msgstr "" -#: static/scripts/app/views/dir.js:946 +#: static/scripts/app/views/dir.js:1027 msgid "Successfully copied %(name)s and %(amount)s other items." msgstr "" -#: static/scripts/app/views/dir.js:958 +#: static/scripts/app/views/dir.js:1039 msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:960 +#: static/scripts/app/views/dir.js:1041 msgid "Internal error. Failed to move %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:964 +#: static/scripts/app/views/dir.js:1045 msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)." msgstr "" -#: static/scripts/app/views/dir.js:966 +#: static/scripts/app/views/dir.js:1047 msgid "Internal error. Failed to copy %(name)s." msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Moving file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1006 +#: static/scripts/app/views/dir.js:1087 msgid "Copying file %(index)s of %(total)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to move %(name)s" msgstr "" -#: static/scripts/app/views/dir.js:1028 +#: static/scripts/app/views/dir.js:1109 msgid "Failed to copy %(name)s" msgstr "" @@ -452,10 +463,10 @@ msgstr "" #: static/scripts/app/views/fileupload.js:17 #: static/scripts/app/views/group-discussions.js:109 -#: static/scripts/app/views/group-discussions.js:173 +#: static/scripts/app/views/group-discussions.js:175 #: 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:72 +#: static/scripts/app/views/group-members.js:77 #: static/scripts/app/views/group.js:131 static/scripts/app/views/groups.js:80 #: static/scripts/app/views/myhome-repos.js:82 #: static/scripts/app/views/myhome-shared-repos.js:70 @@ -499,19 +510,19 @@ msgstr "" msgid "File Upload failed" msgstr "" -#: static/scripts/app/views/fileupload.js:187 +#: static/scripts/app/views/fileupload.js:186 msgid "Failed to get upload url" msgstr "" -#: static/scripts/app/views/fileupload.js:220 +#: static/scripts/app/views/fileupload.js:219 msgid "Failed to get update url" msgstr "" -#: static/scripts/app/views/fileupload.js:231 +#: static/scripts/app/views/fileupload.js:230 msgid "Replace file {filename}?" msgstr "" -#: static/scripts/app/views/fileupload.js:257 +#: static/scripts/app/views/fileupload.js:256 msgid "File is locked" msgstr "" @@ -520,7 +531,7 @@ msgid "Set {placeholder}'s permission" msgstr "" #: static/scripts/app/views/folder-perm.js:100 -#: static/scripts/app/views/share.js:508 +#: static/scripts/app/views/share.js:523 msgid "Select groups" msgstr "" @@ -541,32 +552,38 @@ msgstr "" msgid "Successfully unshared {placeholder}" msgstr "" -#: static/scripts/app/views/group-settings.js:154 -#: static/scripts/app/views/repo.js:230 +#: static/scripts/app/views/group-settings.js:155 +#: static/scripts/app/views/repo.js:231 msgid "You cannot select any more choices" msgstr "" -#: static/scripts/app/views/group-settings.js:246 +#: static/scripts/app/views/group-settings.js:182 +msgid "" +"Successfully transferred the group. You are now a normal member of the " +"group." +msgstr "" + +#: static/scripts/app/views/group-settings.js:248 msgid "Please choose a CSV file" msgstr "" -#: static/scripts/app/views/group-settings.js:277 +#: static/scripts/app/views/group-settings.js:279 msgid "Successfully imported." msgstr "" -#: static/scripts/app/views/group-settings.js:305 +#: static/scripts/app/views/group-settings.js:307 msgid "Dismiss Group" msgstr "" -#: static/scripts/app/views/group-settings.js:306 +#: static/scripts/app/views/group-settings.js:308 msgid "Really want to dismiss this group?" msgstr "" -#: static/scripts/app/views/group-settings.js:339 +#: static/scripts/app/views/group-settings.js:341 msgid "Quit Group" msgstr "" -#: static/scripts/app/views/group-settings.js:340 +#: static/scripts/app/views/group-settings.js:342 msgid "Are you sure you want to quit this group?" msgstr "" @@ -578,11 +595,11 @@ msgstr "" msgid "Delete succeeded." msgstr "" -#: static/scripts/app/views/repo.js:219 +#: static/scripts/app/views/repo.js:220 msgid "Transfer Library {library_name} To" msgstr "" -#: static/scripts/app/views/repo.js:258 +#: static/scripts/app/views/repo.js:259 msgid "Successfully transferred the library." msgstr "" @@ -590,35 +607,36 @@ msgstr "" msgid "Share {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:115 +#: static/scripts/app/views/share.js:119 msgid "Expired" msgstr "" -#: static/scripts/app/views/share.js:143 static/scripts/app/views/share.js:159 +#: static/scripts/app/views/share.js:151 static/scripts/app/views/share.js:152 +#: static/scripts/app/views/share.js:173 static/scripts/app/views/share.js:174 msgid "Hide" msgstr "" -#: static/scripts/app/views/share.js:156 +#: static/scripts/app/views/share.js:169 static/scripts/app/views/share.js:170 msgid "Show" msgstr "" -#: static/scripts/app/views/share.js:211 +#: static/scripts/app/views/share.js:226 msgid "Please enter days." msgstr "" -#: static/scripts/app/views/share.js:215 +#: static/scripts/app/views/share.js:230 msgid "Please enter valid days" msgstr "" -#: static/scripts/app/views/share.js:302 +#: static/scripts/app/views/share.js:317 msgid "Please input at least an email." msgstr "" -#: static/scripts/app/views/share.js:319 +#: static/scripts/app/views/share.js:334 msgid "Successfully sent to {placeholder}" msgstr "" -#: static/scripts/app/views/share.js:323 +#: static/scripts/app/views/share.js:338 msgid "Failed to send to {placeholder}" msgstr "" @@ -630,22 +648,26 @@ msgstr "" msgid "Successfully unstared {placeholder}" msgstr "" -#: static/scripts/common.js:688 +#: static/scripts/common.js:531 msgid "Search users or enter emails and press Enter" msgstr "" -#: static/scripts/common.js:696 +#: static/scripts/common.js:539 msgid "Please enter 1 or more character" msgstr "" -#: static/scripts/common.js:697 +#: static/scripts/common.js:540 msgid "No matches" msgstr "" -#: static/scripts/common.js:698 +#: static/scripts/common.js:541 msgid "Searching..." msgstr "" -#: static/scripts/common.js:699 +#: static/scripts/common.js:542 msgid "Loading failed" msgstr "" + +#: static/scripts/sysadmin-app/views/device-errors.js:39 +msgid "Successfully clean all errors." +msgstr "" diff --git a/seahub/templates/libraries.html b/seahub/templates/libraries.html index 0186c171ef..101ec953f4 100644 --- a/seahub/templates/libraries.html +++ b/seahub/templates/libraries.html @@ -40,7 +40,7 @@ + + diff --git a/static/scripts/sysadmin-app/router.js b/static/scripts/sysadmin-app/router.js index 820df960b6..226714796a 100644 --- a/static/scripts/sysadmin-app/router.js +++ b/static/scripts/sysadmin-app/router.js @@ -7,9 +7,11 @@ define([ 'sysadmin-app/views/dashboard', 'sysadmin-app/views/desktop-devices', 'sysadmin-app/views/mobile-devices', - 'sysadmin-app/views/device-errors' + 'sysadmin-app/views/device-errors', + 'app/views/account' ], function($, Backbone, Common, SideNavView, DashboardView, - DesktopDevicesView, MobileDevicesView, DeviceErrorsView) { + DesktopDevicesView, MobileDevicesView, DeviceErrorsView, + AccountView) { "use strict"; var Router = Backbone.Router.extend({ @@ -39,6 +41,8 @@ define([ this.mobileDevicesView = new MobileDevicesView(); this.deviceErrorsView = new DeviceErrorsView(); + app.ui.accountView = this.accountView = new AccountView(); + this.currentView = this.dashboardView; $('#info-bar .close').click(Common.closeTopNoticeBar); From 3aad5fdbdfb768ad220648c5940c86db7def30cd Mon Sep 17 00:00:00 2001 From: lian Date: Tue, 17 May 2016 15:10:31 +0800 Subject: [PATCH 25/29] rm hyperlink of traffic in user info popup --- seahub/templates/snippets/space_and_traffic.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seahub/templates/snippets/space_and_traffic.html b/seahub/templates/snippets/space_and_traffic.html index 6285f4143d..effb376836 100644 --- a/seahub/templates/snippets/space_and_traffic.html +++ b/seahub/templates/snippets/space_and_traffic.html @@ -16,7 +16,7 @@
{% if SHOW_TRAFFIC and TRAFFIC_STATS_ENABLED %} -{% trans "Traffic this month:" %} {{ traffic_stat|filesizeformat }} +
{% trans "Traffic this month:" %} {{ traffic_stat|filesizeformat }}
{% endif %} {% if ENABLE_PAYMENT %} From f12215ec5e7405fe3826a2e05e133fbe94dbfe07 Mon Sep 17 00:00:00 2001 From: zhengxie Date: Tue, 17 May 2016 17:47:07 +0800 Subject: [PATCH 26/29] [shib] Fix shib complete url bug --- tests/seahub/thirdpart/shibboleth/test_middleware.py | 5 ++++- thirdpart/shibboleth/middleware.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/seahub/thirdpart/shibboleth/test_middleware.py b/tests/seahub/thirdpart/shibboleth/test_middleware.py index 4e047c361b..8159a4183e 100644 --- a/tests/seahub/thirdpart/shibboleth/test_middleware.py +++ b/tests/seahub/thirdpart/shibboleth/test_middleware.py @@ -35,6 +35,9 @@ class ShibbolethRemoteUserMiddlewareTest(BaseTestCase): self.request.META['givenname'] = 'test_gname' self.request.META['surname'] = 'test_sname' + # default settings + assert getattr(settings, 'SHIB_ACTIVATE_AFTER_CREATION', True) is True + def test_can_process(self): assert len(Profile.objects.all()) == 0 @@ -52,7 +55,7 @@ class ShibbolethRemoteUserMiddlewareTest(BaseTestCase): reload(backends) resp = self.middleware.process_request(self.request) - assert resp.url == 'shib-complete' + assert resp.url == '/shib-complete/' assert len(Profile.objects.all()) == 0 # now reload again, so it reverts to original settings diff --git a/thirdpart/shibboleth/middleware.py b/thirdpart/shibboleth/middleware.py index fe01d30078..9978219a59 100755 --- a/thirdpart/shibboleth/middleware.py +++ b/thirdpart/shibboleth/middleware.py @@ -67,7 +67,7 @@ class ShibbolethRemoteUserMiddleware(RemoteUserMiddleware): user = auth.authenticate(remote_user=username, shib_meta=shib_meta) if user: if not user.is_active: - return HttpResponseRedirect('shib-complete') + return HttpResponseRedirect(reverse('shib_complete')) # User is valid. Set request.user and persist user in the session # by logging the user in. From c4fb7d51b4f09ad034e13d8ccfcedf1f40e9ba63 Mon Sep 17 00:00:00 2001 From: zhengxie Date: Tue, 17 May 2016 18:14:17 +0800 Subject: [PATCH 27/29] [tests] Update tests --- tests/seahub/thirdpart/shibboleth/test_middleware.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/seahub/thirdpart/shibboleth/test_middleware.py b/tests/seahub/thirdpart/shibboleth/test_middleware.py index 8159a4183e..ce8a0736cd 100644 --- a/tests/seahub/thirdpart/shibboleth/test_middleware.py +++ b/tests/seahub/thirdpart/shibboleth/test_middleware.py @@ -1,3 +1,6 @@ +import os +import pytest + from django.conf import settings from django.test import RequestFactory @@ -6,6 +9,8 @@ from seahub.test_utils import BaseTestCase from shibboleth import backends from shibboleth.middleware import ShibbolethRemoteUserMiddleware +TRAVIS = 'TRAVIS' in os.environ + settings.AUTHENTICATION_BACKENDS += ( 'shibboleth.backends.ShibbolethRemoteUserBackend', ) @@ -45,6 +50,7 @@ class ShibbolethRemoteUserMiddlewareTest(BaseTestCase): assert len(Profile.objects.all()) == 1 assert self.request.shib_login is True + @pytest.mark.skipif(TRAVIS, reason="TODO: this test can only be run seperately due to the url module init in django, we may need to reload url conf: https://gist.github.com/anentropic/9ac47f6518c88fa8d2b0") def test_process_inactive_user(self): """Inactive user is created, and no profile is created. """ From 160963c2720a173e240545d9969ddcacb9c6f3b6 Mon Sep 17 00:00:00 2001 From: lian Date: Wed, 18 May 2016 17:11:56 +0800 Subject: [PATCH 28/29] update audit when view file via shared dir --- seahub/share/decorators.py | 7 +- seahub/templates/view_shared_dir.html | 6 +- seahub/views/file.py | 23 ++-- tests/seahub/share/test_decorators.py | 143 +++++++++++++++++++++ tests/seahub/views/repo/test_shared_dir.py | 25 ++++ 5 files changed, 189 insertions(+), 15 deletions(-) create mode 100644 tests/seahub/share/test_decorators.py diff --git a/seahub/share/decorators.py b/seahub/share/decorators.py index c373aae73f..ef4cac37f5 100644 --- a/seahub/share/decorators.py +++ b/seahub/share/decorators.py @@ -11,9 +11,10 @@ def share_link_audit(func): def _decorated(request, token, *args, **kwargs): assert token is not None # Checked by URLconf - fileshare = FileShare.objects.get_valid_file_link_by_token(token) - if fileshare is None: - fileshare = UploadLinkShare.objects.get_valid_upload_link_by_token(token) + fileshare = FileShare.objects.get_valid_file_link_by_token(token) or \ + FileShare.objects.get_valid_dir_link_by_token(token) or \ + UploadLinkShare.objects.get_valid_upload_link_by_token(token) + if fileshare is None: raise Http404 diff --git a/seahub/templates/view_shared_dir.html b/seahub/templates/view_shared_dir.html index 471025f9bd..46e90d5f0a 100644 --- a/seahub/templates/view_shared_dir.html +++ b/seahub/templates/view_shared_dir.html @@ -87,7 +87,7 @@ {% if dirent.is_img %} - {{ dirent.obj_name }} + {{ dirent.obj_name }} {% else %} {{ dirent.obj_name }} {% endif %} @@ -125,7 +125,7 @@ {% for dirent in file_list %}
  • {% if dirent.is_img %} - + {% if dirent.encoded_thumbnail_src %} {% else %} @@ -139,7 +139,7 @@ {% endif %} {% if dirent.is_img %} - {{ dirent.obj_name }} + {{ dirent.obj_name }} {% else %} {{ dirent.obj_name }} {% endif %} diff --git a/seahub/views/file.py b/seahub/views/file.py index 6a17595618..8981bf7d9a 100644 --- a/seahub/views/file.py +++ b/seahub/views/file.py @@ -896,14 +896,9 @@ def view_raw_shared_file(request, token, obj_id, file_name): outer_url = gen_file_get_url(token, filename) return HttpResponseRedirect(outer_url) -def view_file_via_shared_dir(request, token): - assert token is not None # Checked by URLconf - - fileshare = FileShare.objects.get_valid_file_link_by_token(token) - if fileshare is None: - raise Http404 - - +@share_link_audit +def view_file_via_shared_dir(request, fileshare): + token = fileshare.token req_path = request.GET.get('p', '').rstrip('/') if not req_path: return HttpResponseRedirect(reverse('view_shared_dir', args=[token])) @@ -941,9 +936,19 @@ def view_file_via_shared_dir(request, token): obj_id = seafile_api.get_file_id_by_path(repo_id, real_path) if not obj_id: return render_error(request, _(u'File does not exist')) - file_size = seafile_api.get_file_size(repo.store_id, repo.version, obj_id) filename = os.path.basename(req_path) + if request.GET.get('raw', '0') == '1': + username = request.user.username + token = seafile_api.get_fileserver_access_token(repo_id, + obj_id, 'view', username, use_onetime=True) + + raw_url = gen_file_get_url(token, filename) + # send stats message + send_file_access_msg(request, repo, real_path, 'share-link') + return HttpResponseRedirect(raw_url) + + file_size = seafile_api.get_file_size(repo.store_id, repo.version, obj_id) filetype, fileext = get_file_type_and_ext(filename) access_token = seafile_api.get_fileserver_access_token(repo.id, obj_id, 'view', '', use_onetime=False) diff --git a/tests/seahub/share/test_decorators.py b/tests/seahub/share/test_decorators.py new file mode 100644 index 0000000000..31ff58fee6 --- /dev/null +++ b/tests/seahub/share/test_decorators.py @@ -0,0 +1,143 @@ +from mock import patch + +from django.core.cache import cache +from django.contrib.auth.models import AnonymousUser +from django.http import HttpResponse, Http404 +from django.test import override_settings +from django.test.client import RequestFactory + +from seahub.test_utils import BaseTestCase +from seahub.share.decorators import share_link_audit +from seahub.share.models import FileShare +from seahub.utils import gen_token, normalize_cache_key + +class ShareLinkAuditTest(BaseTestCase): + def setUp(self): + share_file_info = { + 'username': self.user.username, + 'repo_id': self.repo.id, + 'path': self.file, + 'password': None, + 'expire_date': None, + } + self.fs = FileShare.objects.create_file_link(**share_file_info) + + # Every test needs access to the request factory. + self.factory = RequestFactory() + + @property + def _request(self, session={}): + request = self.factory.get('/rand') + request.user = self.user + request.session = session + return request + + def _anon_request(self, session={}): + request = self.factory.get('/rand') + request.user = AnonymousUser() + request.session = session + request.cloud_mode = False + return request + + def _anon_post_request(self, data={}, session={}): + request = self.factory.post('/rand', data) + request.user = AnonymousUser() + request.session = session + request.cloud_mode = False + return request + + def _fake_view_shared_file(self, request, token): + @share_link_audit + def fake_view_shared_file(request, fileshare): + return HttpResponse() + return fake_view_shared_file(request, token) + + def test_bad_share_token(self): + @share_link_audit + def a_view(request, fileshare): + return HttpResponse() + + request = self.factory.get('/rand') + request.user = self.user + + self.assertRaises(Http404, a_view, request, 'xxx') + + def test_non_pro_version(self): + """ + Check that share_link_audit works as nomal view_shared_file on + non-pro version. + """ + resp = self._fake_view_shared_file(self._request, self.fs.token) + self.assertEqual(resp.status_code, 200) + + def test_shared_link_audit_not_enabled(self): + resp = self._fake_view_shared_file(self._request, self.fs.token) + self.assertEqual(resp.status_code, 200) + + @override_settings(ENABLE_SHARE_LINK_AUDIT=True) + @patch('seahub.share.decorators.is_pro_version') + def test_audit_authenticated_user(self, mock_is_pro_version): + mock_is_pro_version.return_value = True + + resp = self._fake_view_shared_file(self._request, self.fs.token) + self.assertEqual(resp.status_code, 200) + + @override_settings(ENABLE_SHARE_LINK_AUDIT=True) + @patch('seahub.share.decorators.is_pro_version') + def test_audit_anonymous_user_with_mail_in_session(self, mock_is_pro_version): + mock_is_pro_version.return_value = True + + anon_req = self._anon_request(session={'anonymous_email': 'a@a.com'}) + resp = self._fake_view_shared_file(anon_req, self.fs.token) + self.assertEqual(resp.status_code, 200) + + @override_settings(ENABLE_SHARE_LINK_AUDIT=True) + @patch('seahub.share.decorators.is_pro_version') + def test_audit_anonymous_user_without_mail_in_session(self, mock_is_pro_version): + """ + Check that share_link_audit works on pro version and setting enabled, + which show a page that let user input email and verification code. + """ + mock_is_pro_version.return_value = True + + anon_req = self._anon_request() + resp = self._fake_view_shared_file(anon_req, self.fs.token) + self.assertEqual(resp.status_code, 200) + self.assertIn('

    Please provide your email address to continue.

    ', resp.content) + + @override_settings(ENABLE_SHARE_LINK_AUDIT=True) + @patch('seahub.share.decorators.is_pro_version') + def test_anonymous_user_post_wrong_token(self, mock_is_pro_version): + """ + Check that anonnymous user input email and wrong verification code. + """ + mock_is_pro_version.return_value = True + + anon_req = self._anon_post_request(data={'code': 'xx'}, session={}) + self.assertEqual(anon_req.session.get('anonymous_email'), None) + resp = self._fake_view_shared_file(anon_req, self.fs.token) + + self.assertEqual(resp.status_code, 200) + self.assertIn('Invalid token, please try again.', resp.content) + + @override_settings(ENABLE_SHARE_LINK_AUDIT=True) + @patch('seahub.share.decorators.is_pro_version') + def test_anonymous_user_post_correct_token(self, mock_is_pro_version): + """ + Check that anonnymous user input email and correct verification code. + """ + mock_is_pro_version.return_value = True + + code = gen_token(max_length=6) + email = 'a@a.com' + cache_key = normalize_cache_key(email, 'share_link_audit_') + cache.set(cache_key, code, timeout=60) + assert cache.get(cache_key) == code + + anon_req = self._anon_post_request(data={'code': code, 'email': email}) + self.assertEqual(anon_req.session.get('anonymous_email'), None) + resp = self._fake_view_shared_file(anon_req, self.fs.token) + + self.assertEqual(resp.status_code, 200) + self.assertEqual(anon_req.session.get('anonymous_email'), email) # email is set in session + assert cache.get(cache_key) is None # token is delete after used diff --git a/tests/seahub/views/repo/test_shared_dir.py b/tests/seahub/views/repo/test_shared_dir.py index 48a5428b79..e278c3d33e 100644 --- a/tests/seahub/views/repo/test_shared_dir.py +++ b/tests/seahub/views/repo/test_shared_dir.py @@ -38,6 +38,13 @@ class SharedDirTest(TestCase, Fixtures): self.assertEqual(302, resp.status_code) assert '8082/files/' in resp.get('location') + def test_view_raw_file_via_shared_dir(self): + resp = self.client.get( + reverse('view_file_via_shared_dir', args=[self.fs.token]) + '?p=' + self.file + '&raw=1' + ) + + assert '8082' in resp['location'] + class EncryptSharedDirTest(TestCase, Fixtures): def setUp(self): share_file_info = { @@ -124,6 +131,24 @@ class EncryptSharedDirTest(TestCase, Fixtures): self.assertTemplateUsed(resp, 'shared_file_view.html') self.assertContains(resp, '%s' % self.filename) + def test_view_raw_file_via_shared_dir(self): + resp = self.client.post( + reverse('view_file_via_shared_dir', args=[self.fs.token]) + '?p=' + self.sub_file, { + 'password': '12345678' + } + ) + + self.assertEqual(200, resp.status_code) + self.assertTemplateNotUsed(resp, 'share_access_validation.html') + self.assertTemplateUsed(resp, 'shared_file_view.html') + self.assertContains(resp, '%s' % self.filename) + + resp = self.client.get( + reverse('view_file_via_shared_dir', args=[self.fs.token]) + '?p=' + self.sub_file + '&raw=1' + ) + + assert '8082' in resp['location'] + def test_view_file_via_shared_dir_without_password(self): resp = self.client.get( reverse('view_file_via_shared_dir', args=[self.fs.token]) + '?p=' + self.sub_file From e4ac653e343cf9d8f08a6ee1c2a6eed1d8a31b8d Mon Sep 17 00:00:00 2001 From: lian Date: Sat, 21 May 2016 12:12:01 +0800 Subject: [PATCH 29/29] return head commit id info from repos api --- seahub/api2/views.py | 5 +++++ tests/api/test_repos.py | 1 + 2 files changed, 6 insertions(+) diff --git a/seahub/api2/views.py b/seahub/api2/views.py index 05a1ae9587..b77c3487d4 100644 --- a/seahub/api2/views.py +++ b/seahub/api2/views.py @@ -560,6 +560,7 @@ class Repos(APIView): "permission": 'rw', # Always have read-write permission to owned repo "virtual": r.is_virtual, "root": r.root, + "head_commit_id": r.head_cmmt_id, } if r.encrypted: repo["enc_version"] = r.enc_version @@ -594,6 +595,7 @@ class Repos(APIView): "permission": 'rw', "virtual": r.is_virtual, "root": r.root, + "head_commit_id": r.head_cmmt_id, } if r.encrypted: repo["enc_version"] = r.enc_version @@ -621,6 +623,7 @@ class Repos(APIView): "permission": r.user_perm, "share_type": r.share_type, "root": r.root, + "head_commit_id": r.head_cmmt_id, } if r.encrypted: repo["enc_version"] = r.enc_version @@ -645,6 +648,7 @@ class Repos(APIView): "encrypted": r.encrypted, "permission": check_permission(r.id, email), "root": r.root, + "head_commit_id": r.head_cmmt_id, } if r.encrypted: repo["enc_version"] = r.enc_version @@ -670,6 +674,7 @@ class Repos(APIView): "share_from": r.user, "share_type": r.share_type, "root": r.root, + "head_commit_id": r.head_cmmt_id, } if r.encrypted: repo["enc_version"] = r.enc_version diff --git a/tests/api/test_repos.py b/tests/api/test_repos.py index 7461098b6c..31f6a2657e 100644 --- a/tests/api/test_repos.py +++ b/tests/api/test_repos.py @@ -42,6 +42,7 @@ class ReposApiTest(ApiTestBase): # self.assertIsNotNone(repo['virtual']) #allow null for pub-repo self.assertIsNotNone(repo['desc']) self.assertIsNotNone(repo['root']) + self.assertIsNotNone(repo['head_commit_id']) def test_get_repo_info(self): with self.get_tmp_repo() as repo: